forked from rainmeter/rainmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialog.h
62 lines (46 loc) · 1.59 KB
/
Dialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Copyright (C) 2011 Rainmeter Project Developers
*
* This Source Code Form is subject to the terms of the GNU General Public
* License; either version 2 of the License, or (at your option) any later
* version. If a copy of the GPL was not distributed with this file, You can
* obtain one at <https://www.gnu.org/licenses/gpl-2.0.html>. */
#ifndef __DIALOG_H__
#define __DIALOG_H__
class OldDialog
{
public:
HWND GetWindow() { return m_Window; }
static HWND GetActiveDialogWindow() { return c_ActiveDialogWindow; }
static HWND GetActiveTabWindow() { return c_ActiveTabWindow; }
protected:
class Tab
{
public:
HWND GetWindow() { return m_Window; }
bool IsInitialized() { return m_Initialized; }
void Activate();
virtual void Initialize() {}
virtual void Resize(int w, int h) {}
protected:
Tab(HINSTANCE instance, HWND owner, WORD tabId, DLGPROC tabProc);
virtual ~Tab();
HWND m_Window;
bool m_Initialized;
};
OldDialog(HWND wnd);
virtual ~OldDialog();
virtual HWND GetActiveWindow() { return m_Window; }
INT_PTR OnActivate(WPARAM wParam, LPARAM lParam);
void SetDialogFont(HWND window);
void SetDialogFont() { SetDialogFont(m_Window); }
static void SetMenuButton(HWND button);
HWND m_Window;
HFONT m_Font;
HFONT m_FontBold;
private:
static BOOL CALLBACK SetFontProc(HWND hWnd, LPARAM lParam);
static LRESULT CALLBACK MenuButtonProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData);
static HWND c_ActiveDialogWindow;
static HWND c_ActiveTabWindow;
};
#endif