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

« back to all changes in this revision

Viewing changes to src/cadxcore/main/gui/pacsupload/wxwizarduploadpacs.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-07-21 11:58:53 UTC
  • mfrom: (1.2.1) (7.1.6 experimental)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20130721115853-0aii5ee76hxm8z1f
* 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:
1
 
/*
2
 
 *  
3
 
 *  $Id: wxwizarduploadpacs.h 3830 2011-05-06 13:30:18Z 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/iwizard.h>
16
 
#include <wx/wizardginkgo/wxwizardginkgobase.h>
17
 
#include <api/ientorno.h>
18
 
#include <main/controllers/pacscontroller.h>
19
 
#include <string>
20
 
#include <vector>
21
 
 
22
 
 
23
 
namespace GNC {
24
 
        namespace GUI {
25
 
                class wxWizardUploadPACSGinkgo: public wxWizardGinkgoBase
26
 
                {
27
 
                public:
28
 
                        typedef std::list<std::string> TListUIDs;
29
 
                        //list of series instances uids
30
 
                        wxWizardUploadPACSGinkgo(wxWindow* pParent, const TListUIDs& uids = TListUIDs());
31
 
                        ~wxWizardUploadPACSGinkgo();
32
 
 
33
 
                        virtual void OnCancelarClick(wxCommandEvent& event);
34
 
 
35
 
                        virtual void OnSiguienteClick(wxCommandEvent& event);
36
 
 
37
 
                        virtual void OnAnteriorClick(wxCommandEvent &event);
38
 
 
39
 
                        void CargarCurrent();
40
 
 
41
 
 
42
 
                        //region "Metodos de obtencion de resultados del dialogo"
43
 
                        virtual bool            IsOK();
44
 
 
45
 
                        
46
 
 
47
 
                        //endregion
48
 
 
49
 
 
50
 
                protected:
51
 
                        typedef std::vector<IPasoWizard*> ListaPasos;
52
 
                        ListaPasos m_ListaPasos;
53
 
                        ListaPasos::iterator m_currentPaso;
54
 
 
55
 
                        int m_currentPasoIndex;
56
 
                        bool            m_OK;
57
 
 
58
 
                };
59
 
        }
60
 
}