diff options
author | louis <louis.braun@gmx.de> | 2016-01-26 18:32:38 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2016-01-26 18:32:38 +0100 |
commit | 809fbda03c5014ba9cd361f5113d1d717cd41ea6 (patch) | |
tree | 264bbc5640375f1bcb165fc7f4a3e595adcc26ca /libtemplate/templatefunction.h | |
parent | 196dd7eb9965a405bb16b51dc870fbbb31aeef87 (diff) | |
download | vdr-plugin-skindesigner-809fbda03c5014ba9cd361f5113d1d717cd41ea6.tar.gz vdr-plugin-skindesigner-809fbda03c5014ba9cd361f5113d1d717cd41ea6.tar.bz2 |
Version 0.8.0 beta
Diffstat (limited to 'libtemplate/templatefunction.h')
-rw-r--r-- | libtemplate/templatefunction.h | 270 |
1 files changed, 0 insertions, 270 deletions
diff --git a/libtemplate/templatefunction.h b/libtemplate/templatefunction.h deleted file mode 100644 index d800c5f..0000000 --- a/libtemplate/templatefunction.h +++ /dev/null @@ -1,270 +0,0 @@ -#ifndef __TEMPLATEFUNCTION_H -#define __TEMPLATEFUNCTION_H - -#include <iostream> -#include <stdio.h> -#include <stdlib.h> -#include <stdint.h> -#include <string> -#include <vector> -#include <map> -#include <set> -#include <sstream> - -#include "globals.h" -#include "parameter.h" - -using namespace std; - -// --- cTemplateFunction ------------------------------------------------------------- - -enum eFuncType { - ftOsd, - ftView, - ftViewElement, - ftViewList, - ftPixmapContainer, - ftPixmap, - ftPixmapScroll, - ftLoop, - ftFill, - ftDrawText, - ftDrawTextBox, - ftDrawTextVertical, - ftDrawImage, - ftDrawRectangle, - ftDrawEllipse, - ftDrawSlope, - ftNone -}; - -enum eParamType { - ptCond, - ptName, - ptMode, - ptDrawDebugGrid, - ptDebugGridX, - ptDebugGridY, - ptX, - ptY, - ptWidth, - ptHeight, - ptMenuItemWidth, - ptDetached, - ptFadeTime, - ptShiftTime, - ptShiftType, - ptShiftMode, - ptStartX, - ptStartY, - ptDelay, - ptImageType, - ptPath, - ptColor, - ptFont, - ptFontSize, - ptText, - ptLayer, - ptTransparency, - ptBackground, - ptQuadrant, - ptType, - ptAlign, - ptValign, - ptScrollMode, - ptScrollSpeed, - ptOrientation, - ptNumElements, - ptScrollElement, - ptScrollHeight, - ptFloat, - ptFloatWidth, - ptFloatHeight, - ptMaxLines, - ptColumnWidth, - ptRowHeight, - ptOverflow, - ptScaleTvX, - ptScaleTvY, - ptScaleTvWidth, - ptScaleTvHeight, - ptHideRoot, - ptCache, - ptDeterminateFont, - ptDirection, - ptAnimType, - ptAnimFreq, - ptNone -}; - -enum eImageType { - itChannelLogo, - itSepLogo, - itSkinPart, - itMenuIcon, - itIcon, - itImage -}; - -enum eShiftType { - stNone, - stLeft, - stRight, - stTop, - stBottom -}; - -enum eShiftMode { - smLinear, - smSlowedDown -}; - -enum eAnimType { - atNone, - atBlink, - atAnimated -}; - -enum eFloatType { - flNone, - flTopLeft, - flTopRight -}; - -enum eOverflowType { - otNone, - otWrap, - otCut -}; - -enum eDirection { - diNone, - diBottomUp, - diTopDown -}; - -class cTemplateFunction { -protected: - eFuncType type; - bool debug; - int containerX; //X of parent container - int containerY; //Y of parent container - int containerWidth; //width of parent container - int containerHeight; //height of parent container - int columnWidth; //if func is executed in a loop, width of loop column - int rowHeight; //if func is executed in a loop, height of loop row - cGlobals *globals; //globals - map< eParamType, string > nativeParameters; //native parameters directly from xml - map< eParamType, int > numericParameters; //sucessfully parsed numeric parameters - map< eParamType, string > numericDynamicParameters; //numeric parameters with dynamic tokens - bool parsedCompletely; - bool updated; - map< eParamType, tColor > colorParameters; - cConditionalParameter *condParam; - //drawimage parameters - string imgPath; - //drawtext parameters - string fontName; - vector<cTextToken> textTokens; - string parsedText; - int parsedTextWidth; - string cuttedText; - bool alreadyCutted; - //drawtextbox parameters - int textboxHeight; - //dynamic tokens - map < string, string > *stringTokens; - map < string, int > *intTokens; - //private functions - bool SetCondition(string cond); - bool SetNumericParameter(eParamType type, string value); - bool SetAlign(eParamType type, string value); - bool SetFont(eParamType type, string value); - bool SetImageType(eParamType type, string value); - bool SetColor(eParamType type, string value); - bool SetTextTokens(string value); - void ParseTextToken(string &value, size_t start, size_t end); - void ParseConditionalTextToken(string &value, size_t start, size_t end); - void ParsePrintfTextToken(string &value, size_t start, size_t end); - bool SetScrollMode(string value); - bool SetScrollSpeed(string value); - bool SetOrientation(string value); - bool SetFloating(string value); - bool SetOverflow(string value); - bool SetHideRoot(string value); - bool SetDetached(string value); - bool SetBackground(string value); - bool SetDirection(string value); - bool SetAnimType(string value); - bool SetShiftType(string value); - bool SetShiftMode(string value); - void SetDebugGrid(string value); - void ParseStringParameters(void); - void ParseNumericalParameters(void); - void CalculateAlign(int elementWidth, int elementHeight); - int CalculateTextBoxHeight(void); - int ReplaceIntToken(string intTok); -public: - cTemplateFunction(eFuncType type); - virtual ~cTemplateFunction(void); - //Setter Functions - void SetParameters(vector<pair<string, string> > params); - void SetParameter(eParamType type, string value); - void SetContainer(int x, int y, int w, int h); - void SetLoopContainer(int columnWidth, int rowHeight); - void SetWidthManually(string width); - void SetHeightManually(string height); - void SetXManually(int newX); - void SetYManually(int newY); - void SetMaxTextWidth(int maxWidth); - void SetTextboxHeight(int boxHeight); - void SetGlobals(cGlobals *globals) { this->globals = globals; }; - void SetTranslatedText(string translation); - //PreCache Parameters - bool CalculateParameters(void); - //Complete Parameters - bool ReCalculateParameters(void); - void CompleteParameters(void); - //Set and Unset Dynamic Tokens from view - void SetStringTokens(map < string, string > *tok) { stringTokens = tok; }; - void SetIntTokens(map < string, int > *tok) { intTokens = tok; }; - void UnsetIntTokens(void) { intTokens = NULL; }; - void UnsetStringTokens(void) { stringTokens = NULL; }; - //Clear dynamically parameters - void ClearDynamicParameters(void); - //Parse parameters with dynamically set Tokens - bool ParseParameters(void); - //Getter Functions - eFuncType GetType(void) { return type; }; - bool DoDebug(void) { return debug; }; - string GetParameter(eParamType type); - int GetNumericParameter(eParamType type); - string GetText(bool cut = true); - string GetImagePath(void) { return imgPath; }; - tColor GetColorParameter(eParamType type); - string GetFontName(void) { return fontName; }; - string GetFuncName(void); - string GetParamName(eParamType pt); - //Dynamic width or height parameter - int GetWidth(bool cutted = true); - int GetHeight(map < string, vector< map< string, string > > > *loopTokens = NULL); - 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); - void GetNeededPosY(multimap<eParamType,string> *posYs); - void SetWidth(eParamType type, string label, int funcWidth); - void SetHeight(eParamType type, string label, int funcHeight); - void SetX(eParamType type, string label, int funcX); - void SetY(eParamType type, string label, int funcY); - //Status Functions - bool ParsedCompletely(void) { return parsedCompletely; }; - bool DoExecute(void); - bool Updated(void) { return updated; }; - bool IsAnimated(void); - //Debug - void Debug(void); -}; - -#endif //__TEMPLATEFUNCTION_H
\ No newline at end of file |