diff options
| author | George Hazan <ghazan@miranda.im> | 2020-06-26 18:20:18 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2020-06-26 18:20:18 +0300 |
| commit | e5f16d2ad58fb8a5571c5c24603256adf506fd48 (patch) | |
| tree | 9e9defc8f81341824653029cb171d54e49ad6f68 /include | |
| parent | 6810c23ee8e069c9156349638e1bad770854372e (diff) | |
Jabber: rest of CJabberDlgGcJoin moved to UI classes
Diffstat (limited to 'include')
| -rw-r--r-- | include/m_gui.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index a62e706a11..d278f6b319 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -851,26 +851,26 @@ class MIR_CORE_EXPORT CCtrlListBox : public CCtrlBase public:
CCtrlListBox(CDlgBase *dlg, int ctrlId);
- int AddString(const wchar_t *text, LPARAM data=0);
- void DeleteString(int index);
- int FindString(const wchar_t *str, int index = -1, bool exact = false);
- int GetCount();
- int GetCurSel();
- LPARAM GetItemData(int index);
- int GetItemRect(int index, RECT *pResult);
+ int AddString(const wchar_t *text, LPARAM data=0);
+ void DeleteString(int index);
+ int FindString(const wchar_t *str, int index = -1, bool exact = false);
+ int GetCount();
+ int GetCurSel();
+ LPARAM GetItemData(int index);
+ int GetItemRect(int index, RECT *pResult);
wchar_t* GetItemText(int index);
wchar_t* GetItemText(int index, wchar_t *buf, int size);
- bool GetSel(int index);
- int GetSelCount();
- int* GetSelItems(int *items, int count);
- int* GetSelItems();
- int InsertString(const wchar_t *text, int pos, LPARAM data=0);
- void ResetContent();
- int SelectString(const wchar_t *str);
- int SetCurSel(int index);
- void SetItemData(int index, LPARAM data);
- void SetItemHeight(int index, int iHeight);
- void SetSel(int index, bool sel = true);
+ bool GetSel(int index);
+ int GetSelCount();
+ int* GetSelItems(int *items, int count);
+ int* GetSelItems();
+ int InsertString(const wchar_t *text, int pos, LPARAM data=0);
+ void ResetContent();
+ int SelectString(const wchar_t *str);
+ int SetCurSel(int index);
+ void SetItemData(int index, LPARAM data);
+ void SetItemHeight(int index, int iHeight);
+ void SetSel(int index, bool sel = true);
// Events
CCallback<CCtrlListBox> OnDblClick;
@@ -897,23 +897,23 @@ public: void OnReset() override;
// Control interface
- int AddString(const wchar_t *text, LPARAM data = 0);
- int AddStringA(const char *text, LPARAM data = 0);
- void DeleteString(int index);
- int FindString(const wchar_t *str, int index = -1, bool exact = false);
- int FindStringA(const char *str, int index = -1, bool exact = false);
- int GetCount();
- int GetCurSel();
- bool GetDroppedState();
- LPARAM GetItemData(int index);
+ int AddString(const wchar_t *text, LPARAM data = 0);
+ int AddStringA(const char *text, LPARAM data = 0);
+ void DeleteString(int index);
+ int FindString(const wchar_t *str, int index = -1, bool exact = false);
+ int FindStringA(const char *str, int index = -1, bool exact = false);
+ int GetCount();
+ int GetCurSel();
+ bool GetDroppedState();
+ LPARAM GetItemData(int index);
wchar_t* GetItemText(int index);
wchar_t* GetItemText(int index, wchar_t *buf, int size);
- int InsertString(const wchar_t *text, int pos, LPARAM data=0);
- void ResetContent();
- int SelectString(const wchar_t *str);
- int SetCurSel(int index);
- void SetItemData(int index, LPARAM data);
- void ShowDropdown(bool show = true);
+ int InsertString(const wchar_t *text, int pos, LPARAM data=0);
+ void ResetContent();
+ int SelectString(const wchar_t *str);
+ int SetCurSel(int index);
+ void SetItemData(int index, LPARAM data);
+ void ShowDropdown(bool show = true);
// Events
CCallback<CCtrlCombo> OnCloseup;
|
