2011-08-28 10:58:26 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 Birunthan Mohanathas
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-08-28 10:58:26 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-21 12:53:55 +00:00
|
|
|
#ifndef __DIALOG_H__
|
|
|
|
#define __DIALOG_H__
|
2011-08-28 10:58:26 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
class Dialog
|
2011-08-28 10:58:26 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
HWND GetWindow() { return m_Window; }
|
|
|
|
|
2012-02-21 09:03:16 +00:00
|
|
|
static HWND GetActiveDialogWindow() { return c_ActiveDialogWindow; }
|
|
|
|
static HWND GetActiveTabWindow() { return c_ActiveTabWindow; }
|
2012-02-14 17:00:07 +00:00
|
|
|
|
2011-08-28 10:58:26 +00:00
|
|
|
protected:
|
2013-05-31 14:18:52 +00:00
|
|
|
class Tab
|
2011-11-25 19:11:46 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
HWND GetWindow() { return m_Window; }
|
|
|
|
bool IsInitialized() { return m_Initialized; }
|
|
|
|
void Activate();
|
|
|
|
|
|
|
|
virtual void Initialize() {}
|
|
|
|
virtual void Resize(int w, int h) {}
|
|
|
|
|
|
|
|
protected:
|
2013-05-31 14:18:52 +00:00
|
|
|
Tab(HINSTANCE instance, HWND owner, WORD tabId, DLGPROC tabProc);
|
|
|
|
virtual ~Tab();
|
2011-11-25 19:11:46 +00:00
|
|
|
|
|
|
|
HWND m_Window;
|
|
|
|
bool m_Initialized;
|
|
|
|
};
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
Dialog(HWND wnd);
|
|
|
|
virtual ~Dialog();
|
2011-08-28 10:58:26 +00:00
|
|
|
|
2012-06-16 18:41:17 +00:00
|
|
|
virtual HWND GetActiveWindow() { return m_Window; }
|
2012-02-21 09:03:16 +00:00
|
|
|
|
2012-02-14 17:00:07 +00:00
|
|
|
INT_PTR OnActivate(WPARAM wParam, LPARAM lParam);
|
|
|
|
|
2012-06-16 18:41:17 +00:00
|
|
|
void SetDialogFont(HWND window);
|
|
|
|
void SetDialogFont() { SetDialogFont(m_Window); }
|
2011-08-28 10:58:26 +00:00
|
|
|
|
2012-06-17 13:31:16 +00:00
|
|
|
static void SetMenuButton(HWND button);
|
|
|
|
|
2011-08-28 10:58:26 +00:00
|
|
|
HWND m_Window;
|
|
|
|
HFONT m_Font;
|
|
|
|
HFONT m_FontBold;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static BOOL CALLBACK SetFontProc(HWND hWnd, LPARAM lParam);
|
2012-06-17 13:31:16 +00:00
|
|
|
static LRESULT CALLBACK MenuButtonProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData);
|
2012-02-21 09:03:16 +00:00
|
|
|
|
|
|
|
static HWND c_ActiveDialogWindow;
|
|
|
|
static HWND c_ActiveTabWindow;
|
2011-08-28 10:58:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|