1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
/*!
\file GuiControlFactory.h
\brief
*/
#ifndef GUI_CONTROL_FACTORY_H
#define GUI_CONTROL_FACTORY_H
#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "GUIControl.h"
class CTextureInfo; // forward
class CAspectRatio;
class CGUIInfoLabel;
class TiXmlNode;
class CGUIAction;
/*!
\ingroup controls
\brief
*/
class CGUIControlFactory
{
public:
CGUIControlFactory(void);
virtual ~CGUIControlFactory(void);
CGUIControl* Create(int parentID, const CRect &rect, TiXmlElement* pControlNode, bool insideContainer = false);
/*! \brief translate from control name to control type
\param type name of the control
\return type of control
*/
static CGUIControl::GUICONTROLTYPES TranslateControlType(const CStdString &type);
/*! \brief translate from control type to control name
\param type type of the control
\return name of control
*/
static CStdString TranslateControlType(CGUIControl::GUICONTROLTYPES type);
static bool GetAspectRatio(const TiXmlNode* pRootNode, const char* strTag, CAspectRatio &aspectRatio);
static bool GetInfoTexture(const TiXmlNode* pRootNode, const char* strTag, CTextureInfo &image, CGUIInfoLabel &info, int parentID);
static bool GetTexture(const TiXmlNode* pRootNode, const char* strTag, CTextureInfo &image);
static bool GetAlignment(const TiXmlNode* pRootNode, const char* strTag, uint32_t& dwAlignment);
static bool GetAlignmentY(const TiXmlNode* pRootNode, const char* strTag, uint32_t& dwAlignment);
static bool GetAnimations(TiXmlNode *control, const CRect &rect, int context, std::vector<CAnimation> &animation);
/*! \brief Create an info label from an XML element
Processes XML elements of the form
<xmltag fallback="fallback_value">info_value</xmltag>
where info_value may use $INFO[], $LOCALIZE[], $NUMBER[] etc.
If either the fallback_value or info_value are natural numbers they are interpreted
as ids for lookup in strings.xml. The fallback attribute is optional.
\param element XML element to process
\param infoLabel returned infoLabel
\return true if a valid info label was read, false otherwise
*/
static bool GetInfoLabelFromElement(const TiXmlElement *element, CGUIInfoLabel &infoLabel, int parentID);
static void GetInfoLabel(const TiXmlNode *pControlNode, const CStdString &labelTag, CGUIInfoLabel &infoLabel, int parentID);
static void GetInfoLabels(const TiXmlNode *pControlNode, const CStdString &labelTag, std::vector<CGUIInfoLabel> &infoLabels, int parentID);
static bool GetColor(const TiXmlNode* pRootNode, const char* strTag, color_t &value);
static bool GetInfoColor(const TiXmlNode* pRootNode, const char* strTag, CGUIInfoColor &value, int parentID);
static CStdString FilterLabel(const CStdString &label);
static bool GetConditionalVisibility(const TiXmlNode* control, std::string &condition);
static bool GetActions(const TiXmlNode* pRootNode, const char* strTag, CGUIAction& actions);
static void GetRectFromString(const CStdString &string, CRect &rect);
static bool GetHitRect(const TiXmlNode* pRootNode, CRect &rect);
static bool GetScroller(const TiXmlNode *pControlNode, const CStdString &scrollerTag, CScroller& scroller);
private:
static CStdString GetType(const TiXmlElement *pControlNode);
static bool GetConditionalVisibility(const TiXmlNode* control, std::string &condition, std::string &allowHiddenFocus);
bool GetString(const TiXmlNode* pRootNode, const char* strTag, CStdString& strString);
static bool GetFloatRange(const TiXmlNode* pRootNode, const char* strTag, float& iMinValue, float& iMaxValue, float& iIntervalValue);
static bool GetIntRange(const TiXmlNode* pRootNode, const char* strTag, int& iMinValue, int& iMaxValue, int& iIntervalValue);
/*! \brief Parse a position string
Handles strings of the form
### number of pixels
###r number of pixels measured from the right
###% percentage of parent size
\param pos the string to parse.
\param parentSize the size of the parent.
\sa GetPosition
*/
static float ParsePosition(const char* pos, const float parentSize);
/*! \brief Get the value of a position tag from XML
Handles both absolute and relative values.
\param node the <control> XML node.
\param tag the XML node to parse.
\param parentSize the size of the parent, for relative positioning.
\param value [out] the returned value.
\sa ParsePosition, GetDimension, GetDimensions.
*/
static bool GetPosition(const TiXmlNode *node, const char* tag, const float parentSize, float& value);
/*! \brief grab a dimension out of the XML
Supports plain reading of a number (or constant) and, in addition allows "auto" as the value
for the dimension, whereby value is set to the max attribute (if it exists) and min is set the min
attribute (if it exists) or 1. Auto values are thus detected by min != 0.
\param node the <control> XML node to read
\param strTag tag within node to read
\param parentSize the size of the parent for relative sizing.
\param value value to set, or maximum value if using auto
\param min minimum value - set != 0 if auto is used.
\return true if we found and read the tag.
\sa GetPosition, GetDimensions, ParsePosition.
*/
static bool GetDimension(const TiXmlNode *node, const char* strTag, const float parentSize, float &value, float &min);
/*! \brief Retrieve the dimensions for a control.
Handles positioning based on at least 2 of left/right/center/width.
\param node the <control> node describing the control.
\param leftTag the tag that holds the left field.
\param rightTag the tag that holds the right field.
\param centerLeftTag the tag that holds the center left field.
\param centerRightTag the tag that holds the center right field.
\param widthTag the tag holding the width.
\param parentSize the size of the parent, for relative sizing.
\param pos [out] the discovered position.
\param width [out] the discovered width.
\param min_width [out] the discovered minimum width.
\return true if we can successfully derive the position and size, false otherwise.
\sa GetDimension, GetPosition, ParsePosition.
*/
static bool GetDimensions(const TiXmlNode *node, const char *leftTag, const char *rightTag, const char *centerLeftTag,
const char *centerRightTag, const char *widthTag, const float parentSize, float &left,
float &width, float &min_width);
};
#endif
|