~ubuntu-branches/ubuntu/wily/ginkgocadx/wily-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/main/gui/history/panelestudio.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-05-02 08:09:26 UTC
  • Revision ID: james.westby@ubuntu.com-20110502080926-bql5wep49c7hg91t
Tags: upstream-2.4.1.1
ImportĀ upstreamĀ versionĀ 2.4.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  
 
3
 *  $Id: panelestudio.h 3669 2011-04-11 10:59:33Z tovar $
 
4
 *  Ginkgo CADx Project
 
5
 *
 
6
 *  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
 
7
 *  http://ginkgo-cadx.com
 
8
 *
 
9
 *  This file is licensed under LGPL v3 license.
 
10
 *  See License.txt for details
 
11
 *
 
12
 *
 
13
 */
 
14
#pragma once
 
15
 
 
16
#include "panelhistorial2base.h"
 
17
#include "panelserie.h"
 
18
#include <map>
 
19
#include <main/controllers/controladorhistorial.h>
 
20
 
 
21
namespace GNC {
 
22
        namespace GUI {
 
23
                class PanelEstudio: public PanelEstudioBase,public INodoHistorial, public ISeleccionableHistorial {
 
24
                public:
 
25
                        PanelEstudio(INodoHistorial* pPadre, wxWindow* pParentWindow, const std::string& descripcion, const std::string& uidEstudio);
 
26
                        ~PanelEstudio();
 
27
                        void Seleccionar(bool seleccionar,bool force=false);
 
28
                        
 
29
                        PanelSerie* GetSerie(const GNC::GCS::ControladorHistorial::ModeloSerie& modeloSerie);
 
30
                        virtual void OnPaint(wxPaintEvent &event);
 
31
                        void OnSize(wxSizeEvent& event);
 
32
                        void OnMouseSeleccionar(wxMouseEvent& event);
 
33
                        void OnMenuMouse(wxMouseEvent& event);
 
34
                        virtual void OnMouseWheel(wxMouseEvent& event);
 
35
                        void OnEliminar(wxCommandEvent& event);
 
36
                        void OnLimpiarHistorial(wxCommandEvent &event);
 
37
                        void OnUploadPACS(wxCommandEvent &event);
 
38
                        void Detach(wxWindow* pHijo);
 
39
                        void Eliminar();
 
40
                        void OnAbrir(wxCommandEvent& event);
 
41
 
 
42
                protected:
 
43
                };
 
44
        }
 
45
}
 
46
 
 
47