~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to gui/EditTextWidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
8
 
 * modify it under the terms of the GNU General Public License
9
 
 * as published by the Free Software Foundation; either version 2
10
 
 * of the License, or (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, write to the Free Software
19
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
 
 *
21
 
 * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/tags/release-1-2-1/gui/EditTextWidget.cpp $
22
 
 * $Id: EditTextWidget.cpp 52716 2010-09-14 00:15:20Z lordhoto $
23
 
 */
24
 
 
25
 
#include "gui/EditTextWidget.h"
26
 
#include "gui/dialog.h"
27
 
#include "gui/GuiManager.h"
28
 
 
29
 
#include "gui/ThemeEval.h"
30
 
 
31
 
namespace GUI {
32
 
 
33
 
EditTextWidget::EditTextWidget(GuiObject *boss, int x, int y, int w, int h, const String &text, const char *tooltip, uint32 cmd)
34
 
        : EditableWidget(boss, x, y - 1, w, h + 2, tooltip, cmd) {
35
 
        setFlags(WIDGET_ENABLED | WIDGET_CLEARBG | WIDGET_RETAIN_FOCUS | WIDGET_WANT_TICKLE);
36
 
        _type = kEditTextWidget;
37
 
 
38
 
        setEditString(text);
39
 
}
40
 
 
41
 
EditTextWidget::EditTextWidget(GuiObject *boss, const String &name, const String &text, const char *tooltip, uint32 cmd)
42
 
        : EditableWidget(boss, name, tooltip, cmd) {
43
 
        setFlags(WIDGET_ENABLED | WIDGET_CLEARBG | WIDGET_RETAIN_FOCUS | WIDGET_WANT_TICKLE);
44
 
        _type = kEditTextWidget;
45
 
 
46
 
        setEditString(text);
47
 
}
48
 
 
49
 
void EditTextWidget::setEditString(const String &str) {
50
 
        EditableWidget::setEditString(str);
51
 
        _backupString = str;
52
 
}
53
 
 
54
 
void EditTextWidget::reflowLayout() {
55
 
        _leftPadding = g_gui.xmlEval()->getVar("Globals.EditTextWidget.Padding.Left", 0);
56
 
        _rightPadding = g_gui.xmlEval()->getVar("Globals.EditTextWidget.Padding.Right", 0);
57
 
 
58
 
        EditableWidget::reflowLayout();
59
 
}
60
 
 
61
 
 
62
 
void EditTextWidget::handleMouseDown(int x, int y, int button, int clickCount) {
63
 
        // First remove caret
64
 
        if (_caretVisible)
65
 
                drawCaret(true);
66
 
 
67
 
        x += _editScrollOffset;
68
 
 
69
 
        int width = 0;
70
 
        uint i;
71
 
 
72
 
        for (i = 0; i < _editString.size(); ++i) {
73
 
                width += g_gui.theme()->getCharWidth(_editString[i], _font);
74
 
                if (width >= x)
75
 
                        break;
76
 
        }
77
 
        if (setCaretPos(i))
78
 
                draw();
79
 
}
80
 
 
81
 
 
82
 
void EditTextWidget::drawWidget() {
83
 
        g_gui.theme()->drawWidgetBackground(Common::Rect(_x, _y, _x+_w, _y+_h), 0, ThemeEngine::kWidgetBackgroundEditText);
84
 
 
85
 
        // Draw the text
86
 
        adjustOffset();
87
 
        g_gui.theme()->drawText(Common::Rect(_x+2+ _leftPadding,_y+2, _x+_leftPadding+getEditRect().width()+2, _y+_h-2), _editString, _state, Graphics::kTextAlignLeft, ThemeEngine::kTextInversionNone, -_editScrollOffset, false, _font);
88
 
}
89
 
 
90
 
Common::Rect EditTextWidget::getEditRect() const {
91
 
        Common::Rect r(2 + _leftPadding, 2, _w - 2 - _leftPadding - _rightPadding, _h-1);
92
 
 
93
 
        return r;
94
 
}
95
 
 
96
 
void EditTextWidget::receivedFocusWidget() {
97
 
}
98
 
 
99
 
void EditTextWidget::lostFocusWidget() {
100
 
        // If we loose focus, 'commit' the user changes
101
 
        _backupString = _editString;
102
 
        drawCaret(true);
103
 
}
104
 
 
105
 
void EditTextWidget::startEditMode() {
106
 
}
107
 
 
108
 
void EditTextWidget::endEditMode() {
109
 
        releaseFocus();
110
 
}
111
 
 
112
 
void EditTextWidget::abortEditMode() {
113
 
        setEditString(_backupString);
114
 
        sendCommand(_cmd, 0);
115
 
        releaseFocus();
116
 
}
117
 
 
118
 
} // End of namespace GUI