rainmeter-studio/Library/MeasurePlugin.h

79 lines
2.1 KiB
C
Raw Normal View History

2009-02-10 18:37:48 +00:00
/*
Copyright (C) 2001 Kimmo Pekkola
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2009-02-10 18:37:48 +00:00
*/
#ifndef __MEASUREPLUGIN_H__
#define __MEASUREPLUGIN_H__
#include "Measure.h"
2012-01-08 17:35:29 +00:00
#include "Export.h"
2009-02-10 18:37:48 +00:00
2012-01-08 17:35:29 +00:00
typedef UINT (*INITIALIZE)(HMODULE, LPCTSTR, LPCTSTR, UINT);
2009-02-10 18:37:48 +00:00
typedef VOID (*FINALIZE)(HMODULE, UINT);
2012-01-08 17:35:29 +00:00
typedef UINT (*UPDATE)(UINT);
typedef double (*UPDATE2)(UINT);
typedef LPCTSTR (*GETSTRING)(UINT, UINT);
typedef void (*EXECUTEBANG)(LPCWSTR, UINT);
2009-02-10 18:37:48 +00:00
typedef void (*NEWINITIALIZE)(void*, void*);
2012-01-08 17:35:29 +00:00
typedef void (*NEWRELOAD)(void*, void*, double*);
typedef void (*NEWFINALIZE)(void*);
typedef double (*NEWUPDATE)(void*);
typedef LPCWSTR (*NEWGETSTRING)(void*);
2012-02-01 17:32:03 +00:00
typedef void (*NEWEXECUTEBANG)(void*, LPCWSTR);
2012-01-08 17:35:29 +00:00
2009-02-10 18:37:48 +00:00
class CMeasurePlugin : public CMeasure
{
public:
2011-02-15 16:26:54 +00:00
CMeasurePlugin(CMeterWindow* meterWindow, const WCHAR* name);
2009-02-10 18:37:48 +00:00
virtual ~CMeasurePlugin();
virtual bool Update();
virtual const WCHAR* GetStringValue(AUTOSCALE autoScale, double scale, int decimals, bool percentual);
virtual void Command(const std::wstring& command);
2009-02-10 18:37:48 +00:00
protected:
virtual void ReadConfig(CConfigParser& parser, const WCHAR* section);
2009-02-10 18:37:48 +00:00
private:
2012-01-08 17:35:29 +00:00
bool IsNewApi() { return m_ReloadFunc != NULL; }
2009-02-10 18:37:48 +00:00
HMODULE m_Plugin;
2012-01-08 17:35:29 +00:00
void* m_ReloadFunc;
union
{
struct
{
UINT m_ID;
bool m_Update2;
};
struct
{
void* m_PluginData;
};
};
void* m_UpdateFunc;
void* m_GetStringFunc;
void* m_ExecuteBangFunc;
2009-02-10 18:37:48 +00:00
};
#endif