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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-07-14 16:17:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110714161751-6wngu3xs307thgpr
Tags: 2.5.1.0-1
* New upstream version (all patches applied)
  Closes: #630877
* debian/patches/drop_rpath.patch: Fix remaining rpath issue
* debian/{mime,sharedmimeinfo}: Mime info for DICOM images
  Closes: #631205
* Add upstream manpage + desktop file
* Fixed Vcs fields
* debian/rules:
   - Add new extension liblightvisualizator
   - remove get-orig-source target which becames void because
     upstream dropped the debian/ dir
   - Hack around explicite rpath definitions
* debian/install: move conformance.xml into place
* debian/watch: drop useless comments
* debian/ginkgocadx.lintian-overrides: Drop unneeded overrides
  as well as those which stay in effect.  These should vanish
  once rpath is correctly fixed - so the warning should not
  be hidden here.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  
3
 
 *  $Id: panelconfiguracionrenderingoptions.h 3526 2011-03-16 19:56:19Z carlos $
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 GNC {
21
 
        namespace GUI {
22
 
 
23
 
                class PanelConfiguracionRenderingOptions: public PanelConfiguracionRenderingOptionsBase, public IPasoConfiguracion
24
 
                {
25
 
                        public:
26
 
                                PanelConfiguracionRenderingOptions(wxWindow* pParent,IDialogoConfiguracion* pDialogo);
27
 
                                ~PanelConfiguracionRenderingOptions();
28
 
 
29
 
                                void Recargar();
30
 
 
31
 
                                //region "Metodos de IPasoConfiguracion"
32
 
                                wxWindow* GetPanel();
33
 
 
34
 
                                std::string GetTitle();
35
 
 
36
 
                                std::string GetCabecera();
37
 
 
38
 
                                bool Validar();
39
 
 
40
 
                                bool Guardar();
41
 
                                
42
 
                                void Exportar(wxXmlNode* pNodo);
43
 
 
44
 
                                void Importar(wxXmlNode* pNodo);
45
 
 
46
 
                                //endregion
47
 
 
48
 
 
49
 
                        protected:
50
 
                                void OnSize(wxSizeEvent &);
51
 
                                void OnCheckRendering(wxCommandEvent &event);
52
 
                };
53
 
        };
54
 
};