Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / utils / wxNamingViewer / wxViewIORDialog.h
blobdc9f213339a9f5a32a1531a17ed5dc1ce0a2b3aa
1 // wxViewIORDialog.h
3 #ifndef i_wxViewIORDialog_h
4 #define i_wxViewIORDialog_h
7 class WxViewIORDialog:
8 public wxDialog
10 public:
11 WxViewIORDialog(
12 CORBA::ORB_ptr orb,
13 CORBA::Object_ptr object,
14 wxWindow* parent);
16 private:
17 void OnApply( wxCommandEvent& event);
18 void onIORText( wxCommandEvent& event);
19 virtual bool TransferDataFromWindow();
20 virtual bool TransferDataToWindow();
21 void decodeIOR();
23 wxString typeID;
24 wxString ior;
25 class wxTextCtrl* typeIDText;
26 class wxTextCtrl* iorText;
27 class wxTreeCtrl* profiles;
28 class wxButton* applyButton;
30 CORBA::Object_var object;
31 CORBA::ORB_ptr orb;
33 DECLARE_EVENT_TABLE()
36 #endif