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

« back to all changes in this revision

Viewing changes to src/visualizator/visualizator/dialogos/importacion/selectimagesimportationvisualizator.h

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2011-11-09 12:29:00 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111109122900-idkd9vvhr31whz8z
Tags: 2.6.0.0~rc-1
* New upstream version
  Closes: #647413
* Rebuild against recent insighttoolkit
  Closes: #648167

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  
 
3
 *  $Id: selectimagesimportationvisualizator.h 4303 2011-10-18 10:31:44Z 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/iwizard.h>
 
16
#include <string>
 
17
#include <vector>
 
18
#include "datospersistentesimportacion.h"
 
19
#include <api/dicom/idicomizador.h>
 
20
#include <wx/ginkgostyle/ginkgostyle.h>
 
21
#include <main/gui/import/selectimagesimportation.h>
 
22
 
 
23
namespace GNC {
 
24
        namespace GCS {
 
25
                class IEntorno;
 
26
        }
 
27
}
 
28
 
 
29
namespace GNKVisualizator {
 
30
        namespace GUI {
 
31
 
 
32
                class SelectImagesImportationVisualizator: public GNC::GUI::SelectImagesImportation
 
33
                {
 
34
                        public:
 
35
                                SelectImagesImportationVisualizator(wxWindow* pParent,IWizard* pWizard,const GnkPtr<TipoWizardImportacion>& datosPersistentes,const std::string &dirTemporal);
 
36
                                ~SelectImagesImportationVisualizator();
 
37
 
 
38
                                virtual bool Validar();
 
39
 
 
40
                                virtual bool Dicomizar();
 
41
 
 
42
                                void RellenarTagsComunes(GIL::DICOM::TipoJerarquia& base);
 
43
 
 
44
                                GnkPtr<TipoWizardImportacion> m_pDatosPersistentes;
 
45
                                std::string m_dirTemporal;
 
46
                                bool m_dicomizado;
 
47
                };
 
48
        }
 
49
}