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

« back to all changes in this revision

Viewing changes to src/cadxcore/main/managers/widgetsmanager.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2014-01-09 07:37:09 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20140109073709-rpuh5x3p3finvtze
Tags: 3.6.0.1228.33+dfsg-1
New upstream release [December 2013]

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <api/iwidgetsmanager.h>
21
21
#include <api/observers/iwidgetsobserver.h>
22
22
#include <api/observers/ieventsobserver.h>
23
 
#include <api/ianotador.h>
24
23
#include <api/controllers/ieventscontroller.h>
25
24
 
26
25
//----------------------------------------------------------------------------------------------------
133
132
        //endregion
134
133
 
135
134
        //----------------------------------------------------------------------------------------------------
136
 
        //region "Interfaz anotacion estatica"
 
135
        //region "Interfaz annotation"
137
136
 
138
 
                virtual void CrearWidgetAnotador(GNC::GCS::IAnotador* pAnotador);
139
 
                virtual void EnableAnotacionDinamica(bool enable);
140
 
                virtual void MostrarOcultarAnotador();
141
 
                virtual bool IsVisibleAnotador();
 
137
                virtual void SetAnnotator(const GNC::GCS::Ptr<GNC::GCS::IAnnotator>& pAnnotador);
 
138
                virtual const GNC::GCS::Ptr<GNC::GCS::IAnnotator>& GetAnnotator();
 
139
                virtual void ShowAnnotations(bool show);
 
140
                virtual bool IsShownAnnotations();
142
141
 
143
142
        //enderegion
144
143
 
177
176
        private:
178
177
                inline void ModificarRenderersDeWidget(GNC::GCS::Widgets::IWidget* w);
179
178
                TimerAnimation* m_pTimerAnimation;
 
179
                GNC::GCS::Ptr<GNC::GCS::IAnnotator> m_pAnnotator;
180
180
        //endregion
181
181
        };
182
182
}