]> Creatis software - creaImageIO.git/blob - src/creaImageIOWxPACSConnectionPanel.h
6904a282ea18bbfa5cec9cf2fd317f10a65e7546
[creaImageIO.git] / src / creaImageIOWxPACSConnectionPanel.h
1 #ifndef __creaImageIOWxPACSConnectionPanel_h_INCLUDED__
2 #define __creaImageIOWxPACSConnectionPanel_h_INCLUDED__
3
4 #ifdef USE_WXWIDGETS
5 #include <creaWx.h>
6 #include <creaImageIOWxGimmickView.h>
7
8
9 namespace creaImageIO
10 {
11   /**
12    * \ingroup GUI
13    */
14   //=====================================================================
15  //=====================================================================
16   class WxPACSConnectionPanel : public wxPanel
17   {
18   public:
19     WxPACSConnectionPanel();    
20         WxPACSConnectionPanel(wxWindow *parent, 
21                 wxDialog* dial,
22                 WxGimmickView* view);
23     
24     ~WxPACSConnectionPanel();
25         ///Queries the PACS
26          void OnQueryPACS(wxCommandEvent& event);  
27
28   private :
29         wxTextCtrl* aeTitle;
30         wxTextCtrl* pNumber;
31         wxTextCtrl*     address;
32         wxDialog* dialog;
33         WxGimmickView* mView;
34
35
36   }; // class WxPACSConnectionPanel
37   //=====================================================================
38
39   
40 } // EO namespace creaImageIO
41
42
43 #endif // USE_WIDGETS
44 // EOF
45 #endif
46
47