summaryrefslogtreecommitdiff
path: root/examples/ConfigViewer/ValueListCtrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ConfigViewer/ValueListCtrl.h')
-rw-r--r--examples/ConfigViewer/ValueListCtrl.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/examples/ConfigViewer/ValueListCtrl.h b/examples/ConfigViewer/ValueListCtrl.h
deleted file mode 100644
index ce802e67e96..00000000000
--- a/examples/ConfigViewer/ValueListCtrl.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#ifndef _ConfigurationViewer_ValueListCtrl_H
-#define _ConfigurationViewer_ValueListCtrl_H
-
-class ValueListCtrl : public wxListCtrl
-{
-public:
- ///////////////////////////////////////////
- // Initializers
- ///////////////////////////////////////////
- ValueListCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize, long style = wxLC_ICON,
- const wxValidator& validator = wxDefaultValidator,
- const wxString& name = "listCtrl");
- virtual ~ValueListCtrl();
-
- ///////////////////////////////////////////
- // Methods
- ///////////////////////////////////////////
- void DisplaySection(const ACE_Configuration_Section_Key& Key);
- long GetSelectedItem();
- void SelectItem(long ItemID);
- void OnRightDown(wxMouseEvent& event);
- void OnModify(wxCommandEvent& event);
- void OnDelete(wxCommandEvent& event);
- void OnRename(wxCommandEvent& event);
- void ChangeConfig(ACE_Configuration* pConfig);
- ///////////////////////////////////////////
- // Attribute Accessors
- ///////////////////////////////////////////
-
-protected:
- // Not Used
- ValueListCtrl(const ValueListCtrl& RHS);
- const ValueListCtrl& operator=(const ValueListCtrl& RHS);
-
- DECLARE_EVENT_TABLE()
-private:
-
- ACE_Configuration* m_pConfig;
- ACE_Configuration_Section_Key m_Key;
-};
-
-#endif
-