2003-11-02 19:11:03 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2002-2006 The ScummVM project
|
2003-11-02 19:11:03 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-11-02 19:11:03 +00:00
|
|
|
*
|
2006-02-11 10:08:56 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-11-02 19:11:03 +00:00
|
|
|
*/
|
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2003-11-02 19:11:03 +00:00
|
|
|
#include "common/util.h"
|
|
|
|
#include "gui/TabWidget.h"
|
|
|
|
#include "gui/dialog.h"
|
|
|
|
#include "gui/newgui.h"
|
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
namespace GUI {
|
2006-05-31 12:09:00 +00:00
|
|
|
TabWidget::TabWidget(GuiObject *boss, int x, int y, int w, int h)
|
|
|
|
: Widget(boss, x, y, w, h) {
|
2006-03-08 01:42:02 +00:00
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
2006-06-03 13:33:39 +00:00
|
|
|
TabWidget::TabWidget(GuiObject *boss, const String &name)
|
2006-03-08 01:42:02 +00:00
|
|
|
: Widget(boss, name) {
|
|
|
|
init();
|
|
|
|
}
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2006-03-08 01:42:02 +00:00
|
|
|
void TabWidget::init() {
|
2006-06-14 16:29:56 +00:00
|
|
|
_tabOffset = 0; // TODO
|
|
|
|
_tabSpacing = g_gui.theme()->getTabSpacing();
|
|
|
|
_tabPadding = g_gui.theme()->getTabPadding();
|
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
_flags = WIDGET_ENABLED;
|
|
|
|
_type = kTabWidget;
|
|
|
|
_activeTab = -1;
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2003-11-03 00:18:33 +00:00
|
|
|
_tabWidth = 40;
|
2006-06-14 16:29:56 +00:00
|
|
|
_tabHeight = g_gui.theme()->getTabHeight();
|
2003-11-02 22:31:20 +00:00
|
|
|
}
|
|
|
|
|
2003-11-07 14:50:32 +00:00
|
|
|
TabWidget::~TabWidget() {
|
2004-02-05 00:19:57 +00:00
|
|
|
for (uint i = 0; i < _tabs.size(); ++i) {
|
2003-11-07 14:50:32 +00:00
|
|
|
delete _tabs[i].firstWidget;
|
|
|
|
_tabs[i].firstWidget = 0;
|
|
|
|
}
|
|
|
|
_tabs.clear();
|
|
|
|
}
|
|
|
|
|
2003-11-02 22:31:20 +00:00
|
|
|
int16 TabWidget::getChildY() const {
|
2005-05-17 06:19:42 +00:00
|
|
|
return getAbsY() + _tabHeight;
|
2003-11-02 19:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int TabWidget::addTab(const String &title) {
|
2003-11-03 00:18:33 +00:00
|
|
|
// Add a new tab page
|
2003-11-03 14:55:36 +00:00
|
|
|
Tab newTab;
|
2005-05-17 06:19:42 +00:00
|
|
|
newTab.title = title;
|
|
|
|
newTab.firstWidget = 0;
|
2003-11-03 14:55:36 +00:00
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
_tabs.push_back(newTab);
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2003-11-03 00:18:33 +00:00
|
|
|
int numTabs = _tabs.size();
|
2006-06-14 16:29:56 +00:00
|
|
|
_tabWidth = _w / numTabs;
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2003-11-03 00:18:33 +00:00
|
|
|
// Activate the new tab
|
|
|
|
setActiveTab(numTabs - 1);
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2003-11-02 22:31:20 +00:00
|
|
|
return _activeTab;
|
2003-11-02 19:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TabWidget::setActiveTab(int tabID) {
|
2004-02-05 00:19:57 +00:00
|
|
|
assert(0 <= tabID && tabID < (int)_tabs.size());
|
2003-11-02 19:11:03 +00:00
|
|
|
if (_activeTab != tabID) {
|
2003-11-02 22:31:20 +00:00
|
|
|
// Exchange the widget lists, and switch to the new tab
|
2005-04-04 17:57:40 +00:00
|
|
|
if (_activeTab != -1) {
|
2003-11-02 22:31:20 +00:00
|
|
|
_tabs[_activeTab].firstWidget = _firstWidget;
|
2005-04-04 17:57:40 +00:00
|
|
|
releaseFocus();
|
|
|
|
}
|
2003-11-02 19:11:03 +00:00
|
|
|
_activeTab = tabID;
|
|
|
|
_firstWidget = _tabs[tabID].firstWidget;
|
2003-11-02 22:31:20 +00:00
|
|
|
_boss->draw();
|
2003-11-02 19:11:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void TabWidget::handleMouseDown(int x, int y, int button, int clickCount) {
|
2005-05-17 06:19:42 +00:00
|
|
|
assert(y < _tabHeight);
|
2003-11-02 19:11:03 +00:00
|
|
|
|
|
|
|
// Determine which tab was clicked
|
|
|
|
int tabID = -1;
|
2006-06-14 16:29:56 +00:00
|
|
|
if (x >= 0 && x % (_tabWidth + _tabSpacing) < _tabWidth) {
|
|
|
|
tabID = x / (_tabWidth + _tabSpacing);
|
2004-02-05 00:19:57 +00:00
|
|
|
if (tabID >= (int)_tabs.size())
|
2003-11-02 19:11:03 +00:00
|
|
|
tabID = -1;
|
|
|
|
}
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
// If a tab was clicked, switch to that pane
|
|
|
|
if (tabID >= 0) {
|
|
|
|
setActiveTab(tabID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TabWidget::handleKeyDown(uint16 ascii, int keycode, int modifiers) {
|
|
|
|
// TODO: maybe there should be a way to switch between tabs
|
|
|
|
// using the keyboard? E.g. Alt-Shift-Left/Right-Arrow or something
|
|
|
|
// like that.
|
|
|
|
return Widget::handleKeyDown(ascii, keycode, modifiers);
|
|
|
|
}
|
|
|
|
|
2006-04-19 01:05:28 +00:00
|
|
|
void TabWidget::handleScreenChanged() {
|
2006-06-11 21:43:09 +00:00
|
|
|
Widget::handleScreenChanged();
|
|
|
|
|
2006-04-19 01:05:28 +00:00
|
|
|
for (uint i = 0; i < _tabs.size(); ++i) {
|
|
|
|
Widget *w = _tabs[i].firstWidget;
|
|
|
|
while (w) {
|
|
|
|
w->handleScreenChanged();
|
|
|
|
w = w->next();
|
|
|
|
}
|
|
|
|
}
|
2006-06-11 21:43:09 +00:00
|
|
|
|
2006-06-14 16:29:56 +00:00
|
|
|
_tabHeight = g_gui.theme()->getTabHeight();
|
2006-06-11 21:43:09 +00:00
|
|
|
_tabWidth = 40;
|
|
|
|
|
2006-06-14 16:29:56 +00:00
|
|
|
_tabOffset = 0; // TODO
|
|
|
|
_tabSpacing = g_gui.theme()->getTabSpacing();
|
|
|
|
_tabPadding = g_gui.theme()->getTabPadding();
|
2006-06-11 21:43:09 +00:00
|
|
|
|
2006-06-14 16:29:56 +00:00
|
|
|
if (_tabs.size())
|
|
|
|
_tabWidth = _w / _tabs.size();
|
2006-04-19 01:05:28 +00:00
|
|
|
}
|
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
void TabWidget::drawWidget(bool hilite) {
|
2006-02-13 18:00:04 +00:00
|
|
|
Common::Array<Common::String> tabs;
|
|
|
|
for (int i = 0; i < (int)_tabs.size(); ++i) {
|
|
|
|
tabs.push_back(_tabs[i].title);
|
2003-11-02 19:11:03 +00:00
|
|
|
}
|
2006-02-13 18:00:04 +00:00
|
|
|
g_gui.theme()->drawTab(Common::Rect(_x, _y, _x+_w, _y+_h), _tabHeight, _tabWidth, tabs, _activeTab, _hints);
|
2003-11-02 19:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Widget *TabWidget::findWidget(int x, int y) {
|
2005-05-17 06:19:42 +00:00
|
|
|
if (y < _tabHeight) {
|
2003-11-02 19:11:03 +00:00
|
|
|
// Click was in the tab area
|
|
|
|
return this;
|
|
|
|
} else {
|
|
|
|
// Iterate over all child widgets and find the one which was clicked
|
2005-05-17 06:19:42 +00:00
|
|
|
return Widget::findWidgetInChain(_firstWidget, x, y - _tabHeight);
|
2003-11-02 19:11:03 +00:00
|
|
|
}
|
|
|
|
}
|
2003-11-10 23:40:48 +00:00
|
|
|
|
|
|
|
} // End of namespace GUI
|