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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
/*
* $Id: object.c,v 1.3 2004/12/28 01:24:35 lordjaxom Exp $
*/
#include "xml/object.h"
#include "render.h"
#include "font.h"
static const std::string ObjectNames[] =
{ "image", "text", "marquee", "blink", "rectangle", "ellipse", "slope", "progress",
"scrolltext", "scrollbar", "block", "list", "item" };
cxObject::cxObject(cxDisplay *parent):
mType((eType)__COUNT_OBJECT__),
mPos1(0, 0),
mPos2(-1, -1),
mAlpha(255),
mColors(0),
mArc(0),
mAlign(taDefault),
mCondition(NULL),
mFontFace("Osd"),
mFontSize(0),
mDelay(150),
mIndex(0),
mObjects(NULL),
mDisplay(parent),
mSkin(parent->Skin())
{
}
cxObject::cxObject(const cxObject &Src):
mType(Src.mType),
mPos1(Src.mPos1),
mPos2(Src.mPos2),
mAlpha(Src.mAlpha),
mColors(Src.mColors),
mArc(Src.mArc),
mFg(Src.mFg),
mBg(Src.mBg),
mMark(Src.mMark),
mActive(Src.mActive),
mKeep(Src.mKeep),
mPath(Src.mPath),
mText(Src.mText),
mAlign(Src.mAlign),
mCondition(NULL),
mCurrent(Src.mCurrent),
mTotal(Src.mTotal),
mFontFace(Src.mFontFace),
mFontSize(Src.mFontSize),
mDelay(0),
mObjects(NULL),
mDisplay(Src.mDisplay),
mSkin(Src.mSkin)
{
if (Src.mCondition)
mCondition = new cxFunction(*Src.mCondition);
if (Src.mObjects)
mObjects = new cxObjects(*Src.mObjects);
}
cxObject::~cxObject()
{
delete mCondition;
delete mObjects;
}
bool cxObject::ParseType(const std::string &Text)
{
for (int i = 0; i < (int)__COUNT_OBJECT__; ++i) {
if (ObjectNames[i] == Text) {
mType = (eType)i;
return true;
}
}
return false;
}
bool cxObject::ParseCondition(const std::string &Text)
{
cxFunction *result = new cxFunction;
if (result->Parse(Text)) {
delete mCondition;
mCondition = result;
return true;
}
return false;
}
bool cxObject::ParseAlignment(const std::string &Text)
{
if (Text == "center") mAlign = (eTextAlignment)(taTop | taCenter);
else if (Text == "right") mAlign = (eTextAlignment)(taTop | taRight);
else if (Text == "left") mAlign = (eTextAlignment)(taTop | taLeft);
else
return false;
return true;
}
bool cxObject::ParseFontFace(const std::string &Text)
{
int size = 0, pos;
std::string face = Text;
if ((pos = face.find(':')) != -1) {
size = atoi(face.substr(pos + 1).c_str());
face.erase(pos);
}
mFontFace = face;
mFontSize = size;
return true;
}
const std::string &cxObject::TypeName(void) const
{
return ObjectNames[mType];
}
const cFont *cxObject::Font(void) const
{
const cFont *font;
if ((font = cText2SkinFont::Load(SkinPath() + "/fonts", mFontFace, mFontSize)) != NULL)
return font;
if ((font = cText2SkinFont::Load(SkinPath() + "/" + mSkin->Name(), mFontFace, mFontSize)) != NULL)
return font;
return cFont::GetFont(fontOsd);
}
txPoint cxObject::Pos(void) const
{
return txPoint(mSkin->BaseOffset().x + (mPos1.x < 0 ? Skin()->BaseSize().w + mPos1.x : mPos1.x),
mSkin->BaseOffset().y + (mPos1.y < 0 ? Skin()->BaseSize().h + mPos1.y : mPos1.y));
}
txSize cxObject::Size(void) const
{
txPoint p1(mSkin->BaseOffset().x + (mPos1.x < 0 ? Skin()->BaseSize().w + mPos1.x : mPos1.x),
mSkin->BaseOffset().y + (mPos1.y < 0 ? Skin()->BaseSize().h + mPos1.y : mPos1.y));
txPoint p2(mSkin->BaseOffset().x + (mPos2.x < 0 ? Skin()->BaseSize().w + mPos2.x : mPos2.x),
mSkin->BaseOffset().y + (mPos2.y < 0 ? Skin()->BaseSize().h + mPos2.y : mPos2.y));
return txSize(p2.x - p1.x + 1, p2.y - p1.y + 1);
}
const tColor *cxObject::Fg(void) const
{
static tColor Fg;
return cText2SkinRender::ItemColor(mFg, Fg) ? &Fg : NULL;
}
const tColor *cxObject::Bg(void) const
{
static tColor Bg;
return cText2SkinRender::ItemColor(mBg, Bg) ? &Bg : NULL;
}
const tColor *cxObject::Mark(void) const
{
static tColor Mark;
return cText2SkinRender::ItemColor(mMark, Mark) ? &Mark : NULL;
}
const tColor *cxObject::Active(void) const
{
static tColor Active;
return cText2SkinRender::ItemColor(mActive, Active) ? &Active : NULL;
}
const tColor *cxObject::Keep(void) const
{
static tColor Keep;
return cText2SkinRender::ItemColor(mKeep, Keep) ? &Keep : NULL;
}
cxObjects::cxObjects(void)
{
}
cxObjects::~cxObjects()
{
for (uint i = 0; i < size(); ++i)
delete operator[](i);
}
|