summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/include/eventhandler_shared.hch
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-12-16 16:16:27 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-12-16 16:16:27 (GMT)
commit65c0462a588b478971d6285e276fcd8f6a86710b (patch)
treed541aa5373880e2add2633243b235b3a0cb7e8f1 /Graphic_Equalizer/include/eventhandler_shared.hch
parent4aeb0ee8b0603e2e3b1c4d42412a3c3b467089b0 (diff)
downloadTASS-65c0462a588b478971d6285e276fcd8f6a86710b.zip
TASS-65c0462a588b478971d6285e276fcd8f6a86710b.tar.gz
TASS-65c0462a588b478971d6285e276fcd8f6a86710b.tar.bz2
Added more operational modes.
Stop starting at 0 with modes. added states for demo and reset buttons to make them look fancy. added index for address offset lookup table.
Diffstat (limited to 'Graphic_Equalizer/include/eventhandler_shared.hch')
-rw-r--r--Graphic_Equalizer/include/eventhandler_shared.hch11
1 files changed, 8 insertions, 3 deletions
diff --git a/Graphic_Equalizer/include/eventhandler_shared.hch b/Graphic_Equalizer/include/eventhandler_shared.hch
index d21cff4..75b688c 100644
--- a/Graphic_Equalizer/include/eventhandler_shared.hch
+++ b/Graphic_Equalizer/include/eventhandler_shared.hch
@@ -31,15 +31,20 @@ typedef struct {
unsigned 10 active_preset;
unsigned 10 volume_position;
unsigned 8 mask;
+ unsigned 5 address_offset_index;
unsigned 4 mode;
unsigned 4 equalizer_mode;
+ unsigned 1 button_demo_state;
+ unsigned 1 button_reset_state;
unsigned 1 locked_display;
} events_t;
-#define MODE_SKIN 0x00
-#define MODE_HELP 0x01
-#define MODE_GRAPH 0x02
+#define MODE_SKIN 0x01
+#define MODE_HELP 0x02
+#define MODE_GRAPH 0x03
+#define MODE_ABOUT 0x04
+#define MODE_ABOUT_BUSY 0x05