ScummVM API documentation
TextData.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 /*
23  * This code is based on the CRAB engine
24  *
25  * Copyright (c) Arvind Raja Yadav
26  *
27  * Licensed under MIT
28  *
29  */
30 
31 #ifndef CRAB_TEXTDATA_H
32 #define CRAB_TEXTDATA_H
33 
34 #include "crab/text/TextManager.h"
35 #include "crab/ui/element.h"
36 
37 namespace Crab {
38 
39 namespace pyrodactyl {
40 namespace ui {
41 class TextData : public Element {
42 public:
43  int _col;
44  FontKey _font;
45  Align _align;
46  bool _background;
47 
48  TextData() {
49  _col = 0;
50  _font = 0;
51  _align = ALIGN_LEFT;
52  _background = false;
53  }
54  ~TextData() {}
55 
56  bool load(rapidxml::xml_node<char> *node, Rect *parent = nullptr, const bool &echo = true);
57 
58  // Plain drawing
59  void draw(const Common::String &val, const int &xOffset = 0, const int &yOffset = 0);
60 
61  // Draw with a different color
62  void drawColor(const Common::String &val, const int &color, const int &xOffset = 0, const int &yOffset = 0);
63 };
64 } // End of namespace ui
65 } // End of namespace pyrodactyl
66 
67 } // End of namespace Crab
68 
69 #endif // CRAB_TEXTDATA_H
Definition: str.h:59
Definition: Rectangle.h:42
Definition: element.h:42
Definition: TextData.h:41
Definition: moveeffect.h:37