aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/Control/ListView.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Windows/Control/ListView.h')
-rw-r--r--CPP/Windows/Control/ListView.h51
1 files changed, 30 insertions, 21 deletions
diff --git a/CPP/Windows/Control/ListView.h b/CPP/Windows/Control/ListView.h
index a13b104..11a33a0 100644
--- a/CPP/Windows/Control/ListView.h
+++ b/CPP/Windows/Control/ListView.h
@@ -1,7 +1,7 @@
1// Windows/Control/ListView.h 1// Windows/Control/ListView.h
2 2
3#ifndef __WINDOWS_CONTROL_LISTVIEW_H 3#ifndef ZIP7_INC_WINDOWS_CONTROL_LISTVIEW_H
4#define __WINDOWS_CONTROL_LISTVIEW_H 4#define ZIP7_INC_WINDOWS_CONTROL_LISTVIEW_H
5 5
6#include "../../Common/MyWindows.h" 6#include "../../Common/MyWindows.h"
7 7
@@ -28,11 +28,11 @@ public:
28 } 28 }
29 29
30 bool DeleteAllItems() { return BOOLToBool(ListView_DeleteAllItems(_window)); } 30 bool DeleteAllItems() { return BOOLToBool(ListView_DeleteAllItems(_window)); }
31 bool DeleteColumn(int columnIndex) { return BOOLToBool(ListView_DeleteColumn(_window, columnIndex)); } 31 bool DeleteColumn(unsigned columnIndex) { return BOOLToBool(ListView_DeleteColumn(_window, columnIndex)); }
32 32
33 int InsertColumn(int columnIndex, const LVCOLUMN *columnInfo) { return ListView_InsertColumn(_window, columnIndex, columnInfo); } 33 int InsertColumn(unsigned columnIndex, const LVCOLUMN *columnInfo) { return ListView_InsertColumn(_window, columnIndex, columnInfo); }
34 int InsertColumn(int columnIndex, LPCTSTR text, int width); 34 int InsertColumn(unsigned columnIndex, LPCTSTR text, int width);
35 bool SetColumnOrderArray(int count, const int *columns) 35 bool SetColumnOrderArray(unsigned count, const int *columns)
36 { return BOOLToBool(ListView_SetColumnOrderArray(_window, count, (int *)(void *)columns)); } 36 { return BOOLToBool(ListView_SetColumnOrderArray(_window, count, (int *)(void *)columns)); }
37 37
38 /* 38 /*
@@ -46,43 +46,49 @@ public:
46 */ 46 */
47 47
48 int InsertItem(const LVITEM* item) { return ListView_InsertItem(_window, item); } 48 int InsertItem(const LVITEM* item) { return ListView_InsertItem(_window, item); }
49 int InsertItem(int index, LPCTSTR text); 49 int InsertItem(unsigned index, LPCTSTR text);
50 bool SetItem(const LVITEM* item) { return BOOLToBool(ListView_SetItem(_window, item)); } 50 bool SetItem(const LVITEM* item) { return BOOLToBool(ListView_SetItem(_window, item)); }
51 int SetSubItem(int index, int subIndex, LPCTSTR text); 51 int SetSubItem(unsigned index, unsigned subIndex, LPCTSTR text);
52 52
53 #ifndef _UNICODE 53 #ifndef _UNICODE
54 54
55 int InsertColumn(int columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMsg(LVM_INSERTCOLUMNW, (WPARAM)columnIndex, (LPARAM)columnInfo); } 55 int InsertColumn(unsigned columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMsg(LVM_INSERTCOLUMNW, (WPARAM)columnIndex, (LPARAM)columnInfo); }
56 int InsertColumn(int columnIndex, LPCWSTR text, int width); 56 int InsertColumn(unsigned columnIndex, LPCWSTR text, int width);
57 int InsertItem(const LV_ITEMW* item) { return (int)SendMsg(LVM_INSERTITEMW, 0, (LPARAM)item); } 57 int InsertItem(const LV_ITEMW* item) { return (int)SendMsg(LVM_INSERTITEMW, 0, (LPARAM)item); }
58 int InsertItem(int index, LPCWSTR text); 58 int InsertItem(unsigned index, LPCWSTR text);
59 bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item)); } 59 bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item)); }
60 int SetSubItem(int index, int subIndex, LPCWSTR text); 60 int SetSubItem(unsigned index, unsigned subIndex, LPCWSTR text);
61 61
62 #endif 62 #endif
63 63
64 bool DeleteItem(int itemIndex) { return BOOLToBool(ListView_DeleteItem(_window, itemIndex)); } 64 bool DeleteItem(unsigned itemIndex) { return BOOLToBool(ListView_DeleteItem(_window, itemIndex)); }
65 65
66 UINT GetSelectedCount() const { return ListView_GetSelectedCount(_window); } 66 UINT GetSelectedCount() const { return ListView_GetSelectedCount(_window); }
67 int GetItemCount() const { return ListView_GetItemCount(_window); } 67 int GetItemCount() const { return ListView_GetItemCount(_window); }
68 68
69 INT GetSelectionMark() const { return ListView_GetSelectionMark(_window); } 69 INT GetSelectionMark() const { return ListView_GetSelectionMark(_window); }
70 70
71 void SetItemCount(int numItems) { ListView_SetItemCount(_window, numItems); } 71 void SetItemCount(unsigned numItems) { ListView_SetItemCount(_window, numItems); }
72 void SetItemCountEx(int numItems, DWORD flags) { ListView_SetItemCountEx(_window, numItems, flags); } 72 void SetItemCountEx(unsigned numItems, DWORD flags) { ListView_SetItemCountEx(_window, numItems, flags); }
73 73
74 /* startIndex : The index of the item with which to begin the search,
75 or -1 to find the first item that matches the specified flags.
76 The specified item itself is excluded from the search. */
74 int GetNextItem(int startIndex, UINT flags) const { return ListView_GetNextItem(_window, startIndex, flags); } 77 int GetNextItem(int startIndex, UINT flags) const { return ListView_GetNextItem(_window, startIndex, flags); }
75 int GetNextSelectedItem(int startIndex) const { return GetNextItem(startIndex, LVNI_SELECTED); } 78 int GetNextSelectedItem(int startIndex) const { return GetNextItem(startIndex, LVNI_SELECTED); }
76 int GetFocusedItem() const { return GetNextItem(-1, LVNI_FOCUSED); } 79 int GetFocusedItem() const { return GetNextItem(-1, LVNI_FOCUSED); }
77 80
78 bool GetItem(LVITEM* item) const { return BOOLToBool(ListView_GetItem(_window, item)); } 81 bool GetItem(LVITEM* item) const { return BOOLToBool(ListView_GetItem(_window, item)); }
79 bool GetItemParam(int itemIndex, LPARAM &param) const; 82 bool GetItemParam(unsigned itemIndex, LPARAM &param) const;
80 void GetItemText(int itemIndex, int subItemIndex, LPTSTR text, int textSizeMax) const 83 /*
81 { ListView_GetItemText(_window, itemIndex, subItemIndex, text, textSizeMax); } 84 void GetItemText(unsigned itemIndex, unsigned subItemIndex, LPTSTR text, unsigned textSizeMax) const
85 { ListView_GetItemText(_window, itemIndex, subItemIndex, text, textSizeMax) }
86 */
82 bool SortItems(PFNLVCOMPARE compareFunction, LPARAM dataParam) 87 bool SortItems(PFNLVCOMPARE compareFunction, LPARAM dataParam)
83 { return BOOLToBool(ListView_SortItems(_window, compareFunction, dataParam)); } 88 { return BOOLToBool(ListView_SortItems(_window, compareFunction, dataParam)); }
84 89
85 void SetItemState(int index, UINT state, UINT mask) { ListView_SetItemState(_window, index, state, mask); } 90 // If (index == -1), then the state change is applied to all items.
91 void SetItemState(int index, UINT state, UINT mask) { ListView_SetItemState(_window, index, state, mask) }
86 void SetItemState_Selected(int index, bool select) { SetItemState(index, select ? LVIS_SELECTED : 0, LVIS_SELECTED); } 92 void SetItemState_Selected(int index, bool select) { SetItemState(index, select ? LVIS_SELECTED : 0, LVIS_SELECTED); }
87 void SetItemState_Selected(int index) { SetItemState(index, LVIS_SELECTED, LVIS_SELECTED); } 93 void SetItemState_Selected(int index) { SetItemState(index, LVIS_SELECTED, LVIS_SELECTED); }
88 void SelectAll() { SetItemState_Selected(-1); } 94 void SelectAll() { SetItemState_Selected(-1); }
@@ -90,7 +96,7 @@ public:
90 UINT GetItemState(int index, UINT mask) const { return ListView_GetItemState(_window, index, mask); } 96 UINT GetItemState(int index, UINT mask) const { return ListView_GetItemState(_window, index, mask); }
91 bool IsItemSelected(int index) const { return GetItemState(index, LVIS_SELECTED) == LVIS_SELECTED; } 97 bool IsItemSelected(int index) const { return GetItemState(index, LVIS_SELECTED) == LVIS_SELECTED; }
92 98
93 bool GetColumn(int columnIndex, LVCOLUMN* columnInfo) const 99 bool GetColumn(unsigned columnIndex, LVCOLUMN* columnInfo) const
94 { return BOOLToBool(ListView_GetColumn(_window, columnIndex, columnInfo)); } 100 { return BOOLToBool(ListView_GetColumn(_window, columnIndex, columnInfo)); }
95 101
96 HIMAGELIST SetImageList(HIMAGELIST imageList, int imageListType) 102 HIMAGELIST SetImageList(HIMAGELIST imageList, int imageListType)
@@ -101,7 +107,7 @@ public:
101 void SetExtendedListViewStyle(DWORD exStyle) { ListView_SetExtendedListViewStyle(_window, exStyle); } 107 void SetExtendedListViewStyle(DWORD exStyle) { ListView_SetExtendedListViewStyle(_window, exStyle); }
102 void SetExtendedListViewStyle(DWORD exMask, DWORD exStyle) { ListView_SetExtendedListViewStyleEx(_window, exMask, exStyle); } 108 void SetExtendedListViewStyle(DWORD exMask, DWORD exStyle) { ListView_SetExtendedListViewStyleEx(_window, exMask, exStyle); }
103 109
104 void SetCheckState(UINT index, bool checkState) { ListView_SetCheckState(_window, index, BoolToBOOL(checkState)); } 110 void SetCheckState(UINT index, bool checkState) { ListView_SetCheckState(_window, index, BoolToBOOL(checkState)) }
105 bool GetCheckState(UINT index) { return BOOLToBool(ListView_GetCheckState(_window, index)); } 111 bool GetCheckState(UINT index) { return BOOLToBool(ListView_GetCheckState(_window, index)); }
106 112
107 bool EnsureVisible(int index, bool partialOK) { return BOOLToBool(ListView_EnsureVisible(_window, index, BoolToBOOL(partialOK))); } 113 bool EnsureVisible(int index, bool partialOK) { return BOOLToBool(ListView_EnsureVisible(_window, index, BoolToBOOL(partialOK))); }
@@ -129,7 +135,10 @@ public:
129class CListView2: public CListView 135class CListView2: public CListView
130{ 136{
131 WNDPROC _origWindowProc; 137 WNDPROC _origWindowProc;
138 // ~CListView2() ZIP7_eq_delete;
132public: 139public:
140 virtual ~CListView2() {}
141 CListView2() {}
133 void SetWindowProc(); 142 void SetWindowProc();
134 virtual LRESULT OnMessage(UINT message, WPARAM wParam, LPARAM lParam); 143 virtual LRESULT OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
135}; 144};