~ubuntu-branches/ubuntu/trusty/ginkgocadx/trusty

« back to all changes in this revision

Viewing changes to src/cadxcore/main/gui/anonymize/anonymizedialog.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-07-21 11:58:53 UTC
  • mfrom: (7.2.1 sid)
  • Revision ID: package-import@ubuntu.com-20130721115853-44e7n1xujqglu78e
Tags: 3.4.0.928.29+dfsg-1
* New upstream release [July 2013]
  + new B-D: "libjsoncpp-dev".
  + new patch "unbundle-libjsoncpp.patch" to avoid building bundled
    "libjsoncpp-dev".
  + new patch "fix-wx.patch" to avoid FTBFS due to missing
    "-lwx_gtk2u_html-2.8".
* Removed unnecessary versioned Build-Depends.
* Removed obsolete lintian override.
* Reference get-orig-source implementation for orig.tar clean-up and
  DFSG-repackaging.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
namespace GNC {
24
24
        namespace GUI {
 
25
                class AnonymizePanel;
25
26
                class AnonymizeDialog: public AnonymizeDialogBase
26
27
                {
27
28
                public:
28
29
                        AnonymizeDialog(wxWindow* pParent, const std::list<long>& seriesPk);
29
30
                        ~AnonymizeDialog();
30
31
 
 
32
 
31
33
                protected:
32
 
                        void SetTags(GIL::DICOM::DicomDataset & base,wxPGPropArg idPadre,GIL::DICOM::IDICOMManager*     pDICOMManager);
33
 
                        virtual void OnCheckNombreApellidos( wxCommandEvent& event );
34
 
                        virtual void OnCheckIdPaciente( wxCommandEvent& event );
35
 
                        virtual void OnCheckInstituciones( wxCommandEvent& event );
36
 
                        virtual void OnCheckPhysician( wxCommandEvent& event );
37
 
                        virtual void OnCheckComentarios( wxCommandEvent& event );
38
 
 
39
 
                        void Anonymize(std::string& clave, bool anonimizar);
40
 
                        void GetTagsAnonymized(GIL::DICOM::DicomDataset & base);
41
 
 
42
 
                        void OnPropertyChanged(wxPropertyGridEvent& event);
43
 
                        void OnPropertyDobleClick(wxPropertyGridEvent& event);
44
 
 
 
34
                        
45
35
                        virtual void OnOverwriteClick( wxCommandEvent& event );
46
36
                        virtual void OnCreateNewClick( wxCommandEvent& event );
47
37
 
48
38
                        void LaunchCommand(bool overwrite);
49
39
 
50
 
                        GIL::DICOM::DicomDataset m_base;
51
40
                        GNC::GCS::Ptr<TipoWizardExportacion> m_pDatosPersistentes;
 
41
                        GNC::GUI::AnonymizePanel* m_pAnonymizePanel;
52
42
                };
53
43
        }
54
44
}