- Added skin related variables.

#CURRENTCONFIGX#
#CURRENTCONFIGY#
#CURRENTCONFIGWIDTH#
#CURRENTCONFIGHEIGHT#

- Code cleanup.
This commit is contained in:
spx
2011-01-16 15:51:23 +00:00
parent 9da749acf4
commit f0e2084c42
5 changed files with 53 additions and 8 deletions

View File

@ -196,6 +196,11 @@ public:
bool GetXFromRight() { return m_WindowXFromRight; }
bool GetYFromBottom() { return m_WindowYFromBottom; }
int GetW() { return m_WindowW; }
int GetH() { return m_WindowH; }
int GetX() { return m_ScreenX; }
int GetY() { return m_ScreenY; }
bool GetXScreenDefined() { return m_WindowXScreenDefined; }
bool GetYScreenDefined() { return m_WindowYScreenDefined; }
int GetXScreen() { return m_WindowXScreen; }
@ -292,6 +297,8 @@ private:
bool DoMoveAction(int x, int y, MOUSE mouse);
bool ResizeWindow(bool reset);
void IgnoreAeroPeek();
void SetWindowPositionVariables(int x, int y);
void SetWindowSizeVariables(int w, int h);
CConfigParser m_Parser;