diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /CPP/Windows/Control/ComboBox.h | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-23.01.tar.gz 7zip-23.01.tar.bz2 7zip-23.01.zip |
23.0123.01
Diffstat (limited to '')
-rw-r--r-- | CPP/Windows/Control/ComboBox.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/CPP/Windows/Control/ComboBox.h b/CPP/Windows/Control/ComboBox.h index f08b1f7..2a60b8a 100644 --- a/CPP/Windows/Control/ComboBox.h +++ b/CPP/Windows/Control/ComboBox.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Windows/Control/ComboBox.h | 1 | // Windows/Control/ComboBox.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_CONTROL_COMBOBOX_H | 3 | #ifndef ZIP7_INC_WINDOWS_CONTROL_COMBOBOX_H |
4 | #define __WINDOWS_CONTROL_COMBOBOX_H | 4 | #define ZIP7_INC_WINDOWS_CONTROL_COMBOBOX_H |
5 | 5 | ||
6 | #include "../../Common/MyWindows.h" | 6 | #include "../../Common/MyWindows.h" |
7 | 7 | ||
@@ -12,8 +12,6 @@ | |||
12 | namespace NWindows { | 12 | namespace NWindows { |
13 | namespace NControl { | 13 | namespace NControl { |
14 | 14 | ||
15 | #define MY__int_TO_WPARAM(i) ((WPARAM)(INT_PTR)(i)) | ||
16 | |||
17 | class CComboBox: public CWindow | 15 | class CComboBox: public CWindow |
18 | { | 16 | { |
19 | public: | 17 | public: |
@@ -24,7 +22,8 @@ public: | |||
24 | #endif | 22 | #endif |
25 | 23 | ||
26 | /* If this parameter is -1, any current selection in the list is removed and the edit control is cleared.*/ | 24 | /* If this parameter is -1, any current selection in the list is removed and the edit control is cleared.*/ |
27 | LRESULT SetCurSel(int index) { return SendMsg(CB_SETCURSEL, MY__int_TO_WPARAM(index), 0); } | 25 | LRESULT SetCurSel(int index) { return SendMsg(CB_SETCURSEL, MY_int_TO_WPARAM(index), 0); } |
26 | LRESULT SetCurSel(unsigned index) { return SendMsg(CB_SETCURSEL, index, 0); } | ||
28 | 27 | ||
29 | /* If no item is selected, it returns CB_ERR (-1) */ | 28 | /* If no item is selected, it returns CB_ERR (-1) */ |
30 | int GetCurSel() { return (int)SendMsg(CB_GETCURSEL, 0, 0); } | 29 | int GetCurSel() { return (int)SendMsg(CB_GETCURSEL, 0, 0); } |
@@ -32,15 +31,16 @@ public: | |||
32 | /* If an error occurs, it is CB_ERR (-1) */ | 31 | /* If an error occurs, it is CB_ERR (-1) */ |
33 | int GetCount() { return (int)SendMsg(CB_GETCOUNT, 0, 0); } | 32 | int GetCount() { return (int)SendMsg(CB_GETCOUNT, 0, 0); } |
34 | 33 | ||
35 | LRESULT GetLBTextLen(int index) { return SendMsg(CB_GETLBTEXTLEN, MY__int_TO_WPARAM(index), 0); } | 34 | LRESULT GetLBTextLen(int index) { return SendMsg(CB_GETLBTEXTLEN, MY_int_TO_WPARAM(index), 0); } |
36 | LRESULT GetLBText(int index, LPTSTR s) { return SendMsg(CB_GETLBTEXT, MY__int_TO_WPARAM(index), (LPARAM)s); } | 35 | LRESULT GetLBText(int index, LPTSTR s) { return SendMsg(CB_GETLBTEXT, MY_int_TO_WPARAM(index), (LPARAM)s); } |
37 | LRESULT GetLBText(int index, CSysString &s); | 36 | LRESULT GetLBText(int index, CSysString &s); |
38 | #ifndef _UNICODE | 37 | #ifndef _UNICODE |
39 | LRESULT GetLBText(int index, UString &s); | 38 | LRESULT GetLBText(int index, UString &s); |
40 | #endif | 39 | #endif |
41 | 40 | ||
42 | LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, MY__int_TO_WPARAM(index), lParam); } | 41 | LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, MY_int_TO_WPARAM(index), lParam); } |
43 | LRESULT GetItemData(int index) { return SendMsg(CB_GETITEMDATA, MY__int_TO_WPARAM(index), 0); } | 42 | LRESULT GetItemData(int index) { return SendMsg(CB_GETITEMDATA, MY_int_TO_WPARAM(index), 0); } |
43 | LRESULT GetItemData(unsigned index) { return SendMsg(CB_GETITEMDATA, index, 0); } | ||
44 | 44 | ||
45 | LRESULT GetItemData_of_CurSel() { return GetItemData(GetCurSel()); } | 45 | LRESULT GetItemData_of_CurSel() { return GetItemData(GetCurSel()); } |
46 | 46 | ||
@@ -57,7 +57,7 @@ public: | |||
57 | /* Returns: | 57 | /* Returns: |
58 | an INT value that represents the number of items remaining in the control. | 58 | an INT value that represents the number of items remaining in the control. |
59 | If (index) is invalid, the message returns CB_ERR. */ | 59 | If (index) is invalid, the message returns CB_ERR. */ |
60 | LRESULT DeleteItem(int index) { return SendMsg(CBEM_DELETEITEM, MY__int_TO_WPARAM(index), 0); } | 60 | LRESULT DeleteItem(int index) { return SendMsg(CBEM_DELETEITEM, MY_int_TO_WPARAM(index), 0); } |
61 | 61 | ||
62 | LRESULT InsertItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_INSERTITEM, 0, (LPARAM)item); } | 62 | LRESULT InsertItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_INSERTITEM, 0, (LPARAM)item); } |
63 | #ifndef _UNICODE | 63 | #ifndef _UNICODE |
@@ -65,7 +65,7 @@ public: | |||
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | LRESULT SetItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_SETITEM, 0, (LPARAM)item); } | 67 | LRESULT SetItem(COMBOBOXEXITEM *item) { return SendMsg(CBEM_SETITEM, 0, (LPARAM)item); } |
68 | DWORD SetExtendedStyle(DWORD exMask, DWORD exStyle) { return (DWORD)SendMsg(CBEM_SETEXTENDEDSTYLE, exMask, exStyle); } | 68 | DWORD SetExtendedStyle(DWORD exMask, DWORD exStyle) { return (DWORD)SendMsg(CBEM_SETEXTENDEDSTYLE, exMask, (LPARAM)exStyle); } |
69 | HWND GetEditControl() { return (HWND)SendMsg(CBEM_GETEDITCONTROL, 0, 0); } | 69 | HWND GetEditControl() { return (HWND)SendMsg(CBEM_GETEDITCONTROL, 0, 0); } |
70 | HIMAGELIST SetImageList(HIMAGELIST imageList) { return (HIMAGELIST)SendMsg(CBEM_SETIMAGELIST, 0, (LPARAM)imageList); } | 70 | HIMAGELIST SetImageList(HIMAGELIST imageList) { return (HIMAGELIST)SendMsg(CBEM_SETIMAGELIST, 0, (LPARAM)imageList); } |
71 | }; | 71 | }; |