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

« back to all changes in this revision

Viewing changes to src/cadxcore/main/gui/configuration/panelconfigurationanonymization.h

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2012-01-29 12:02:54 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120129120254-nu7giync5p156icb
Tags: 2.8.0.4602-1
New upstream version (adapted patch, removed patch applied upstream)
Closes: #657827

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  
 
3
 *  $Id: panelconfigurationanonymization.h 4477 2011-12-13 11:16:56Z 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
#include <api/iconfiguracion.h>
 
16
#include "panelesconfiguracionginkgobase.h"
 
17
#include <string>
 
18
#include <vector>
 
19
 
 
20
namespace Ubicaciones {
 
21
        class UbicacionesGridTable;
 
22
}
 
23
 
 
24
namespace GNC {
 
25
        namespace GUI {
 
26
 
 
27
                class PanelConfigurationAnonymization: public PanelConfigurationAnonymizationBase, public IPasoConfiguracion
 
28
                {
 
29
                        public:
 
30
                                PanelConfigurationAnonymization(wxWindow* pParent,IDialogoConfiguracion* pDialogo);
 
31
                                ~PanelConfigurationAnonymization();
 
32
 
 
33
                                void Recargar();
 
34
 
 
35
                                //region "Metodos de IPasoConfiguracion"
 
36
                                wxWindow* GetPanel();
 
37
 
 
38
                                std::string GetTitle();
 
39
 
 
40
                                std::string GetCabecera();
 
41
 
 
42
                                bool Validar();
 
43
 
 
44
                                bool Guardar();
 
45
                                //endregion
 
46
 
 
47
                                //region "Helpers"
 
48
                                void AutoSizeGrid();
 
49
                                //endregion
 
50
 
 
51
                        public:
 
52
                };
 
53
        }
 
54
}