2009-02-10 18:37:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002 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 __METERIMAGE_H__
|
|
|
|
#define __METERIMAGE_H__
|
|
|
|
|
|
|
|
#include "Meter.h"
|
2010-11-27 19:53:23 +00:00
|
|
|
#include "TintedImage.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
class MeterImage : public Meter
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-05-31 14:18:52 +00:00
|
|
|
MeterImage(MeterWindow* meterWindow, const WCHAR* name);
|
|
|
|
virtual ~MeterImage();
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
virtual UINT GetTypeID() { return TypeID<MeterImage>(); }
|
2012-04-09 16:45: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-02-10 18:37:48 +00:00
|
|
|
|
2010-10-17 17:51:14 +00:00
|
|
|
protected:
|
2013-05-31 14:18:52 +00:00
|
|
|
virtual void ReadOptions(ConfigParser& parser, const WCHAR* section);
|
|
|
|
virtual void BindMeasures(ConfigParser& parser, const WCHAR* section);
|
2012-08-03 23:18:12 +00:00
|
|
|
|
2012-08-05 00:29:25 +00:00
|
|
|
virtual bool IsFixedSize(bool overwrite = false) { return overwrite ? true : m_ImageNameResult.empty(); }
|
2011-11-26 02:49:52 +00:00
|
|
|
|
|
|
|
private:
|
2012-08-17 17:20:25 +00:00
|
|
|
enum DRAWMODE
|
|
|
|
{
|
|
|
|
DRAWMODE_NONE = 0,
|
|
|
|
DRAWMODE_TILE,
|
|
|
|
DRAWMODE_KEEPRATIO,
|
|
|
|
DRAWMODE_KEEPRATIOANDCROP
|
|
|
|
};
|
|
|
|
|
2010-12-05 15:34:37 +00:00
|
|
|
void LoadImage(const std::wstring& imageName, bool bLoadAlways);
|
2010-11-11 20:24:59 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
TintedImage m_Image;
|
2012-05-20 17:57:12 +00:00
|
|
|
std::wstring m_ImageName;
|
|
|
|
std::wstring m_ImageNameResult; // Image name as absolute path
|
2009-07-24 08:08:52 +00:00
|
|
|
std::wstring m_Path;
|
2010-11-27 19:53:23 +00:00
|
|
|
|
2011-07-27 14:18:02 +00:00
|
|
|
bool m_NeedsRedraw;
|
2012-08-17 17:20:25 +00:00
|
|
|
DRAWMODE m_DrawMode;
|
2010-12-05 15:34:37 +00:00
|
|
|
|
2010-12-13 08:19:45 +00:00
|
|
|
RECT m_ScaleMargins;
|
2009-02-10 18:37:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|