summaryrefslogtreecommitdiffstats
path: root/Gui/app.h
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-17 22:39:43 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-17 22:39:43 +0000
commit4ae9c5c307d951bf995434cfd6948c7a716516e7 (patch)
tree2f202c794043dca9ba4c4ddeae19c6adbd9c6c48 /Gui/app.h
parentd97e2769db3d66f3abc3a3ecb307309161f80379 (diff)
downloadmpv-4ae9c5c307d951bf995434cfd6948c7a716516e7.tar.bz2
mpv-4ae9c5c307d951bf995434cfd6948c7a716516e7.tar.xz
- add playbar
- add vpotmeter - fix gtk menu's pixel bug - fix some critical (10l) bug git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8974 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/app.h')
-rw-r--r--Gui/app.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/Gui/app.h b/Gui/app.h
index 5441630c11..d0afd320e4 100644
--- a/Gui/app.h
+++ b/Gui/app.h
@@ -134,6 +134,8 @@ typedef struct
char * label;
// ---
int event;
+// ---
+ int R,G,B;
} wItem;
typedef struct
@@ -144,16 +146,11 @@ typedef struct
wItem sub;
wsTWindow subWindow;
- int subR,subG,subB;
wItem bar;
wsTWindow barWindow;
- int barR,barG,barB;
int barIsPresent;
-
- wItem eq;
- wsTWindow eqWindow;
-
+
wItem menuBase;
wItem menuSelected;
wsTWindow menuWindow;
@@ -164,7 +161,10 @@ typedef struct
wItem Items[256];
// ---
int NumberOfMenuItems;
- wItem MenuItems[32];
+ wItem MenuItems[64];
+// ---
+ int NumberOfBarItems;
+ wItem barItems[32];
} listItems;
extern listItems appMPlayer;