2002-07-05 16:56:53 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2002-2006 The ScummVM project
|
2002-07-05 16:56:53 +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.
|
2002-07-05 16:56:53 +00:00
|
|
|
*
|
2006-02-11 10:08:56 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2002-07-05 16:56:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIALOG_H
|
|
|
|
#define DIALOG_H
|
|
|
|
|
2003-08-01 12:21:04 +00:00
|
|
|
#include "common/scummsys.h"
|
2003-11-02 14:50:53 +00:00
|
|
|
#include "common/str.h"
|
|
|
|
|
|
|
|
#include "gui/object.h"
|
2005-05-11 19:30:30 +00:00
|
|
|
#include "gui/widget.h"
|
2002-07-05 16:56:53 +00:00
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
namespace GUI {
|
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
class NewGui;
|
2005-05-19 17:03:31 +00:00
|
|
|
class PopUpWidget;
|
2002-07-07 22:44:30 +00:00
|
|
|
|
|
|
|
// Some "common" commands sent to handleCommand()
|
|
|
|
enum {
|
|
|
|
kCloseCmd = 'clos'
|
|
|
|
};
|
|
|
|
|
2003-11-02 14:50:53 +00:00
|
|
|
class Dialog : public GuiObject {
|
2002-07-13 22:41:29 +00:00
|
|
|
friend class NewGui;
|
2002-07-05 16:56:53 +00:00
|
|
|
protected:
|
2002-07-06 12:57:51 +00:00
|
|
|
Widget *_mouseWidget;
|
2002-07-13 22:41:29 +00:00
|
|
|
Widget *_focusedWidget;
|
2004-12-28 21:07:34 +00:00
|
|
|
Widget *_dragWidget;
|
2002-09-08 16:00:13 +00:00
|
|
|
bool _visible;
|
2006-01-28 23:03:39 +00:00
|
|
|
uint16 _drawingHints;
|
2002-07-08 22:11:47 +00:00
|
|
|
|
2002-11-19 01:36:47 +00:00
|
|
|
private:
|
|
|
|
int _result;
|
2006-04-18 00:37:04 +00:00
|
|
|
bool _dimsInactive;
|
2003-03-06 19:52:54 +00:00
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
public:
|
2006-04-18 00:37:04 +00:00
|
|
|
Dialog(int x, int y, int w, int h, bool dimsInactive = true);
|
|
|
|
Dialog(Common::String name, bool dimsInactive = true);
|
2002-10-12 00:26:24 +00:00
|
|
|
virtual ~Dialog();
|
2003-03-06 19:52:54 +00:00
|
|
|
|
2002-10-16 17:37:30 +00:00
|
|
|
virtual int runModal();
|
|
|
|
|
|
|
|
bool isVisible() const { return _visible; }
|
2002-07-05 16:56:53 +00:00
|
|
|
|
2003-11-02 14:50:53 +00:00
|
|
|
void releaseFocus();
|
2002-11-21 15:20:52 +00:00
|
|
|
|
2002-10-16 17:37:30 +00:00
|
|
|
protected:
|
2002-07-26 20:38:55 +00:00
|
|
|
virtual void open();
|
|
|
|
virtual void close();
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
virtual void draw();
|
2002-11-10 19:39:32 +00:00
|
|
|
virtual void drawDialog();
|
2002-07-05 16:56:53 +00:00
|
|
|
|
2002-07-13 22:41:29 +00:00
|
|
|
virtual void handleTickle(); // Called periodically (in every guiloop() )
|
2002-07-27 14:16:14 +00:00
|
|
|
virtual void handleMouseDown(int x, int y, int button, int clickCount);
|
|
|
|
virtual void handleMouseUp(int x, int y, int button, int clickCount);
|
2002-10-16 20:32:12 +00:00
|
|
|
virtual void handleMouseWheel(int x, int y, int direction);
|
2002-11-22 14:02:54 +00:00
|
|
|
virtual void handleKeyDown(uint16 ascii, int keycode, int modifiers);
|
|
|
|
virtual void handleKeyUp(uint16 ascii, int keycode, int modifiers);
|
2002-07-06 12:57:51 +00:00
|
|
|
virtual void handleMouseMoved(int x, int y, int button);
|
2002-07-12 16:24:11 +00:00
|
|
|
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
|
2006-04-16 20:33:52 +00:00
|
|
|
virtual void handleScreenChanged();
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-03-06 19:52:54 +00:00
|
|
|
Widget *findWidget(int x, int y); // Find the widget at pos x,y if any
|
2002-07-05 16:56:53 +00:00
|
|
|
|
2005-05-18 14:11:53 +00:00
|
|
|
ButtonWidget *addButton(GuiObject *boss, int x, int y, const Common::String &label, uint32 cmd, char hotkey, WidgetSize ws = kDefaultWidgetSize);
|
2005-05-19 17:03:31 +00:00
|
|
|
|
2002-11-19 01:36:47 +00:00
|
|
|
void setResult(int result) { _result = result; }
|
2003-11-05 11:24:37 +00:00
|
|
|
int getResult() const { return _result; }
|
2006-04-18 00:37:04 +00:00
|
|
|
|
|
|
|
// Whether dialog dims all underneath dialogs or not when active
|
|
|
|
bool dimsInactive() { return _dimsInactive; }
|
2002-07-05 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
} // End of namespace GUI
|
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
#endif
|