forked from rainmeter/rainmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeterHistogram.h
73 lines (54 loc) · 2.02 KB
/
MeterHistogram.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
63
64
65
66
67
68
69
70
71
72
73
/* Copyright (C) 2001 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 __METERHISTOGRAM_H__
#define __METERHISTOGRAM_H__
#include "Meter.h"
#include "GeneralImage.h"
class MeterHistogram : public Meter
{
public:
MeterHistogram(Skin* skin, const WCHAR* name);
virtual ~MeterHistogram();
MeterHistogram(const MeterHistogram& other) = delete;
MeterHistogram& operator=(MeterHistogram other) = delete;
virtual UINT GetTypeID() { return TypeID<MeterHistogram>(); }
virtual void Initialize();
virtual bool Update();
virtual bool Draw(Gfx::Canvas& canvas);
protected:
virtual void ReadOptions(ConfigParser& parser, const WCHAR* section);
virtual void BindMeasures(ConfigParser& parser, const WCHAR* section);
virtual bool IsFixedSize(bool overwrite = false) { return m_PrimaryImageName.empty(); }
private:
void DisposeBuffer();
void CreateBuffer();
D2D1_COLOR_F m_PrimaryColor;
D2D1_COLOR_F m_SecondaryColor;
D2D1_COLOR_F m_OverlapColor;
int m_MeterPos; // New value placement position
bool m_Autoscale;
bool m_Flip;
std::wstring m_PrimaryImageName;
std::wstring m_SecondaryImageName;
std::wstring m_OverlapImageName;
GeneralImage m_PrimaryImage;
GeneralImage m_SecondaryImage;
GeneralImage m_OverlapImage;
double* m_PrimaryValues;
double* m_SecondaryValues;
double m_MaxPrimaryValue;
double m_MinPrimaryValue;
double m_MaxSecondaryValue;
double m_MinSecondaryValue;
bool m_SizeChanged;
bool m_GraphStartLeft;
bool m_GraphHorizontalOrientation;
static const WCHAR* c_PrimaryOptionArray[GeneralImage::OptionCount];
static const WCHAR* c_SecondaryOptionArray[GeneralImage::OptionCount];
static const WCHAR* c_BothOptionArray[GeneralImage::OptionCount];
};
#endif