aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/controls.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/controls.h')
-rw-r--r--engines/sci/graphics/controls.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sci/graphics/controls.h b/engines/sci/graphics/controls.h
index 5f2194f258..1c4b7e3766 100644
--- a/engines/sci/graphics/controls.h
+++ b/engines/sci/graphics/controls.h
@@ -28,6 +28,12 @@
namespace Sci {
+enum controlStateFlags {
+ kControlStateEnabled = 0x0001, ///< 0001 - enabled buttons
+ kControlStateDisabled = 0x0004, ///< 0010 - grayed out buttons
+ kControlStateFramed = 0x0008, ///< 1000 - widgets surrounded by a frame
+};
+
class GfxPorts;
class GfxPaint16;
class Font;