mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
5051b080a2
- adds a ImageMan and ImageDec class for loading and managing image files - adds a loader for zip files which is used by the new theme and the image manager - changes the widgets to use the new gui code - changes the scumm dialogs to use the new gui code - fixes a #include problem in the sky debugger with the new gui code To use the new gui copy gui/themes/default-theme.zip to your extrapath. If the theme zip can not be found the gui will fallback to the classic theme. If you want to change the gui styles use "gui_theme=classic" for the classic theme and "gui_theme=default-theme" for the new theme. Thanks to eriktorbjorn for testing and help with the new theme and to sev for reviewing this patch. svn-id: r20227
97 lines
2.5 KiB
C++
97 lines
2.5 KiB
C++
/* ScummVM - Scumm Interpreter
|
|
* Copyright (C) 2002-2006 The ScummVM project
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* $Header$
|
|
*/
|
|
|
|
#include "common/stdafx.h"
|
|
#include "gui/EditTextWidget.h"
|
|
#include "gui/dialog.h"
|
|
#include "gui/newgui.h"
|
|
|
|
namespace GUI {
|
|
|
|
EditTextWidget::EditTextWidget(GuiObject *boss, int x, int y, int w, int h, const String &text, WidgetSize ws)
|
|
: EditableWidget(boss, x, y - 1, w, h + 2, ws) {
|
|
_flags = WIDGET_ENABLED | WIDGET_CLEARBG | WIDGET_RETAIN_FOCUS | WIDGET_WANT_TICKLE;
|
|
_type = kEditTextWidget;
|
|
|
|
setEditString(text);
|
|
}
|
|
|
|
void EditTextWidget::setEditString(const String &str) {
|
|
EditableWidget::setEditString(str);
|
|
_backupString = str;
|
|
}
|
|
|
|
void EditTextWidget::handleMouseDown(int x, int y, int button, int clickCount) {
|
|
// First remove caret
|
|
if (_caretVisible)
|
|
drawCaret(true);
|
|
|
|
x += _editScrollOffset;
|
|
|
|
int width = 0;
|
|
uint i;
|
|
|
|
for (i = 0; i < _editString.size(); ++i) {
|
|
width += g_gui.getCharWidth(_editString[i]);
|
|
if (width >= x)
|
|
break;
|
|
}
|
|
if (setCaretPos(i))
|
|
draw();
|
|
}
|
|
|
|
|
|
void EditTextWidget::drawWidget(bool hilite) {
|
|
g_gui.theme()->drawWidgetBackground(Common::Rect(_x, _y, _x+_w, _y+_h), _hints, Theme::kWidgetBackgroundBorderSmall);
|
|
|
|
// Draw the text
|
|
adjustOffset();
|
|
g_gui.theme()->drawText(Common::Rect(_x+2,_y+2, _x+getEditRect().width()-2, _y+_h-2), _editString, Theme::kStateEnabled, Theme::kTextAlignLeft, false, -_editScrollOffset, false);
|
|
}
|
|
|
|
Common::Rect EditTextWidget::getEditRect() const {
|
|
Common::Rect r(2, 1, _w - 2, _h);
|
|
|
|
return r;
|
|
}
|
|
|
|
void EditTextWidget::receivedFocusWidget() {
|
|
}
|
|
|
|
void EditTextWidget::lostFocusWidget() {
|
|
// If we loose focus, 'commit' the user changes
|
|
_backupString = _editString;
|
|
drawCaret(true);
|
|
}
|
|
|
|
void EditTextWidget::startEditMode() {
|
|
}
|
|
|
|
void EditTextWidget::endEditMode() {
|
|
releaseFocus();
|
|
}
|
|
|
|
void EditTextWidget::abortEditMode() {
|
|
setEditString(_backupString);
|
|
releaseFocus();
|
|
}
|
|
|
|
} // End of namespace GUI
|