summaryrefslogtreecommitdiff
path: root/examples/ConfigViewer/ConfigTreeCtrl.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-27 18:14:04 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-27 18:14:04 +0000
commit6c13de310492e31ede379bb04df1c62cbdb4b09f (patch)
treee97ae496cdcdecfec591b74ea60dde5ceb33d32a /examples/ConfigViewer/ConfigTreeCtrl.h
parentb5e068afb139dc7c6b9cf90c53571a4333105c95 (diff)
downloadATCD-pre_dynamic_any.tar.gz
This commit was manufactured by cvs2svn to create tagpre_dynamic_any
'pre_dynamic_any'.
Diffstat (limited to 'examples/ConfigViewer/ConfigTreeCtrl.h')
-rw-r--r--examples/ConfigViewer/ConfigTreeCtrl.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/examples/ConfigViewer/ConfigTreeCtrl.h b/examples/ConfigViewer/ConfigTreeCtrl.h
deleted file mode 100644
index e44eb837384..00000000000
--- a/examples/ConfigViewer/ConfigTreeCtrl.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#ifndef _ConfigurationViewer_ConfigTreeCtrl_H
-#define _ConfigurationViewer_ConfigTreeCtrl_H
-
-class ValueListCtrl;
-
-class ConfigTreeCtrl : public wxTreeCtrl
-{
-public:
- ///////////////////////////////////////////
- // Initializers
- ///////////////////////////////////////////
- ConfigTreeCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTR_HAS_BUTTONS, const wxValidator& validator = wxDefaultValidator, const wxString& name = "listCtrl");
- virtual ~ConfigTreeCtrl();
-
- ///////////////////////////////////////////
- // Methods
- ///////////////////////////////////////////
- void LoadTree();
- void OnRightDown(wxMouseEvent& event);
- void OnRightUp(wxMouseEvent& event);
- void OnNewKey(wxCommandEvent& event);
- void OnNewString(wxCommandEvent& event);
- void OnNewUINT(wxCommandEvent& event);
- void OnNewBinary(wxCommandEvent& event);
- void OnFind(wxCommandEvent& event);
- void OnDelete(wxCommandEvent& event);
- void OnSelChanged(wxTreeEvent& event);
- void ChangeConfig(ACE_Configuration* pConfig);
- ///////////////////////////////////////////
- // Attribute Accessors
- ///////////////////////////////////////////
- void SetpListCtrl(ValueListCtrl* pListCtrl) {m_pListCtrl = pListCtrl;};
-
-protected:
- // Not Used
- ConfigTreeCtrl(const ConfigTreeCtrl& RHS);
- const ConfigTreeCtrl& operator=(const ConfigTreeCtrl& RHS);
-
- void LoadSection(wxTreeItemId& ParentItem, const ACE_Configuration_Section_Key& Key);
- void ResolveKey(wxTreeItemId Item, ACE_Configuration_Section_Key& Key);
-private:
- DECLARE_EVENT_TABLE()
-
- ACE_Configuration* m_pConfig;
- ValueListCtrl* m_pListCtrl;
-};
-
-#endif
-