diff options
author | George Hazan <ghazan@miranda.im> | 2022-07-30 18:15:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-07-30 18:15:50 +0300 |
commit | 1a4f30d78b1986f3f79558de725c8f34dae3ee75 (patch) | |
tree | 5f945598e45365b42a9c1820f8949a72e2f0d6c7 /plugins/WhenWasIt/src/dlg_handlers.h | |
parent | f1c1e760bed3593799a48e0b2ca12b5cbed3ba47 (diff) |
WhenWasIt: all dialogs -> UI classes
Diffstat (limited to 'plugins/WhenWasIt/src/dlg_handlers.h')
-rw-r--r-- | plugins/WhenWasIt/src/dlg_handlers.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/plugins/WhenWasIt/src/dlg_handlers.h b/plugins/WhenWasIt/src/dlg_handlers.h index 8c8d41f08d..587a1c9936 100644 --- a/plugins/WhenWasIt/src/dlg_handlers.h +++ b/plugins/WhenWasIt/src/dlg_handlers.h @@ -38,8 +38,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. int OnOptionsInitialise(WPARAM wParam, LPARAM);
-INT_PTR CALLBACK DlgProcBirthdays(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
-INT_PTR CALLBACK DlgProcAddBirthday(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
+class CBasicListDlg : public CDlgBase
+{
+protected:
+ CCtrlListView m_list;
+
+ CBasicListDlg(int dlgId);
+
+ void Sort(int iCol);
+
+ void onDblClick_List(CCtrlListView::TEventInfo*);
+ void onMenu_List(CContextMenuPos *pos);
+};
+
INT_PTR CALLBACK DlgProcUpcoming(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
LRESULT CALLBACK DlgProcPopup(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|