Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / utils / wxNamingViewer / wxSelectNSDialog.h
blob8052483bc7376af59ac9424811f2451abe6b6b24
1 // wxSelectNSDialog.h
3 #ifndef i_WxSelectNSDialog_h
4 #define i_WxSelectNSDialog_h
6 class WxSelectNSDialog : public
7 wxDialog
9 public:
10 WxSelectNSDialog( wxWindow* parent);
11 virtual ~WxSelectNSDialog();
13 const wxString& getIOR() const {return ior;};
14 const wxString& getServerName() const {return serverName;};
16 private:
17 void onAdd( wxCommandEvent& event);
18 void onDefault( wxCommandEvent& event);
19 void onInitDialog( wxInitDialogEvent& event);
20 void onOK( wxCommandEvent& event);
21 void onRemove( wxCommandEvent& event);
22 void onLeftDClick( wxMouseEvent& event);
24 class ACE_Configuration* config;
26 wxListBox* servers;
27 wxString ior;
28 wxString serverName;
30 DECLARE_EVENT_TABLE()
33 #endif