~ubuntu-branches/ubuntu/quantal/ginkgocadx/quantal

« back to all changes in this revision

Viewing changes to src/cadxcore/main/controllers/controladorherramientas.h

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2011-09-09 08:39:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: package-import@ubuntu.com-20110909083926-iktecd132cnku5cd
Tags: 2.5.4.0~rc-1
New upstream version (patches were applied)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  
3
 
 *  $Id: controladorherramientas.h 3526 2011-03-16 19:56:19Z carlos $
 
3
 *  $Id: controladorherramientas.h 4051 2011-08-01 09:41:38Z tovar $
4
4
 *  Ginkgo CADx Project
5
5
 *
6
6
 *  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
29
29
namespace GNC {
30
30
        namespace GUI {
31
31
                class BarraHerramientasDerecha;
 
32
                class EventHandlerKeyToolsController;
32
33
        }
33
34
 
34
35
        class EXTAPI ControladorHerramientas :
125
126
 
126
127
//region "BARRA DE HERRAMIENTAS"
127
128
                virtual void OnActivarHerramienta(wxCommandEvent& event);
 
129
                virtual void OnKeyAccelerator(wxKeyEvent& event);
128
130
//endregion
129
131
 
130
132
//------------------------------------------------------------------------------
160
162
                GNC::GCS::IControladorModulo* m_pModuloActivo;
161
163
 
162
164
                AUI_NAMESPACE wxAuiToolBar*   m_pBarraSinOpciones;
 
165
                GNC::GUI::EventHandlerKeyToolsController* m_pKeyEventHandler;
163
166
                // Mapa entre id_de_wxwidgets => id de herramientas para resolver ids de herramientas desde el manejador de evento.
164
167
                int                           m_contadorHerramientas;
165
168
                typedef std::map<unsigned long, unsigned long> MapaIdsHerramientas;