2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TABWIDGET_H
|
|
|
|
#define TABWIDGET_H
|
|
|
|
|
|
|
|
#include "widget.h"
|
|
|
|
#include "common/str.h"
|
2004-04-09 15:10:23 +00:00
|
|
|
#include "common/array.h"
|
2003-11-02 19:11:03 +00:00
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
namespace GUI {
|
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
class TabWidget : public Widget {
|
|
|
|
typedef Common::String String;
|
|
|
|
struct Tab {
|
|
|
|
String title;
|
|
|
|
Widget *firstWidget;
|
|
|
|
};
|
2004-04-09 15:10:23 +00:00
|
|
|
typedef Common::Array<Tab> TabList;
|
2006-06-15 02:14:40 +00:00
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
protected:
|
|
|
|
int _activeTab;
|
2006-06-15 02:14:40 +00:00
|
|
|
int _firstVisibleTab;
|
2003-11-02 19:11:03 +00:00
|
|
|
TabList _tabs;
|
|
|
|
int _tabWidth;
|
2005-05-17 06:19:42 +00:00
|
|
|
int _tabHeight;
|
2003-11-02 19:11:03 +00:00
|
|
|
|
2010-06-15 10:50:28 +00:00
|
|
|
int _bodyRP, _bodyTP, _bodyLP, _bodyBP;
|
|
|
|
ThemeEngine::DialogBackground _bodyBackgroundType;
|
|
|
|
|
2006-06-15 02:14:40 +00:00
|
|
|
int _titleVPad;
|
|
|
|
|
|
|
|
int _butRP, _butTP, _butW, _butH;
|
|
|
|
|
|
|
|
ButtonWidget *_navLeft, *_navRight;
|
2006-06-14 16:29:56 +00:00
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
public:
|
2006-05-31 12:09:00 +00:00
|
|
|
TabWidget(GuiObject *boss, int x, int y, int w, int h);
|
2006-06-03 13:33:39 +00:00
|
|
|
TabWidget(GuiObject *boss, const String &name);
|
2003-11-07 14:50:32 +00:00
|
|
|
~TabWidget();
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2006-03-08 01:42:02 +00:00
|
|
|
void init();
|
|
|
|
|
2007-06-07 15:14:58 +00:00
|
|
|
/**
|
|
|
|
* Add a new tab with the given title. Returns a unique ID which can be used
|
|
|
|
* to identify the tab (to remove it / activate it etc.).
|
|
|
|
*/
|
2003-11-02 19:11:03 +00:00
|
|
|
int addTab(const String &title);
|
2005-04-04 17:57:15 +00:00
|
|
|
|
2007-06-07 15:14:58 +00:00
|
|
|
/**
|
|
|
|
* Remove the tab with the given tab ID. Disposes all child widgets of that tab.
|
|
|
|
* TODO: This code is *unfinished*. In particular, it changes the
|
|
|
|
* tabIDs, so that they are not unique anymore! This is bad.
|
2007-06-07 15:17:01 +00:00
|
|
|
* If we need to, we could fix this by changing the tab IDs from being an index
|
|
|
|
* into the _tabs array to a real "unique" ID, which gets stored in the Tab struct.
|
|
|
|
* It won't be difficult to implement this, but since currently no code seems to make
|
|
|
|
* use of the feature...
|
2007-06-07 15:14:58 +00:00
|
|
|
*/
|
|
|
|
void removeTab(int tabID);
|
2005-04-04 17:57:15 +00:00
|
|
|
|
2009-09-20 11:25:39 +00:00
|
|
|
int getActiveTab() {
|
|
|
|
return _activeTab;
|
|
|
|
}
|
|
|
|
|
2007-06-07 15:14:58 +00:00
|
|
|
/**
|
|
|
|
* Set the active tab by specifying a valid tab ID.
|
2006-06-11 21:34:25 +00:00
|
|
|
* setActiveTab changes the value of _firstWidget. This means new
|
|
|
|
* Widgets are always added to the active tab.
|
2005-04-04 17:57:15 +00:00
|
|
|
*/
|
2003-11-02 19:11:03 +00:00
|
|
|
void setActiveTab(int tabID);
|
2008-12-22 11:22:15 +00:00
|
|
|
|
2008-08-14 23:17:41 +00:00
|
|
|
void setTabTitle(int tabID, const String &title) {
|
|
|
|
assert(0 <= tabID && tabID < (int)_tabs.size());
|
|
|
|
_tabs[tabID].title = title;
|
|
|
|
}
|
2003-11-02 19:11:03 +00:00
|
|
|
|
|
|
|
virtual void handleMouseDown(int x, int y, int button, int clickCount);
|
2007-06-30 12:26:59 +00:00
|
|
|
virtual bool handleKeyDown(Common::KeyState state);
|
2006-06-15 02:14:40 +00:00
|
|
|
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
|
2003-11-02 19:11:03 +00:00
|
|
|
|
2006-08-04 13:55:53 +00:00
|
|
|
virtual void reflowLayout();
|
2006-04-19 01:05:28 +00:00
|
|
|
|
2006-06-15 02:14:40 +00:00
|
|
|
virtual void draw();
|
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
protected:
|
2007-06-07 15:14:58 +00:00
|
|
|
// We overload getChildY to make sure child widgets are positioned correctly.
|
|
|
|
// Essentially this compensates for the space taken up by the tab title header.
|
|
|
|
virtual int16 getChildY() const;
|
|
|
|
|
2007-11-04 03:38:30 +00:00
|
|
|
virtual void drawWidget();
|
2003-11-02 19:11:03 +00:00
|
|
|
|
|
|
|
virtual Widget *findWidget(int x, int y);
|
|
|
|
};
|
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
} // End of namespace GUI
|
|
|
|
|
2003-11-02 19:11:03 +00:00
|
|
|
#endif
|