mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
b11abf09f0
- Minor changes to illustro
124 lines
3.2 KiB
C++
124 lines
3.2 KiB
C++
/*
|
|
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
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __DIALOGABOUT_H__
|
|
#define __DIALOGABOUT_H__
|
|
|
|
#include "Dialog.h"
|
|
|
|
class CDialogAbout : public CDialog
|
|
{
|
|
public:
|
|
CDialogAbout(HWND window);
|
|
virtual ~CDialogAbout();
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnInitDialog(WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnNotify(WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnCommand(WPARAM wParam, LPARAM lParam);
|
|
|
|
static void Open(const WCHAR* name);
|
|
static void Open(int tab = 0);
|
|
static void ShowAboutLog();
|
|
|
|
static void AddLogItem(int level, LPCWSTR time, LPCWSTR message);
|
|
static void UpdateSkins();
|
|
static void UpdateMeasures(CMeterWindow* meterWindow);
|
|
|
|
static WINDOWPLACEMENT c_WindowPlacement;
|
|
static CDialogAbout* c_Dialog;
|
|
|
|
private:
|
|
// Log tab
|
|
class CTabLog : public CTab
|
|
{
|
|
public:
|
|
CTabLog(HWND owner);
|
|
|
|
virtual void Initialize();
|
|
virtual void Resize(int w, int h);
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnCommand(WPARAM wParam, LPARAM lParam);
|
|
|
|
void AddItem(int level, LPCWSTR time, LPCWSTR message);
|
|
|
|
private:
|
|
bool m_Error;
|
|
bool m_Warning;
|
|
bool m_Notice;
|
|
bool m_Debug;
|
|
};
|
|
|
|
// Measures tab
|
|
class CTabMeasures : public CTab
|
|
{
|
|
public:
|
|
CTabMeasures(HWND owner);
|
|
|
|
virtual void Initialize();
|
|
virtual void Resize(int w, int h);
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnCommand(WPARAM wParam, LPARAM lParam);
|
|
|
|
void UpdateSkinList();
|
|
void UpdateMeasureList(CMeterWindow* meterWindow);
|
|
|
|
private:
|
|
CMeterWindow* m_SkinWindow;
|
|
};
|
|
|
|
// Plugins tab
|
|
class CTabPlugins : public CTab
|
|
{
|
|
public:
|
|
CTabPlugins(HWND owner);
|
|
|
|
virtual void Initialize();
|
|
virtual void Resize(int w, int h);
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
typedef LPCTSTR (*GETPLUGINAUTHOR)();
|
|
typedef UINT (*GETPLUGINVERSION)();
|
|
};
|
|
|
|
// Version tab
|
|
class CTabVersion : public CTab
|
|
{
|
|
public:
|
|
CTabVersion(HWND owner);
|
|
|
|
virtual void Initialize();
|
|
virtual void Resize(int w, int h);
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnNotify(WPARAM wParam, LPARAM lParam);
|
|
INT_PTR OnCommand(WPARAM wParam, LPARAM lParam);
|
|
};
|
|
|
|
CTabLog m_TabLog;
|
|
CTabMeasures m_TabMeasures;
|
|
CTabPlugins m_TabPlugins;
|
|
CTabVersion m_TabVersion;
|
|
};
|
|
|
|
#endif
|