ScummVM API documentation
edittext.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 #ifndef GUI_WIDGETS_EDITTEXT_H
23 #define GUI_WIDGETS_EDITTEXT_H
24 
25 #include "gui/widgets/editable.h"
26 #include "common/str.h"
27 #include "gui/dialog.h"
28 
29 namespace GUI {
30 
31 /* EditTextWidget */
33 protected:
34  Common::U32String _backupString;
35 
36  int _leftPadding;
37  int _rightPadding;
38 
39 public:
40  EditTextWidget(GuiObject *boss, int x, int y, int w, int h, bool scale, const Common::U32String &text, const Common::U32String &tooltip = Common::U32String(), uint32 cmd = 0, uint32 finishCmd = 0, ThemeEngine::FontStyle font = ThemeEngine::kFontStyleNormal);
41  EditTextWidget(GuiObject *boss, int x, int y, int w, int h, const Common::U32String &text, const Common::U32String &tooltip = Common::U32String(), uint32 cmd = 0, uint32 finishCmd = 0, ThemeEngine::FontStyle font = ThemeEngine::kFontStyleNormal);
42  EditTextWidget(GuiObject *boss, const Common::String &name, const Common::U32String &text, const Common::U32String &tooltip = Common::U32String(), uint32 cmd = 0, uint32 finishCmd = 0, ThemeEngine::FontStyle font = ThemeEngine::kFontStyleNormal);
43 
44  void setEditString(const Common::U32String &str) override;
45 
46  bool wantsFocus() override { return true; }
47 
48  void reflowLayout() override;
49 
50 protected:
51  void drawWidget() override;
52  void receivedFocusWidget() override;
53  void lostFocusWidget() override;
54 
55  void startEditMode() override;
56  void endEditMode() override;
57  void abortEditMode() override;
58 
59  Common::Rect getEditRect() const override;
60 
61  uint32 _finishCmd;
62 };
63 
64 } // End of namespace GUI
65 
66 #endif
Definition: str.h:59
Definition: edittext.h:32
Definition: rect.h:144
Definition: system.h:46
Definition: object.h:60
Graphics::Surface * scale(const Graphics::Surface &srcImage, int xSize, int ySize)
Definition: ustr.h:57
FontStyle
Font style selector.
Definition: ThemeEngine.h:274
Common::Rect getEditRect() const override
A normal font.
Definition: ThemeEngine.h:276
Definition: editable.h:41