aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/helpers.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-02 14:41:17 +0000
committerMartin Kiewitz2010-02-02 14:41:17 +0000
commitb0208e7306c40a41b0e5b6365f0c49f8aebe3b94 (patch)
tree3fcc6a602fc0735aac1772de3a1384a1b6736236 /engines/sci/graphics/helpers.h
parent448ef35fe17645da52c10db7658fe39080359afe (diff)
downloadscummvm-rg350-b0208e7306c40a41b0e5b6365f0c49f8aebe3b94.tar.gz
scummvm-rg350-b0208e7306c40a41b0e5b6365f0c49f8aebe3b94.tar.bz2
scummvm-rg350-b0208e7306c40a41b0e5b6365f0c49f8aebe3b94.zip
SCI: moving structs/enums from helpers to animate/controls
svn-id: r47813
Diffstat (limited to 'engines/sci/graphics/helpers.h')
-rw-r--r--engines/sci/graphics/helpers.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/engines/sci/graphics/helpers.h b/engines/sci/graphics/helpers.h
index 7db6fa0d4a..f0ffecfb59 100644
--- a/engines/sci/graphics/helpers.h
+++ b/engines/sci/graphics/helpers.h
@@ -79,24 +79,6 @@ struct Window : public Port {
}
};
-struct AnimateEntry {
- reg_t object;
- GuiResourceId viewId;
- int16 loopNo;
- int16 celNo;
- int16 paletteNo;
- int16 x, y, z;
- int16 priority;
- uint16 signal;
- uint16 scaleSignal;
- int16 scaleX;
- int16 scaleY;
- Common::Rect celRect;
- bool showBitsFlag;
- reg_t castHandle;
-};
-typedef Common::List<AnimateEntry *> AnimateList;
-
struct Color {
byte used;
byte r, g, b;
@@ -114,14 +96,6 @@ struct PalSchedule {
uint32 schedule;
};
-/** Button and frame control flags. */
-enum controlStateFlags {
- kControlStateEnabled = 0x0001, ///< 0001 - enabled buttons (used by the interpreter)
- kControlStateDisabled = 0x0004, ///< 0010 - grayed out buttons (used by the interpreter)
- kControlStateFramed = 0x0008, ///< 1000 - widgets surrounded by a frame (used by the interpreter)
- kControlStateDitherFramed = 0x1000 ///< 0001 0000 0000 0000 - widgets surrounded by a dithered frame (used in kgraphics)
-};
-
enum ViewType {
kViewUnknown,
kViewEga,