diff options
Diffstat (limited to 'libtemplate/templatefunction.h')
-rw-r--r-- | libtemplate/templatefunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libtemplate/templatefunction.h b/libtemplate/templatefunction.h index f7af25c..e63850e 100644 --- a/libtemplate/templatefunction.h +++ b/libtemplate/templatefunction.h @@ -29,6 +29,7 @@ enum eFuncType { ftFill, ftDrawText, ftDrawTextBox, + ftDrawTextVertical, ftDrawImage, ftDrawRectangle, ftDrawEllipse, @@ -198,6 +199,8 @@ public: //Dynamic width or height parameter int GetWidth(bool cutted = true); int GetHeight(void); + int GetContainerWidth(void) { return containerWidth; }; + int GetContainerHeight(void) { return containerHeight; }; void GetNeededWidths(multimap<eParamType,string> *widths); void GetNeededHeights(multimap<eParamType,string> *heights); void GetNeededPosX(multimap<eParamType,string> *posXs); |