diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-01-24 05:38:13 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-01-24 05:38:13 +0000 |
commit | de4ef8a65afd0c38f8bbdfcb3b90ff82a98d1483 (patch) | |
tree | feefeaeb3734eaebdb5872609606edc84d6f8fa3 /Plugins/skins/m_skins_cpp.h | |
parent | be94a568ef65120465b49f5c6db90cd4ec3c3eb2 (diff) |
skins: fix for floats and added valign (not used yet)
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@133 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/skins/m_skins_cpp.h')
-rw-r--r-- | Plugins/skins/m_skins_cpp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Plugins/skins/m_skins_cpp.h b/Plugins/skins/m_skins_cpp.h index 1434dc1..4f3be3b 100644 --- a/Plugins/skins/m_skins_cpp.h +++ b/Plugins/skins/m_skins_cpp.h @@ -38,6 +38,8 @@ public: RECT getInsideRect() { return mski.GetInsideRect(field); }
RECT getBorders() { return mski.GetBorders(field); }
BOOL isVisible() { return mski.IsVisible(field); }
+ int getHorizontalAlign() { return mski.GetHorizontalAlign(field); } // one of SKN_HALIGN_*
+ int getVerticalAlign() { return mski.GetVerticalAlign(field); } // one of SKN_VALIGN_*
const TCHAR * getToolTip() {
if (tooltip != NULL)
@@ -76,7 +78,6 @@ public: HFONT getFont() { return mski.GetFont(field); }
COLORREF getFontColor() { return mski.GetFontColor(field); }
- int getHorizontalAlign() { return mski.GetHorizontalAlign(field); } // one of SKN_HALIGN_*
private:
TCHAR *text;
|