summaryrefslogtreecommitdiffstats
path: root/Gui/cfg.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-20 12:42:16 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-20 12:42:16 +0000
commit90b278bfaa7dcc0fa26d81cc033fc4cc1c3801a4 (patch)
treea6e2dd81d6efb35c87d3c4246be345434dffcd26 /Gui/cfg.c
parentb45f146c371817e0056af61a8dadbcfb54399271 (diff)
downloadmpv-90b278bfaa7dcc0fa26d81cc033fc4cc1c3801a4.tar.bz2
mpv-90b278bfaa7dcc0fa26d81cc033fc4cc1c3801a4.tar.xz
many 10l for me ...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9626 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/cfg.c')
-rw-r--r--Gui/cfg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/Gui/cfg.c b/Gui/cfg.c
index c32f058cf3..2160b0c01e 100644
--- a/Gui/cfg.c
+++ b/Gui/cfg.c
@@ -60,6 +60,11 @@ int gtkLoadFullscreen = 0;
int gtkShowVideoWindow = 1;
int gtkEnablePlayBar = 1;
+int gui_save_pos = 1;
+int gui_main_pos_x = -2;
+int gui_main_pos_y = -2;
+int gui_sub_pos_x = -1;
+int gui_sub_pos_y = -1;
// ---
extern char * get_path( char * filename );
@@ -144,6 +149,12 @@ static config_t gui_opts[] =
{ "gui_skin",&skinName,CONF_TYPE_STRING,0,0,0,NULL },
+ { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG,0,0,1,NULL},
+ { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT,0,0,0,NULL},
+ { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT,0,0,0,NULL},
+ { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT,0,0,0,NULL},
+ { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT,0,0,0,NULL},
+
{ "equ_channel_1",&gtkEquChannel1,CONF_TYPE_STRING,0,0,0,NULL },
{ "equ_channel_2",&gtkEquChannel2,CONF_TYPE_STRING,0,0,0,NULL },
{ "equ_channel_3",&gtkEquChannel3,CONF_TYPE_STRING,0,0,0,NULL },