2002-07-05 16:56:53 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2002 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIALOG_H
|
|
|
|
#define DIALOG_H
|
|
|
|
|
|
|
|
#include "scummsys.h"
|
2002-09-19 17:44:41 +00:00
|
|
|
#include "widget.h" // For CommandReceiver
|
2002-07-05 16:56:53 +00:00
|
|
|
|
|
|
|
class NewGui;
|
2002-11-05 22:34:50 +00:00
|
|
|
class ButtonWidget;
|
|
|
|
class PushButtonWidget;
|
2002-07-07 22:44:30 +00:00
|
|
|
|
|
|
|
// Some "common" commands sent to handleCommand()
|
|
|
|
enum {
|
|
|
|
kCloseCmd = 'clos'
|
|
|
|
};
|
|
|
|
|
2002-07-12 16:24:11 +00:00
|
|
|
class Dialog : public CommandReceiver {
|
2002-07-05 16:56:53 +00:00
|
|
|
friend class Widget;
|
2002-07-13 22:41:29 +00:00
|
|
|
friend class NewGui;
|
2002-07-05 16:56:53 +00:00
|
|
|
protected:
|
|
|
|
NewGui *_gui;
|
|
|
|
int16 _x, _y;
|
|
|
|
uint16 _w, _h;
|
2002-07-13 22:41:29 +00:00
|
|
|
Widget *_firstWidget;
|
2002-07-06 12:57:51 +00:00
|
|
|
Widget *_mouseWidget;
|
2002-07-13 22:41:29 +00:00
|
|
|
Widget *_focusedWidget;
|
2002-09-08 16:00:13 +00:00
|
|
|
bool _visible;
|
2002-07-08 22:11:47 +00:00
|
|
|
|
2002-11-19 01:36:47 +00:00
|
|
|
private:
|
|
|
|
int _result;
|
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
public:
|
|
|
|
Dialog(NewGui *gui, int x, int y, int w, int h)
|
2002-07-13 22:41:29 +00:00
|
|
|
: _gui(gui), _x(x), _y(y), _w(w), _h(h), _firstWidget(0),
|
2002-09-19 16:06:51 +00:00
|
|
|
_mouseWidget(0), _focusedWidget(0), _visible(false)
|
2002-07-05 16:56:53 +00:00
|
|
|
{}
|
2002-10-12 00:26:24 +00:00
|
|
|
virtual ~Dialog();
|
2002-10-16 17:37:30 +00:00
|
|
|
|
|
|
|
virtual int runModal();
|
|
|
|
|
|
|
|
NewGui *getGui() { return _gui; }
|
|
|
|
bool isVisible() const { return _visible; }
|
2002-10-23 14:00:47 +00:00
|
|
|
int16 getX() const { return _x; }
|
|
|
|
int16 getY() const { return _y; }
|
2002-07-05 16:56:53 +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();
|
2002-11-19 01:36:47 +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-07-13 22:41:29 +00:00
|
|
|
virtual void handleKeyDown(char key, int modifiers);
|
|
|
|
virtual void handleKeyUp(char key, 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);
|
2002-07-07 23:37:47 +00:00
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
Widget* findWidget(int x, int y); // Find the widget at pos x,y if any
|
|
|
|
|
2002-11-05 22:34:50 +00:00
|
|
|
ButtonWidget* addButton(int x, int y, const ScummVM::String &label, uint32 cmd, char hotkey);
|
|
|
|
PushButtonWidget* addPushButton(int x, int y, const ScummVM::String &label, uint32 cmd, char hotkey);
|
2002-11-19 01:36:47 +00:00
|
|
|
|
|
|
|
void setResult(int result) { _result = result; }
|
2002-07-05 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|