~ubuntu-branches/ubuntu/raring/ginkgocadx/raring-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/main/tools/herramientainterpolate.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
/*
 
2
 *  
 
3
 *  $Id: herramientainterpolate.h 4090 2011-08-25 12:17:45Z 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 <export/iherramientainterpolate.h>
 
17
#include <api/api.h>
 
18
 
 
19
#include <map>
 
20
 
 
21
class HerramientaOpcionesGUIBase;
 
22
 
 
23
namespace GNC {
 
24
 
 
25
        class EXTAPI HerramientaInterpolate : public GNC::GCS::IHerramientaInterpolate {
 
26
 
 
27
        protected:
 
28
 
 
29
        public:
 
30
                HerramientaInterpolate();
 
31
                ~HerramientaInterpolate();
 
32
                //menu de la rejilla
 
33
                virtual bool AppendInMenu(wxWindow* pParent, wxMenu* pMenuParent);
 
34
 
 
35
                //region "Realización de la interfaz IHerramienta"
 
36
 
 
37
                // Setup de paneles
 
38
                virtual void CrearPaneles( wxPanel* panel );
 
39
 
 
40
                //endregion
 
41
 
 
42
                bool IsSet();
 
43
                //cuando hacen click en ella...
 
44
                virtual void SolicitarActivacion();
 
45
 
 
46
                virtual void ConectarContratoFalso(bool activar);
 
47
                virtual void SetVistaActiva(GNC::GCS::IVista* pVista);
 
48
                virtual void ConectarContratos(bool activar);
 
49
 
 
50
 
 
51
        protected:
 
52
 
 
53
        };
 
54
}