Changed !SetOption to work with X, Y, and Hidden

This commit is contained in:
Birunthan Mohanathas
2012-07-17 21:19:03 +03:00
parent 6a1a880801
commit 2f543e5dcb
2 changed files with 67 additions and 60 deletions

View File

@ -58,8 +58,8 @@ public:
void SetW(int w) { m_W = w; }
void SetH(int h) { m_H = h; }
void SetX(int x) { m_X = x; m_RelativeX = POSITION_ABSOLUTE; }
void SetY(int y) { m_Y = y; m_RelativeY = POSITION_ABSOLUTE; }
void SetX(int x);
void SetY(int y);
const CMouse& GetMouse() { return m_Mouse; }
bool HasMouseAction() { return m_HasMouseAction; }
@ -138,10 +138,6 @@ protected:
Gdiplus::Matrix* m_Transformation;
std::wstring m_StyleX;
std::wstring m_StyleY;
std::wstring m_StyleHidden;
std::wstring m_ToolTipText;
std::wstring m_ToolTipTitle;
std::wstring m_ToolTipIcon;