projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added support for SQL_C_UCHAR (unicode builds), SQL_C_LONG, and SQL_C_SHORT. These...
[wxWidgets.git]
/
samples
/
treectrl
/
treetest.h
diff --git
a/samples/treectrl/treetest.h
b/samples/treectrl/treetest.h
index 78d1a73fe4791ef369e23022e1864f9bf0d9524c..ebb7674e98334a3e8914ca68ebf3821283bffe8f 100644
(file)
--- a/
samples/treectrl/treetest.h
+++ b/
samples/treectrl/treetest.h
@@
-23,7
+23,7
@@
class MyApp : public wxApp
{
public:
class MyApp : public wxApp
{
public:
- MyApp() { m_showImages =
TRUE; m_showButtons = FALSE
; }
+ MyApp() { m_showImages =
true; m_showButtons = false
; }
bool OnInit();
bool OnInit();
@@
-65,7
+65,7
@@
public:
MyTreeCtrl(wxWindow *parent, const wxWindowID id,
const wxPoint& pos, const wxSize& size,
long style);
MyTreeCtrl(wxWindow *parent, const wxWindowID id,
const wxPoint& pos, const wxSize& size,
long style);
- virtual ~MyTreeCtrl();
+ virtual ~MyTreeCtrl()
{}
;
void OnBeginDrag(wxTreeEvent& event);
void OnBeginRDrag(wxTreeEvent& event);
void OnBeginDrag(wxTreeEvent& event);
void OnBeginRDrag(wxTreeEvent& event);
@@
-88,14
+88,15
@@
public:
void OnItemActivated(wxTreeEvent& event);
void OnRMouseDClick(wxMouseEvent& event);
void OnItemActivated(wxTreeEvent& event);
void OnRMouseDClick(wxMouseEvent& event);
- void GetItemsRecursively(const wxTreeItemId& idParent, long cookie);
+ void GetItemsRecursively(const wxTreeItemId& idParent,
+ wxTreeItemIdValue cookie = 0);
void CreateImageList(int size = 16);
void CreateButtonsImageList(int size = 11);
void AddTestItemsToTree(size_t numChildren, size_t depth);
void CreateImageList(int size = 16);
void CreateButtonsImageList(int size = 11);
void AddTestItemsToTree(size_t numChildren, size_t depth);
- void DoSortChildren(const wxTreeItemId& item, bool reverse =
FALSE
)
+ void DoSortChildren(const wxTreeItemId& item, bool reverse =
false
)
{ m_reverseSort = reverse; wxTreeCtrl::SortChildren(item); }
void DoEnsureVisible() { if (m_lastItem.IsOk()) EnsureVisible(m_lastItem); }
{ m_reverseSort = reverse; wxTreeCtrl::SortChildren(item); }
void DoEnsureVisible() { if (m_lastItem.IsOk()) EnsureVisible(m_lastItem); }
@@
-178,6
+179,7
@@
public:
void OnUnselect(wxCommandEvent& event);
void OnToggleSel(wxCommandEvent& event);
#endif // NO_MULTIPLE_SELECTION
void OnUnselect(wxCommandEvent& event);
void OnToggleSel(wxCommandEvent& event);
#endif // NO_MULTIPLE_SELECTION
+ void OnSelectRoot(wxCommandEvent& event);
void OnDelete(wxCommandEvent& event);
void OnDeleteChildren(wxCommandEvent& event);
void OnDeleteAll(wxCommandEvent& event);
void OnDelete(wxCommandEvent& event);
void OnDeleteChildren(wxCommandEvent& event);
void OnDeleteAll(wxCommandEvent& event);
@@
-188,8
+190,8
@@
public:
void OnSetImageSize(wxCommandEvent& event);
void OnCollapseAndReset(wxCommandEvent& event);
void OnSetImageSize(wxCommandEvent& event);
void OnCollapseAndReset(wxCommandEvent& event);
- void OnSetBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(
TRUE
); }
- void OnClearBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(
FALSE
); }
+ void OnSetBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(
true
); }
+ void OnClearBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(
false
); }
void OnEnsureVisible(wxCommandEvent& event);
void OnEnsureVisible(wxCommandEvent& event);
@@
-197,8
+199,8
@@
public:
void OnCountRec(wxCommandEvent& event);
void OnRename(wxCommandEvent& event);
void OnCountRec(wxCommandEvent& event);
void OnRename(wxCommandEvent& event);
- void OnSort(wxCommandEvent&
event
) { DoSort(); }
- void OnSortRev(wxCommandEvent&
event) { DoSort(TRUE
); }
+ void OnSort(wxCommandEvent&
WXUNUSED(event)
) { DoSort(); }
+ void OnSortRev(wxCommandEvent&
WXUNUSED(event)) { DoSort(true
); }
void OnAddItem(wxCommandEvent& event);
void OnInsertItem(wxCommandEvent& event);
void OnAddItem(wxCommandEvent& event);
void OnInsertItem(wxCommandEvent& event);
@@
-211,12
+213,13
@@
public:
void OnToggleIcon(wxCommandEvent& event);
void OnToggleIcon(wxCommandEvent& event);
+ void OnIdle(wxIdleEvent& event);
void OnSize(wxSizeEvent& event);
private:
void TogStyle(int id, long flag);
void OnSize(wxSizeEvent& event);
private:
void TogStyle(int id, long flag);
- void DoSort(bool reverse =
FALSE
);
+ void DoSort(bool reverse =
false
);
void Resize();
void Resize();
@@
-224,9
+227,11
@@
private:
void CreateTree(long style);
MyTreeCtrl *m_treeCtrl;
void CreateTree(long style);
MyTreeCtrl *m_treeCtrl;
+#if wxUSE_LOG
wxTextCtrl *m_textCtrl;
wxTextCtrl *m_textCtrl;
+#endif // wxUSE_LOG
- void DoSetBold(bool bold =
TRUE
);
+ void DoSetBold(bool bold =
true
);
DECLARE_EVENT_TABLE()
};
DECLARE_EVENT_TABLE()
};
@@
-275,5
+280,6
@@
enum
TreeTest_ToggleIcon,
TreeTest_Select,
TreeTest_Unselect,
TreeTest_ToggleIcon,
TreeTest_Select,
TreeTest_Unselect,
+ TreeTest_SelectRoot,
TreeTest_Ctrl = 1000
};
TreeTest_Ctrl = 1000
};