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-07-12 16:24:11 +00:00
|
|
|
#include "widget.h"
|
2002-07-18 20:26:35 +00:00
|
|
|
#include "ListWidget.h"
|
2002-07-05 16:56:53 +00:00
|
|
|
|
|
|
|
class NewGui;
|
|
|
|
|
2002-07-07 22:44:30 +00:00
|
|
|
#define RES_STRING(id) _gui->queryResString(id)
|
|
|
|
#define CUSTOM_STRING(id) _gui->queryCustomString(id)
|
|
|
|
|
|
|
|
// 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-07-10 16:49:45 +00:00
|
|
|
byte *_screenBuf;
|
2002-07-08 22:11:47 +00:00
|
|
|
|
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),
|
|
|
|
_mouseWidget(0), _focusedWidget(0), _screenBuf(0)
|
2002-07-05 16:56:53 +00:00
|
|
|
{}
|
2002-07-10 16:49:45 +00:00
|
|
|
virtual ~Dialog();
|
2002-07-05 16:56:53 +00:00
|
|
|
|
|
|
|
virtual void draw();
|
|
|
|
|
2002-07-13 22:41:29 +00:00
|
|
|
virtual void handleTickle(); // Called periodically (in every guiloop() )
|
2002-07-13 18:32:09 +00:00
|
|
|
virtual void handleMouseDown(int x, int y, int button);
|
|
|
|
virtual void handleMouseUp(int x, int y, int button);
|
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
|
|
|
|
|
|
|
NewGui *getGui() { return _gui; }
|
2002-07-10 16:49:45 +00:00
|
|
|
|
2002-07-19 01:41:41 +00:00
|
|
|
virtual void setupScreenBuf();
|
|
|
|
virtual void teardownScreenBuf();
|
2002-07-05 16:56:53 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
Widget* findWidget(int x, int y); // Find the widget at pos x,y if any
|
|
|
|
void close();
|
|
|
|
|
|
|
|
void addResText(int x, int y, int w, int h, int resID);
|
2002-07-08 00:29:47 +00:00
|
|
|
void addButton(int x, int y, int w, int h, const char *label, uint32 cmd, char hotkey);
|
2002-07-05 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2002-07-08 22:11:47 +00:00
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
class SaveLoadDialog : public Dialog {
|
|
|
|
public:
|
|
|
|
SaveLoadDialog(NewGui *gui);
|
|
|
|
|
2002-07-12 16:24:11 +00:00
|
|
|
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
|
2002-07-13 09:19:23 +00:00
|
|
|
protected:
|
2002-07-18 20:26:35 +00:00
|
|
|
ListWidget* _savegameList;
|
2002-07-05 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2002-07-08 22:11:47 +00:00
|
|
|
|
|
|
|
class SoundDialog;
|
|
|
|
class KeysDialog;
|
|
|
|
class MiscDialog;
|
|
|
|
|
2002-07-19 10:10:02 +00:00
|
|
|
class AboutDialog : public Dialog {
|
|
|
|
public:
|
|
|
|
AboutDialog(NewGui *gui);
|
|
|
|
};
|
|
|
|
|
2002-07-07 22:44:30 +00:00
|
|
|
class OptionsDialog : public Dialog {
|
2002-07-08 22:11:47 +00:00
|
|
|
protected:
|
|
|
|
SoundDialog *_soundDialog;
|
|
|
|
KeysDialog *_keysDialog;
|
|
|
|
MiscDialog *_miscDialog;
|
|
|
|
|
2002-07-07 22:44:30 +00:00
|
|
|
public:
|
|
|
|
OptionsDialog(NewGui *gui);
|
|
|
|
|
2002-07-12 16:24:11 +00:00
|
|
|
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
|
2002-07-07 22:44:30 +00:00
|
|
|
};
|
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
class PauseDialog : public Dialog {
|
|
|
|
public:
|
|
|
|
PauseDialog(NewGui *gui);
|
|
|
|
|
2002-07-13 18:32:09 +00:00
|
|
|
virtual void handleMouseDown(int x, int y, int button)
|
2002-07-05 16:56:53 +00:00
|
|
|
{ close(); }
|
2002-07-13 18:32:09 +00:00
|
|
|
virtual void handleKeyDown(char key, int modifiers)
|
2002-07-05 16:56:53 +00:00
|
|
|
{
|
|
|
|
if (key == 32)
|
|
|
|
close();
|
|
|
|
else
|
2002-07-13 18:32:09 +00:00
|
|
|
Dialog::handleKeyDown(key, modifiers);
|
2002-07-05 16:56:53 +00:00
|
|
|
}
|
2002-07-19 01:41:41 +00:00
|
|
|
|
|
|
|
// Enforce no transparency!
|
|
|
|
virtual void setupScreenBuf() {}
|
|
|
|
virtual void teardownScreenBuf() {}
|
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2002-07-26 00:41:07 +00:00
|
|
|
|
|
|
|
class SoundDialog : public Dialog {
|
|
|
|
public:
|
|
|
|
SoundDialog(NewGui *gui);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kMasterVolumeChanged = 'mavc',
|
|
|
|
kMusicVolumeChanged = 'muvc',
|
|
|
|
kSfxVolumeChanged = 'sfvc',
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int _soundVolumeMaster;
|
|
|
|
int _soundVolumeMusic;
|
|
|
|
int _soundVolumeSfx;
|
|
|
|
|
|
|
|
SliderWidget *widgetMasterVolume;
|
|
|
|
SliderWidget *widgetMusicVolume;
|
|
|
|
SliderWidget *widgetSfxVolume;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-07-05 16:56:53 +00:00
|
|
|
#endif
|