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
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-02-10 18:37:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __METER_H__
|
|
|
|
#define __METER_H__
|
|
|
|
|
|
|
|
#include <windows.h>
|
2013-12-24 11:20:19 +00:00
|
|
|
#include <ole2.h> // For Gdiplus.h.
|
2009-02-10 18:37:48 +00:00
|
|
|
#include <gdiplus.h>
|
2011-02-07 08:02:12 +00:00
|
|
|
#include <vector>
|
2011-02-15 16:26:54 +00:00
|
|
|
#include <string>
|
2009-02-10 18:37:48 +00:00
|
|
|
#include "Litestep.h"
|
2011-11-12 15:36:05 +00:00
|
|
|
#include "ConfigParser.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
#include "MeterWindow.h"
|
2012-08-09 13:50:58 +00:00
|
|
|
#include "Section.h"
|
2012-07-17 07:57:28 +00:00
|
|
|
#include "Measure.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
class Measure;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
class __declspec(novtable) Meter : public Section
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-05-31 14:18:52 +00:00
|
|
|
virtual ~Meter();
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2014-01-05 10:07:22 +00:00
|
|
|
Meter(const Meter& other) = delete;
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
void ReadOptions(ConfigParser& parser) { ReadOptions(parser, GetName()); parser.ClearStyleTemplate(); }
|
2011-02-15 16:26:54 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
virtual void Initialize();
|
|
|
|
virtual bool Update();
|
2013-03-25 15:42:18 +00:00
|
|
|
virtual bool Draw(Gfx::Canvas& canvas);
|
2009-07-21 12:26:50 +00:00
|
|
|
virtual bool HasActiveTransition() { return false; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
virtual int GetW() { return m_Hidden ? 0 : m_W; }
|
2011-02-15 13:22:19 +00:00
|
|
|
virtual int GetH() { return m_Hidden ? 0 : m_H; }
|
2009-02-10 18:37:48 +00:00
|
|
|
virtual int GetX(bool abs = false);
|
|
|
|
virtual int GetY(bool abs = false);
|
2010-07-17 00:06:24 +00:00
|
|
|
RECT GetMeterRect();
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2013-07-20 16:07:51 +00:00
|
|
|
Gdiplus::Rect GetMeterRectPadding();
|
|
|
|
int GetWidthPadding() { return m_Padding.X + m_Padding.Width; }
|
|
|
|
int GetHeightPadding() { return m_Padding.Y + m_Padding.Height; }
|
|
|
|
|
2011-02-15 13:22:19 +00:00
|
|
|
void SetW(int w) { m_W = w; }
|
|
|
|
void SetH(int h) { m_H = h; }
|
2012-07-17 18:19:03 +00:00
|
|
|
void SetX(int x);
|
|
|
|
void SetY(int y);
|
2010-10-19 22:03:32 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
void SetRelativeMeter(Meter* meter) { m_RelativeMeter = meter; }
|
2012-07-18 10:27:30 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
const Mouse& GetMouse() { return m_Mouse; }
|
2012-07-13 09:33:09 +00:00
|
|
|
bool HasMouseAction() { return m_HasMouseAction; }
|
2010-09-10 17:29:30 +00:00
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
const std::wstring& GetToolTipText() { return m_ToolTipText; }
|
2013-05-31 14:28:39 +00:00
|
|
|
bool HasToolTip() { return m_ToolTipHandle != nullptr; }
|
2010-07-17 00:06:24 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
void CreateToolTip(MeterWindow* meterWindow);
|
2010-07-17 00:06:24 +00:00
|
|
|
void UpdateToolTip();
|
|
|
|
|
2013-02-06 10:12:16 +00:00
|
|
|
void Hide();
|
|
|
|
void Show();
|
2010-10-19 22:03:32 +00:00
|
|
|
bool IsHidden() { return m_Hidden; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-11-04 12:48:03 +00:00
|
|
|
const Gdiplus::Matrix* GetTransformationMatrix() { return m_Transformation; }
|
2009-07-27 11:48:57 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
virtual bool HitTest(int x, int y);
|
|
|
|
|
|
|
|
void SetMouseOver(bool over) { m_MouseOver = over; }
|
|
|
|
bool IsMouseOver() { return m_MouseOver; }
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
static Meter* Create(const WCHAR* meter, MeterWindow* meterWindow, const WCHAR* name);
|
2009-09-25 22:20:07 +00:00
|
|
|
|
2010-12-08 09:04:36 +00:00
|
|
|
static void DrawBevel(Gdiplus::Graphics& graphics, const Gdiplus::Rect& rect, const Gdiplus::Pen& light, const Gdiplus::Pen& dark);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
enum METER_ALIGNMENT
|
|
|
|
{
|
2012-05-16 18:02:31 +00:00
|
|
|
ALIGN_LEFT, // Same as LeftTop
|
|
|
|
ALIGN_RIGHT, // Same as RightTop
|
|
|
|
ALIGN_CENTER, // Same as CenterTop
|
|
|
|
ALIGN_LEFTBOTTOM,
|
|
|
|
ALIGN_RIGHTBOTTOM,
|
|
|
|
ALIGN_CENTERBOTTOM,
|
|
|
|
ALIGN_LEFTCENTER,
|
|
|
|
ALIGN_RIGHTCENTER,
|
|
|
|
ALIGN_CENTERCENTER
|
2009-02-10 18:37:48 +00:00
|
|
|
};
|
2012-05-16 18:02:31 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
enum METER_POSITION
|
|
|
|
{
|
|
|
|
POSITION_ABSOLUTE,
|
|
|
|
POSITION_RELATIVE_TL,
|
|
|
|
POSITION_RELATIVE_BR
|
|
|
|
};
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
Meter(MeterWindow* meterWindow, const WCHAR* name);
|
2012-08-09 13:50:58 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
virtual void ReadOptions(ConfigParser& parser, const WCHAR* section);
|
|
|
|
virtual void BindMeasures(ConfigParser& parser, const WCHAR* section);
|
2011-11-26 02:49:52 +00:00
|
|
|
|
2012-08-04 23:15:56 +00:00
|
|
|
virtual bool IsFixedSize(bool overwrite = false) { return true; }
|
2012-08-03 23:18:12 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
bool BindPrimaryMeasure(ConfigParser& parser, const WCHAR* section, bool optional);
|
|
|
|
void BindSecondaryMeasures(ConfigParser& parser, const WCHAR* section);
|
2010-11-19 07:33:58 +00:00
|
|
|
|
2012-07-17 07:57:28 +00:00
|
|
|
bool ReplaceMeasures(std::wstring& str, AUTOSCALE autoScale = AUTOSCALE_ON, double scale = 1.0, int decimals = 0, bool percentual = false);
|
2010-11-19 07:33:58 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
std::vector<Measure*> m_Measures;
|
2012-05-20 17:57:12 +00:00
|
|
|
int m_X;
|
|
|
|
int m_Y;
|
|
|
|
int m_W;
|
|
|
|
int m_H;
|
|
|
|
bool m_Hidden;
|
2011-11-01 04:56:46 +00:00
|
|
|
bool m_WDefined;
|
|
|
|
bool m_HDefined;
|
2013-07-20 16:07:51 +00:00
|
|
|
Meter* m_RelativeMeter;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2012-05-20 17:57:12 +00:00
|
|
|
Gdiplus::Matrix* m_Transformation;
|
2011-11-04 12:48:03 +00:00
|
|
|
|
2010-07-17 00:06:24 +00:00
|
|
|
std::wstring m_ToolTipText;
|
|
|
|
std::wstring m_ToolTipTitle;
|
|
|
|
std::wstring m_ToolTipIcon;
|
2010-07-20 21:20:14 +00:00
|
|
|
unsigned int m_ToolTipWidth;
|
2010-07-17 00:06:24 +00:00
|
|
|
bool m_ToolTipType;
|
2010-10-10 16:58:55 +00:00
|
|
|
bool m_ToolTipHidden;
|
2010-07-17 00:06:24 +00:00
|
|
|
|
|
|
|
HWND m_ToolTipHandle;
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
Mouse m_Mouse;
|
2009-09-25 22:20:07 +00:00
|
|
|
bool m_HasMouseAction;
|
2009-02-10 18:37:48 +00:00
|
|
|
bool m_MouseOver;
|
2012-07-13 09:33:09 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
METER_POSITION m_RelativeX;
|
|
|
|
METER_POSITION m_RelativeY;
|
|
|
|
|
|
|
|
BEVELTYPE m_SolidBevel;
|
|
|
|
Gdiplus::Color m_SolidColor;
|
|
|
|
Gdiplus::Color m_SolidColor2;
|
|
|
|
Gdiplus::REAL m_SolidAngle;
|
2013-07-20 16:07:51 +00:00
|
|
|
Gdiplus::Rect m_Padding;
|
2012-05-20 17:57:12 +00:00
|
|
|
bool m_AntiAlias;
|
2009-08-27 17:05:10 +00:00
|
|
|
bool m_Initialized;
|
2009-02-10 18:37:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|