Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / utils / wxNamingViewer / wxBindDialog.h
blob4ad7f4f0f65ca0ba3ed1c7710cc0740415017c93
1 // wxBindDialog.h
3 #ifndef i_wxBindDialog_h
4 #define i_wxBindDialog_h
6 #include "orbsvcs/CosNamingC.h"
9 class WxBindDialog:
10 public wxDialog
12 public:
13 WxBindDialog( bool isContext, CORBA::ORB_ptr orb, wxWindow* parent);
15 CORBA::Object_ptr getObject() {return object.in();};
16 CosNaming::Name& getName() {return name;};
18 private:
19 wxString ior;
20 wxString id;
21 wxString kind;
23 virtual bool TransferDataFromWindow();
25 void onViewIOR( wxCommandEvent& event);
27 CORBA::Object_var object;
28 CORBA::ORB_ptr orb;
29 CosNaming::Name name;
30 bool isContext;
32 DECLARE_EVENT_TABLE()
35 #endif