aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/ringworld/ringworld_dialogs.h
diff options
context:
space:
mode:
authorPaul Gilbert2011-08-29 22:14:30 +1000
committerPaul Gilbert2011-08-29 22:15:38 +1000
commit57f00ff1dc920c132bd821ac61fd5261c848493c (patch)
tree3dd1bf6d2420e2326f5c0957fc808a4ad38606df /engines/tsage/ringworld/ringworld_dialogs.h
parentb516e4f440fa853f129c2802733deebfd22566d1 (diff)
downloadscummvm-rg350-57f00ff1dc920c132bd821ac61fd5261c848493c.tar.gz
scummvm-rg350-57f00ff1dc920c132bd821ac61fd5261c848493c.tar.bz2
scummvm-rg350-57f00ff1dc920c132bd821ac61fd5261c848493c.zip
TSAGE: Added Ringworld specific dialogs file
Diffstat (limited to 'engines/tsage/ringworld/ringworld_dialogs.h')
-rw-r--r--engines/tsage/ringworld/ringworld_dialogs.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/engines/tsage/ringworld/ringworld_dialogs.h b/engines/tsage/ringworld/ringworld_dialogs.h
new file mode 100644
index 0000000000..11a8f10e70
--- /dev/null
+++ b/engines/tsage/ringworld/ringworld_dialogs.h
@@ -0,0 +1,70 @@
+/* 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.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef TSAGE_RINGWORLD_DIALOGS_H
+#define TSAGE_RINGWORLD_DIALOGS_H
+
+#include "gui/options.h"
+#include "tsage/events.h"
+#include "tsage/graphics.h"
+#include "common/list.h"
+#include "common/rect.h"
+#include "common/system.h"
+
+namespace TsAGE {
+
+namespace Ringworld {
+
+class RightClickButton : public GfxButton {
+private:
+ GfxSurface *_savedButton;
+public:
+ int _buttonIndex;
+
+ RightClickButton(int buttonIndex, int xp, int yp);
+ ~RightClickButton() { delete _savedButton; }
+
+ virtual void highlight();
+};
+
+class RightClickDialog : public GfxDialog {
+private:
+ GfxSurface _surface;
+ RightClickButton *_highlightedButton;
+ int _selectedAction;
+ RightClickButton _walkButton, _lookButton, _useButton, _talkButton, _inventoryButton, _optionsButton;
+
+ RightClickButton *findButton(const Common::Point &pt);
+public:
+ RightClickDialog();
+ ~RightClickDialog();
+
+ virtual void draw();
+ virtual bool process(Event &event);
+ void execute();
+};
+
+} // End of namespace Ringworld
+
+} // End of namespace TsAGE
+
+#endif