24
24
#include " UITabButtonMP.h"
25
25
#include " xrUICore/Lines/UILines.h"
26
26
27
- CUIXmlInit::CUIXmlInit () : baseClass () {}
27
+ CUIXmlInit::CUIXmlInit () : CUIXmlInitBase () {}
28
28
CUIXmlInit::~CUIXmlInit () {}
29
29
30
- Frect CUIXmlInit::GetFRect (CUIXml& xml_doc, LPCSTR path, int index)
31
- {
32
- return baseClass::GetFRect (xml_doc, path, index);
33
- }
34
-
35
- bool CUIXmlInit::InitWindow (CUIXml& xml_doc, LPCSTR path, int index, CUIWindow* pWnd)
36
- {
37
- return baseClass::InitWindow (xml_doc, path, index, pWnd);
38
- }
39
-
40
- // ////////////////////////////////////////////////////////////////////////
41
-
42
- bool CUIXmlInit::InitFrameWindow (CUIXml& xml_doc, LPCSTR path, int index, CUIFrameWindow* pWnd)
43
- {
44
- return baseClass::InitFrameWindow (xml_doc, path, index, pWnd);
45
- }
46
-
47
- bool CUIXmlInit::InitOptionsItem (CUIXml& xml_doc, LPCSTR path, int index, CUIOptionsItem* pWnd)
48
- {
49
- return baseClass::InitOptionsItem (xml_doc, path, index, pWnd);
50
- }
51
-
52
- bool CUIXmlInit::InitStatic (CUIXml& xml_doc, LPCSTR path, int index, CUIStatic* pWnd)
53
- {
54
- return baseClass::InitStatic (xml_doc, path, index, pWnd);
55
- }
56
-
57
- bool CUIXmlInit::InitTextWnd (CUIXml& xml_doc, LPCSTR path, int index, CUITextWnd* pWnd)
58
- {
59
- return baseClass::InitTextWnd (xml_doc, path, index, pWnd);
60
- }
61
-
62
- bool CUIXmlInit::InitCheck (CUIXml& xml_doc, LPCSTR path, int index, CUICheckButton* pWnd)
63
- {
64
- return baseClass::InitCheck (xml_doc, path, index, pWnd);
65
- }
66
-
67
- bool CUIXmlInit::InitSpin (CUIXml& xml_doc, LPCSTR path, int index, CUICustomSpin* pWnd)
68
- {
69
- return baseClass::InitSpin (xml_doc, path, index, pWnd);
70
- }
71
-
72
- bool CUIXmlInit::InitText (CUIXml& xml_doc, LPCSTR path, int index, CUIStatic* pWnd)
73
- {
74
- return baseClass::InitText (xml_doc, path, index, pWnd);
75
- }
76
-
77
- bool CUIXmlInit::InitText (CUIXml& xml_doc, LPCSTR path, int index, CUILines* pLines)
78
- {
79
- return baseClass::InitText (xml_doc, path, index, pLines);
80
- }
81
-
82
- bool CUIXmlInit::Init3tButton (CUIXml& xml_doc, LPCSTR path, int index, CUI3tButton* pWnd)
83
- {
84
- return baseClass::Init3tButton (xml_doc, path, index, pWnd);
85
- }
86
-
87
30
bool CUIXmlInit::InitTabButtonMP (CUIXml& xml_doc, LPCSTR path, int index, CUITabButtonMP* pWnd)
88
31
{
89
32
Init3tButton (xml_doc, path, index, pWnd);
@@ -111,11 +54,6 @@ bool CUIXmlInit::InitTabButtonMP(CUIXml& xml_doc, LPCSTR path, int index, CUITab
111
54
return true ;
112
55
}
113
56
114
- bool CUIXmlInit::InitSound (CUIXml& xml_doc, LPCSTR path, int index, CUI3tButton* pWnd)
115
- {
116
- return baseClass::InitSound (xml_doc, path, index, pWnd);
117
- }
118
-
119
57
bool CUIXmlInit::InitDragDropListEx (CUIXml& xml_doc, LPCSTR path, int index, CUIDragDropListEx* pWnd)
120
58
{
121
59
R_ASSERT4 (xml_doc.NavigateToNode (path, index), " XML node not found" , path, xml_doc.m_xml_file_name );
@@ -176,60 +114,6 @@ bool CUIXmlInit::InitDragDropListEx(CUIXml& xml_doc, LPCSTR path, int index, CUI
176
114
return true ;
177
115
}
178
116
179
- bool CUIXmlInit::InitProgressBar (CUIXml& xml_doc, LPCSTR path, int index, CUIProgressBar* pWnd)
180
- {
181
- return baseClass::InitProgressBar (xml_doc, path, index, pWnd);
182
- }
183
-
184
- bool CUIXmlInit::InitProgressShape (CUIXml& xml_doc, LPCSTR path, int index, CUIProgressShape* pWnd)
185
- {
186
- return baseClass::InitProgressShape (xml_doc, path, index, pWnd);
187
- }
188
-
189
- void CUIXmlInit::InitAutoStaticGroup (CUIXml& xml_doc, LPCSTR path, int index, CUIWindow* pParentWnd)
190
- {
191
- baseClass::InitAutoStaticGroup (xml_doc, path, index, pParentWnd);
192
- }
193
-
194
- void CUIXmlInit::InitAutoFrameLineGroup (CUIXml& xml_doc, LPCSTR path, int index, CUIWindow* pParentWnd)
195
- {
196
- baseClass::InitAutoFrameLineGroup (xml_doc, path, index, pParentWnd);
197
- }
198
-
199
- bool CUIXmlInit::InitFont (CUIXml& xml_doc, LPCSTR path, int index, u32 & color, CGameFont*& pFnt)
200
- {
201
- return baseClass::InitFont (xml_doc, path, index, color, pFnt);
202
- }
203
-
204
- bool CUIXmlInit::InitTabControl (CUIXml& xml_doc, LPCSTR path, int index, CUITabControl* pWnd)
205
- {
206
- return baseClass::InitTabControl (xml_doc, path, index, pWnd);
207
- }
208
-
209
- // ////////////////////////////////////////////////////////////////////////
210
-
211
- bool CUIXmlInit::InitFrameLine (CUIXml& xml_doc, LPCSTR path, int index, CUIFrameLineWnd* pWnd)
212
- {
213
- return baseClass::InitFrameLine (xml_doc, path, index, pWnd);
214
- }
215
-
216
- bool CUIXmlInit::InitCustomEdit (CUIXml& xml_doc, LPCSTR path, int index, CUICustomEdit* pWnd)
217
- {
218
- return baseClass::InitCustomEdit (xml_doc, path, index, pWnd);
219
- }
220
-
221
- bool CUIXmlInit::InitEditBox (CUIXml& xml_doc, LPCSTR path, int index, CUIEditBox* pWnd)
222
- {
223
- return baseClass::InitEditBox (xml_doc, path, index, pWnd);
224
- }
225
-
226
- // ////////////////////////////////////////////////////////////////////////
227
-
228
- bool CUIXmlInit::InitAnimatedStatic (CUIXml& xml_doc, LPCSTR path, int index, CUIAnimatedStatic* pWnd)
229
- {
230
- return baseClass::InitAnimatedStatic (xml_doc, path, index, pWnd);
231
- }
232
-
233
117
bool CUIXmlInit::InitSleepStatic (CUIXml& xml_doc, LPCSTR path, int index, CUISleepStatic* pWnd)
234
118
{
235
119
R_ASSERT4 (xml_doc.NavigateToNode (path, index), " XML node not found" , path, xml_doc.m_xml_file_name );
@@ -239,58 +123,6 @@ bool CUIXmlInit::InitSleepStatic(CUIXml& xml_doc, LPCSTR path, int index, CUISle
239
123
return true ;
240
124
}
241
125
242
- bool CUIXmlInit::InitTexture (CUIXml& xml_doc, LPCSTR path, int index, ITextureOwner* pWnd)
243
- {
244
- return baseClass::InitTexture (xml_doc, path, index, pWnd);
245
- }
246
-
247
- bool CUIXmlInit::InitTextureOffset (CUIXml& xml_doc, LPCSTR path, int index, CUIStatic* pWnd)
248
- {
249
- return baseClass::InitTextureOffset (xml_doc, path, index, pWnd);
250
- }
251
-
252
- bool CUIXmlInit::InitMultiTexture (CUIXml& xml_doc, LPCSTR path, int index, CUI3tButton* pWnd)
253
- {
254
- return baseClass::InitMultiTexture (xml_doc, path, index, pWnd);
255
- }
256
-
257
- // ////////////////////////////////////////////////////////////////////////
258
-
259
- bool CUIXmlInit::InitAlignment (CUIXml& xml_doc, const char * path, int index, float & x, float & y, CUIWindow* pWnd)
260
- {
261
- return baseClass::InitAlignment (xml_doc, path, index, x, y, pWnd);
262
- }
263
-
264
- // ////////////////////////////////////////////////////////////////////////
265
-
266
- void CUIXmlInit::InitColorDefs () { baseClass::InitColorDefs (); }
267
-
268
- bool CUIXmlInit::InitScrollView (CUIXml& xml_doc, LPCSTR path, int index, CUIScrollView* pWnd)
269
- {
270
- return baseClass::InitScrollView (xml_doc, path, index, pWnd);
271
- }
272
-
273
- bool CUIXmlInit::InitListBox (CUIXml& xml_doc, LPCSTR path, int index, CUIListBox* pWnd)
274
- {
275
- return baseClass::InitListBox (xml_doc, path, index, pWnd);
276
- }
277
-
278
- bool CUIXmlInit::InitTrackBar (CUIXml& xml_doc, LPCSTR path, int index, CUITrackBar* pWnd)
279
- {
280
- return baseClass::InitTrackBar (xml_doc, path, index, pWnd);
281
- }
282
-
283
- bool CUIXmlInit::InitComboBox (CUIXml& xml_doc, LPCSTR path, int index, CUIComboBox* pWnd)
284
- {
285
- return baseClass::InitComboBox (xml_doc, path, index, pWnd);
286
- }
287
-
288
- void CUIXmlInit::AssignColor (LPCSTR name, u32 clr) { baseClass::AssignColor (name, clr); }
289
- u32 CUIXmlInit::GetColor (CUIXml& xml_doc, LPCSTR path, int index, u32 def_clr)
290
- {
291
- return baseClass::GetColor (xml_doc, path, index, def_clr);
292
- }
293
-
294
126
bool CUIXmlInit::InitHintWindow (CUIXml& xml_doc, LPCSTR path, int index, UIHintWindow* pWnd)
295
127
{
296
128
VERIFY (pWnd);
0 commit comments