i6engine  1.0
GUIPrint.h
Go to the documentation of this file.
1 /*
2  * i6engine
3  * Copyright (2016) Daniel Bonrath, Michael Baer, All rights reserved.
4  *
5  * This file is part of i6engine; i6engine is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
25 #ifndef __I6ENGINE_MODULES_GUIPRINT_H__
26 #define __I6ENGINE_MODULES_GUIPRINT_H__
27 
29 
30 namespace CEGUI {
31  class Colour;
32  class Listbox;
33  class ListboxTextItem;
34 } /* namespace CEGUI */
35 
36 namespace i6e {
37 namespace api {
38 namespace gui {
39  enum class Alignment;
40 } /* namespace gui */
41 } /* namespace api */
42 namespace modules {
43 
44  class GUIPrint : public api::GUIWidget {
45  public:
51  GUIPrint(const std::string & name, const std::string & type);
52 
56  ~GUIPrint();
57 
63  void update(uint16_t type, api::gui::GUIUpdateMessageStruct * message) override;
64 
68  void tick() override;
69 
70  private:
71  CEGUI::ListboxTextItem *_lbText;
72  CEGUI::Listbox * _lb;
73  int64_t _lifeTime;
74  api::gui::Alignment _alignment;
75  std::string _text;
76  double _realPosX;
77  double _realPosY;
78  uint64_t _startTime;
79 
84  void setText(const std::string & text);
85 
90  void setColour(const CEGUI::Colour & col);
91 
96  void setFont(const std::string & font_name);
97 
102  void setTimeToDie(const int64_t lifetime);
103 
107  GUIPrint(const GUIPrint &) = delete;
108 
112  GUIPrint & operator=(const GUIPrint &) = delete;
113  };
114 
115 } /* namespace modules */
116 } /* namespace i6e */
117 
118 #endif /* __I6ENGINE_MODULES_GUIPRINT_H__ */
119 
GUIPrint(const std::string &name, const std::string &type)
Constructor for a new GUI Print.
void update(uint16_t type, api::gui::GUIUpdateMessageStruct *message) override
Method called by incoming messages.
Used to partially unwrap GUI messages.
Definition: GUIConfig.h:108
void tick() override
Method to be called at every Tick.
~GUIPrint()
destructor
Superclass for all GUI widgets.
Definition: GUIWidget.h:65