annotate Gui/mplayer/gtk/opts.c @ 15755:b1b06adc5cd3

Fix email address
author ranma
date Sun, 19 Jun 2005 09:17:44 +0000
parents e2b2ab284a9a
children 67e2129e0e6b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
2 #include <sys/types.h>
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
3 #include <sys/stat.h>
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
4 #include <unistd.h>
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
5 #include <string.h>
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
6
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
7 #include <gdk/gdkkeysyms.h>
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
8 #include <gtk/gtk.h>
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
9
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
10 #include "../../../config.h"
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
11 #include "../../../help_mp.h"
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
12 #include "../../../mixer.h"
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
13 #include "../../../libao2/audio_out.h"
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
14 #include "../../../libvo/video_out.h"
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
15
9031
pontscho
parents: 8973
diff changeset
16 #include "../../app.h"
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
17 #include "../../cfg.h"
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
18 #include "../../interface.h"
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
19 #include "../widgets.h"
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
20 #include "opts.h"
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
21 #include "fs.h"
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
22 #include "common.h"
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
23
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
24 typedef struct sh_video_t sh_video_t;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
25 typedef struct sh_audio_t sh_audio_t;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
26
7473
bd7a539178a3 compilation fix, patch by Sidik Isani <lksi@cfht.hawaii.edu>
arpi
parents: 7415
diff changeset
27 // for mpcodecs_[av]d_drivers:
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
28 #include "../../../libmpcodecs/vd.h"
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
29 #include "../../../libmpcodecs/ad.h"
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
30
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
31 GtkWidget * Preferences = NULL;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
32 static GtkWidget * AConfig;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
33 static GtkWidget * VConfig;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
34 //static GtkWidget * BLoadSubtitle;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
35 static GtkWidget * BLoadFont;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
36 static GtkWidget * BOk;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
37 static GtkWidget * BCancel;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
38
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
39 static GtkWidget * CLADrivers;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
40 static GtkWidget * CLVDrivers;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
41
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
42 //static GtkWidget * ESubtitleName;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
43 GtkWidget * prEFontName;
8933
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
44 GtkWidget * prEDVDDevice;
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
45 GtkWidget * prECDRomDevice;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
46 static GtkWidget * EVFM;
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
47 static GtkWidget * EAFM;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
48
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
49 static GtkWidget * CBVFM;
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
50 static GtkWidget * CBAFM;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
51 static GtkWidget * CBAudioEqualizer;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
52 //static GtkWidget * CBSurround;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
53 static GtkWidget * CBExtraStereo;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
54 static GtkWidget * CBNormalize;
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
55 static GtkWidget * CBSoftwareMixer;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
56 static GtkWidget * CBDoubleBuffer;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
57 static GtkWidget * CBDR;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
58 static GtkWidget * CBFramedrop;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
59 static GtkWidget * CBHFramedrop;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
60 //static GtkWidget * CBFullScreen;
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
61 static GtkWidget * CBShowVideoWindow;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
62 static GtkWidget * CBNonInterlaved;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
63 static GtkWidget * CBIndex;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
64 static GtkWidget * CBFlip;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
65 static GtkWidget * CBNoAutoSub;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
66 static GtkWidget * CBSubUnicode;
8717
2df4e9d9922d add overlapping to preferences
pontscho
parents: 8714
diff changeset
67 static GtkWidget * CBSubOverlap;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
68 static GtkWidget * CBDumpMPSub;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
69 static GtkWidget * CBDumpSrt;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
70 static GtkWidget * CBPostprocess;
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
71 static GtkWidget * CBCache;
7538
c7b61f316edf - add "start in fullscreen" function
pontscho
parents: 7535
diff changeset
72 static GtkWidget * CBLoadFullscreen;
9625
bc24dd70c6e2 many 10l for me ...
pontscho
parents: 9351
diff changeset
73 static GtkWidget * CBSaveWinPos;
8308
6ea0feac9d42 add stop_xscreensaver
pontscho
parents: 8299
diff changeset
74 static GtkWidget * CBStopXScreenSaver;
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
75 static GtkWidget * CBPlayBar;
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
76
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
77 static GtkWidget * SBCache;
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
78 static GtkAdjustment * SBCacheadj;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
79
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
80 static GtkWidget * CBAutoSync;
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
81 static GtkWidget * SBAutoSync;
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
82 static GtkAdjustment * SBAutoSyncadj;
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
83
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
84 static GtkWidget * RBOSDNone;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
85 static GtkWidget * RBOSDTandP;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
86 static GtkWidget * RBOSDIndicator;
8886
d32accfed8e6 add osd_level=3 support
pontscho
parents: 8719
diff changeset
87 static GtkWidget * RBOSDTPTT;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
88
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
89 static GtkWidget * HSAudioDelay;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
90 static GtkWidget * HSExtraStereoMul;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
91 static GtkWidget * HSPanscan;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
92 static GtkWidget * HSSubDelay;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
93 static GtkWidget * HSSubPosition;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
94 static GtkWidget * HSSubFPS;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
95 static GtkWidget * HSPPQuality;
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
96 static GtkWidget * HSFPS;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
97
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
98 static GtkAdjustment * HSExtraStereoMuladj, * HSAudioDelayadj, * HSPanscanadj, * HSSubDelayadj;
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
99 static GtkAdjustment * HSSubPositionadj, * HSSubFPSadj, * HSPPQualityadj, * HSFPSadj;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
100
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
101 #ifndef HAVE_FREETYPE
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
102 static GtkWidget * HSFontFactor;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
103 static GtkAdjustment * HSFontFactoradj;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
104 #else
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
105 static GtkWidget * HSFontBlur, * HSFontOutLine, * HSFontTextScale, * HSFontOSDScale;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
106 static GtkAdjustment * HSFontBluradj, * HSFontOutLineadj, * HSFontTextScaleadj, * HSFontOSDScaleadj;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
107 static GtkWidget * CBFontEncoding, * EFontEncoding;
9351
pontscho
parents: 9346
diff changeset
108 static GtkWidget * RBFontNoAutoScale, * RBFontAutoScaleWidth, * RBFontAutoScaleHeight, * RBFontAutoScaleDiagonal;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
109 //static GtkWidget * AutoScale;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
110 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
111
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
112 #ifdef USE_ICONV
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
113 static GtkWidget * CBSubEncoding, * ESubEncoding;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
114 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
115
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
116 #if defined( HAVE_FREETYPE ) || defined( USE_ICONV )
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
117 static struct
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
118 {
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
119 char * name;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
120 char * comment;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
121 } lEncoding[] =
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
122 {
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
123 { "unicode", MSGTR_PREFERENCES_FontEncoding1 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
124 { "iso-8859-1", MSGTR_PREFERENCES_FontEncoding2 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
125 { "iso-8859-15", MSGTR_PREFERENCES_FontEncoding3 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
126 { "iso-8859-2", MSGTR_PREFERENCES_FontEncoding4 },
10182
ec396687af24 [PATCH] CP1250 encoding to GUI and UTF-8 to font.desc
pontscho
parents: 9625
diff changeset
127 { "cp1250", MSGTR_PREFERENCES_FontEncoding22},
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
128 { "iso-8859-3", MSGTR_PREFERENCES_FontEncoding5 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
129 { "iso-8859-4", MSGTR_PREFERENCES_FontEncoding6 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
130 { "iso-8859-5", MSGTR_PREFERENCES_FontEncoding7 },
7415
2bb518d6a5b2 adding CP1251 to GUI's Font encoding for FreeType
iive
parents: 7217
diff changeset
131 { "cp1251", MSGTR_PREFERENCES_FontEncoding21},
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
132 { "iso-8859-6", MSGTR_PREFERENCES_FontEncoding8 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
133 { "iso-8859-7", MSGTR_PREFERENCES_FontEncoding9 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
134 { "iso-8859-9", MSGTR_PREFERENCES_FontEncoding10 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
135 { "iso-8859-13", MSGTR_PREFERENCES_FontEncoding11 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
136 { "iso-8859-14", MSGTR_PREFERENCES_FontEncoding12 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
137 { "iso-8859-8", MSGTR_PREFERENCES_FontEncoding13 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
138 { "koi8-r", MSGTR_PREFERENCES_FontEncoding14 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
139 { "koi8-u/ru", MSGTR_PREFERENCES_FontEncoding15 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
140 { "cp936", MSGTR_PREFERENCES_FontEncoding16 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
141 { "big5", MSGTR_PREFERENCES_FontEncoding17 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
142 { "shift-jis", MSGTR_PREFERENCES_FontEncoding18 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
143 { "cp949", MSGTR_PREFERENCES_FontEncoding19 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
144 { "cp874", MSGTR_PREFERENCES_FontEncoding20 },
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
145 { NULL,NULL }
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
146 };
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
147 char * lCEncoding = NULL;
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
148 char * lSEncoding = NULL;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
149 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
150
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
151 static int old_audio_driver = 0;
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
152 static char * ao_driver[3];
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
153 static char * vo_driver[3];
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
154 static int old_video_driver = 0;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
155
12924
65f49a82ac94 100l, fixes DXR3 compile problems caused by my last patch.
reimar
parents: 12918
diff changeset
156 #ifdef HAVE_DXR3
65f49a82ac94 100l, fixes DXR3 compile problems caused by my last patch.
reimar
parents: 12918
diff changeset
157 void ShowDXR3Config( void );
65f49a82ac94 100l, fixes DXR3 compile problems caused by my last patch.
reimar
parents: 12918
diff changeset
158 void HideDXR3Config( void );
65f49a82ac94 100l, fixes DXR3 compile problems caused by my last patch.
reimar
parents: 12918
diff changeset
159 #endif
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
160 void ShowAudioConfig();
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
161 void HideAudioConfig();
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
162
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
163 static gboolean prHScaler( GtkWidget * widget,GdkEventMotion * event,gpointer user_data );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
164 static void prToggled( GtkToggleButton * togglebutton,gpointer user_data );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
165 static void prCListRow( GtkCList * clist,gint row,gint column,GdkEvent * event,gpointer user_data );
9075
5e51d85f7a4d fix compilation error when HAVE_FREETYPE isn't defined
colin
parents: 9056
diff changeset
166 #if defined( HAVE_FREETYPE ) || defined( USE_ICONV )
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
167 static void prEntry( GtkContainer * container,gpointer user_data );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
168 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
169
8308
6ea0feac9d42 add stop_xscreensaver
pontscho
parents: 8299
diff changeset
170 extern int stop_xscreensaver;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
171
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
172 void ShowPreferences( void )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
173 {
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
174 if ( Preferences ) gtkActive( Preferences );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
175 else Preferences=create_Preferences();
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
176
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
177 // -- 1. page
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
178 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBAudioEqualizer ),gtkEnableAudioEqualizer );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
179 #if 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
180 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBSurround ),gtkAOSurround );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
181 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
182 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBExtraStereo ),gtkAOExtraStereo );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
183 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBNormalize ),gtkAONorm );
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
184 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBSoftwareMixer ),soft_vol );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
185 gtk_adjustment_set_value( HSExtraStereoMuladj,gtkAOExtraStereoMul );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
186 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
187 int i = 0;
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
188 char * tmp[3]; tmp[2]="";
8181
pontscho
parents: 8173
diff changeset
189 old_audio_driver=-1;
8484
9ea5f18a7957 - fix (?) "mixer bug"
pontscho
parents: 8311
diff changeset
190 if ( CLADrivers ) gtk_clist_clear( GTK_CLIST( CLADrivers ) );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
191 while ( audio_out_drivers[i] )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
192 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
193 const ao_info_t *info = audio_out_drivers[i++]->info;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
194 if ( !strcmp( info->short_name,"plugin" ) ) continue;
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
195 if ( audio_driver_list )
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
196 {
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
197 char * name = gstrdup( audio_driver_list[0] );
8284
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8276
diff changeset
198 char * sep = gstrchr( audio_driver_list[0],':' );
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
199 if ( sep ) *sep=0;
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
200 if ( !gstrcmp( name,(char *)info->short_name ) ) old_audio_driver=i - 1;
8284
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8276
diff changeset
201 free( name );
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
202 }
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
203 tmp[0]=(char *)info->short_name; tmp[1]=(char *)info->name; gtk_clist_append( GTK_CLIST( CLADrivers ),tmp );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
204 }
8181
pontscho
parents: 8173
diff changeset
205 if ( old_audio_driver > -1 )
pontscho
parents: 8173
diff changeset
206 {
pontscho
parents: 8173
diff changeset
207 gtk_clist_select_row( GTK_CLIST( CLADrivers ),old_audio_driver,0 );
pontscho
parents: 8173
diff changeset
208 gtk_clist_get_text( GTK_CLIST( CLADrivers ),old_audio_driver,0,(char **)&ao_driver );
pontscho
parents: 8173
diff changeset
209 gtk_widget_set_sensitive( AConfig,FALSE );
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
210 if ( !strncmp( ao_driver[0],"oss",3 ) ||
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
211 !strncmp( ao_driver[0],"alsa",4 ) ||
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
212 !strncmp( ao_driver[0],"esd",3 ) ||
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
213 !strncmp( ao_driver[0],"sdl",3 ) )
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
214 gtk_widget_set_sensitive( AConfig,TRUE );
8181
pontscho
parents: 8173
diff changeset
215 }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
216 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
217
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
218 // -- 2. page
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
219 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBDoubleBuffer ),vo_doublebuffering );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
220 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBDR ),vo_directrendering );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
221
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
222 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBFramedrop ),FALSE );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
223 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBHFramedrop ),FALSE );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
224 switch ( frame_dropping )
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
225 {
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
226 case 2: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBHFramedrop ),TRUE );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
227 case 1: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBFramedrop ),TRUE );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
228 }
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
229
7194
6df5abe8d967 fix flip handling bug
alex
parents: 7187
diff changeset
230 if (flip != -1)
6df5abe8d967 fix flip handling bug
alex
parents: 7187
diff changeset
231 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBFlip ),flip );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
232 gtk_adjustment_set_value( HSPanscanadj,vo_panscan );
7582
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
233
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
234 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
235 int i = 0, c = 0;
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
236 char * tmp[3]; tmp[2]="";
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
237 old_video_driver=0;
8484
9ea5f18a7957 - fix (?) "mixer bug"
pontscho
parents: 8311
diff changeset
238 if ( CLVDrivers ) gtk_clist_clear( GTK_CLIST( CLVDrivers ) );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
239 while ( video_out_drivers[i] )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
240 if ( video_out_drivers[i++]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
241 {
8151
76b693c15c47 updating
pontscho
parents: 8043
diff changeset
242 if ( video_driver_list && !gstrcmp( video_driver_list[0],(char *)video_out_drivers[i - 1]->info->short_name ) ) old_video_driver=c; c++;
8154
3dd948f5d012 size optim
pontscho
parents: 8151
diff changeset
243 tmp[0]=(char *)video_out_drivers[i - 1]->info->short_name; tmp[1]=(char *)video_out_drivers[i - 1]->info->name;
3dd948f5d012 size optim
pontscho
parents: 8151
diff changeset
244 gtk_clist_append( GTK_CLIST( CLVDrivers ),tmp );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
245 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
246 gtk_clist_select_row( GTK_CLIST( CLVDrivers ),old_video_driver,0 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
247 gtk_clist_get_text( GTK_CLIST( CLVDrivers ),old_video_driver,0,(char **)&vo_driver );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
248 gtk_widget_set_sensitive( VConfig,FALSE );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
249 #ifdef HAVE_DXR3
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
250 if ( !gstrcmp( vo_driver[0],"dxr3" ) ) gtk_widget_set_sensitive( VConfig,TRUE );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
251 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
252 }
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
253
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
254 gtk_adjustment_set_value( HSFPSadj,force_fps );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
255
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
256 // -- 3. page
8717
2df4e9d9922d add overlapping to preferences
pontscho
parents: 8714
diff changeset
257 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBSubOverlap ),suboverlap_enabled );
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
258 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBNoAutoSub ),!sub_auto );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
259 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBDumpMPSub ),gtkSubDumpMPSub );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
260 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBDumpSrt ),gtkSubDumpSrt );
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
261 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBSubUnicode ),sub_unicode );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
262 gtk_adjustment_set_value( HSSubDelayadj,sub_delay );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
263 gtk_adjustment_set_value( HSSubFPSadj,sub_fps );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
264 gtk_adjustment_set_value( HSSubPositionadj,sub_pos );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
265 switch ( osd_level )
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
266 {
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
267 case 0: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBOSDNone ),TRUE ); break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
268 case 1: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBOSDIndicator ),TRUE ); break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
269 case 2: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBOSDTandP ),TRUE ); break;
8886
d32accfed8e6 add osd_level=3 support
pontscho
parents: 8719
diff changeset
270 case 3: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBOSDTPTT ),TRUE ); break;
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
271 }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
272 #if 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
273 if ( guiIntfStruct.Subtitlename ) gtk_entry_set_text( GTK_ENTRY( ESubtitleName ),guiIntfStruct.Subtitlename );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
274 #endif
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
275
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
276 #ifdef USE_ICONV
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
277 if ( sub_cp )
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
278 {
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
279 int i;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
280 for ( i=0;lEncoding[i].name;i++ )
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
281 if ( !gstrcmp( sub_cp,lEncoding[i].name ) ) break;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
282 if ( lEncoding[i].name ) lSEncoding=lEncoding[i].comment;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
283 gtk_entry_set_text( GTK_ENTRY( ESubEncoding ),lSEncoding );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
284 }
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
285 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
286
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
287 // --- 4. page
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
288 // font ...
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
289 if ( font_name ) gtk_entry_set_text( GTK_ENTRY( prEFontName ),font_name );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
290 #ifndef HAVE_FREETYPE
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
291 gtk_adjustment_set_value( HSFontFactoradj,font_factor );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
292 #else
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
293 gtk_adjustment_set_value( HSFontBluradj,( subtitle_font_radius / 8.0f ) * 100.0f );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
294 gtk_adjustment_set_value( HSFontOutLineadj,( subtitle_font_thickness / 8.0f ) * 100.0f );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
295 gtk_adjustment_set_value( HSFontTextScaleadj,text_font_scale_factor );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
296 gtk_adjustment_set_value( HSFontOSDScaleadj,osd_font_scale_factor );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
297 if ( subtitle_font_encoding )
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
298 {
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
299 int i;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
300 for ( i=0;lEncoding[i].name;i++ )
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
301 if ( !gstrcmp( subtitle_font_encoding,lEncoding[i].name ) ) break;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
302 if ( lEncoding[i].name ) lCEncoding=lEncoding[i].comment;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
303 gtk_entry_set_text( GTK_ENTRY( EFontEncoding ),lCEncoding );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
304 }
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
305 switch ( subtitle_autoscale )
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
306 {
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
307 case 0: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBFontNoAutoScale ),TRUE ); break;
9351
pontscho
parents: 9346
diff changeset
308 case 1: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBFontAutoScaleHeight ),TRUE ); break;
9346
eb760cafaf75 minor fixes for font autoscaling
henry
parents: 9303
diff changeset
309 case 2: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBFontAutoScaleWidth ),TRUE ); break;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
310 case 3: gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBFontAutoScaleDiagonal ),TRUE ); break;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
311 }
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
312 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
313
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
314 // -- 5. page
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
315 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBNonInterlaved ),force_ni );
9259
1a21ce1da8d8 fix idx
pontscho
parents: 9202
diff changeset
316 if ( index_mode == 1 ) gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBIndex ),1 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
317 {
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
318 int i;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
319 GList * Items = NULL;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
320 char * name = NULL;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
321
7203
69cc665855dc - add None to audio/video family selection
pontscho
parents: 7194
diff changeset
322 Items=g_list_append( Items,MSGTR_PREFERENCES_None );
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
323 for( i=0;mpcodecs_vd_drivers[i];i++ )
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
324 {
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
325 Items=g_list_append( Items,(char *)mpcodecs_vd_drivers[i]->info->name );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
326 if ( video_fm_list && !gstrcmp( video_fm_list[0],(char *)mpcodecs_vd_drivers[i]->info->short_name ) ) name=(char *)mpcodecs_vd_drivers[i]->info->name;
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
327 }
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
328 gtk_combo_set_popdown_strings( GTK_COMBO( CBVFM ),Items );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
329 g_list_free( Items );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
330 if ( name ) gtk_entry_set_text( GTK_ENTRY( EVFM ),name );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
331 }
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
332
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
333 {
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
334 int i;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
335 GList * Items = NULL;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
336 char * name = NULL;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
337
7203
69cc665855dc - add None to audio/video family selection
pontscho
parents: 7194
diff changeset
338 Items=g_list_append( Items,MSGTR_PREFERENCES_None );
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
339 for( i=0;mpcodecs_ad_drivers[i];i++ )
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
340 {
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
341 Items=g_list_append( Items,(char *)mpcodecs_ad_drivers[i]->info->name );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
342 if ( audio_fm_list && !gstrcmp( audio_fm_list[0],(char *)mpcodecs_ad_drivers[i]->info->short_name ) ) name=(char *)mpcodecs_ad_drivers[i]->info->name;
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
343 }
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
344 gtk_combo_set_popdown_strings( GTK_COMBO( CBAFM ),Items );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
345 g_list_free( Items );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
346 if ( name ) gtk_entry_set_text( GTK_ENTRY( EAFM ),name );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
347 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
348
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
349 // --- 6. page
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
350 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBPostprocess ),gtkVopPP );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
351 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBLoadFullscreen ),gtkLoadFullscreen );
9625
bc24dd70c6e2 many 10l for me ...
pontscho
parents: 9351
diff changeset
352 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBSaveWinPos ),gui_save_pos );
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
353 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBShowVideoWindow ),gtkShowVideoWindow );
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
354 if ( !gtkShowVideoWindow )
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
355 {
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
356 gtk_widget_set_sensitive( CBLoadFullscreen,FALSE );
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
357 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBLoadFullscreen ),0 );
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
358 }
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
359 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBStopXScreenSaver ),stop_xscreensaver );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
360 gtk_adjustment_set_value( HSPPQualityadj,auto_quality );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
361
9031
pontscho
parents: 8973
diff changeset
362 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBPlayBar ),gtkEnablePlayBar );
pontscho
parents: 8973
diff changeset
363 if ( !appMPlayer.barIsPresent )
pontscho
parents: 8973
diff changeset
364 {
pontscho
parents: 8973
diff changeset
365 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBPlayBar ),0 );
pontscho
parents: 8973
diff changeset
366 gtk_widget_set_sensitive( CBPlayBar,FALSE );
pontscho
parents: 8973
diff changeset
367 }
pontscho
parents: 8973
diff changeset
368
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
369 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBCache ),0 );
8284
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8276
diff changeset
370 gtk_adjustment_set_value( SBCacheadj,(float)gtkCacheSize );
f7d0ac887455 cache (buzeralas)
pontscho
parents: 8276
diff changeset
371 if ( !gtkCacheOn ) gtk_widget_set_sensitive( SBCache,FALSE );
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
372 else gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBCache ),TRUE );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
373
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
374 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBAutoSync ),0 );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
375 gtk_adjustment_set_value( SBAutoSyncadj,(float)gtkAutoSync );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
376 if ( !gtkAutoSyncOn ) gtk_widget_set_sensitive( SBAutoSync,FALSE );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
377 else gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBAutoSync ),TRUE );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
378
8933
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
379 if ( dvd_device ) gtk_entry_set_text( GTK_ENTRY( prEDVDDevice ),dvd_device );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
380 else gtk_entry_set_text( GTK_ENTRY( prEDVDDevice ),DEFAULT_DVD_DEVICE );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
381 if ( cdrom_device ) gtk_entry_set_text( GTK_ENTRY( prECDRomDevice ),cdrom_device );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
382 else gtk_entry_set_text( GTK_ENTRY( prECDRomDevice ),DEFAULT_CDROM_DEVICE );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
383
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
384 // -- disables
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
385 #ifndef USE_SUB
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
386 gtk_widget_set_sensitive( AConfig,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
387 gtk_widget_set_sensitive( CBNoAutoSub,FALSE );
8717
2df4e9d9922d add overlapping to preferences
pontscho
parents: 8714
diff changeset
388 gtk_widget_set_sensitive( CBSubOverlap,FALSE );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
389 gtk_widget_set_sensitive( CBSubUnicode,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
390 gtk_widget_set_sensitive( CBDumpMPSub,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
391 gtk_widget_set_sensitive( CBDumpSrt,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
392 gtk_widget_set_sensitive( HSSubDelay,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
393 gtk_widget_set_sensitive( HSSubPosition,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
394 gtk_widget_set_sensitive( HSSubFPS,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
395 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
396
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
397 #ifndef USE_OSD
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
398 gtk_widget_set_sensitive( RBOSDNone,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
399 gtk_widget_set_sensitive( RBOSDTandP,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
400 gtk_widget_set_sensitive( RBOSDIndicator,FALSE );
8886
d32accfed8e6 add osd_level=3 support
pontscho
parents: 8719
diff changeset
401 gtk_widget_set_sensitive( RBOSDTPTT,FALSE );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
402 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
403
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
404 #if !defined( USE_OSD ) && !defined( USE_SUB )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
405 gtk_widget_set_sensitive( HSFontFactor,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
406 gtk_widget_set_sensitive( prEFontName,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
407 gtk_widget_set_sensitive( BLoadFont,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
408 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
409
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
410 // -- signals
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
411 gtk_signal_connect( GTK_OBJECT( CBExtraStereo ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)0 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
412 gtk_signal_connect( GTK_OBJECT( CBNormalize ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)1 );
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
413 gtk_signal_connect( GTK_OBJECT( CBSoftwareMixer ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)1 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
414 gtk_signal_connect( GTK_OBJECT( CBAudioEqualizer ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)2 );
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
415 gtk_signal_connect( GTK_OBJECT( CBShowVideoWindow ),"toggled",GTK_SIGNAL_FUNC( prToggled ), (void*)3 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
416 #ifdef HAVE_FREETYPE
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
417 gtk_signal_connect( GTK_OBJECT( RBFontNoAutoScale ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)4 );
9346
eb760cafaf75 minor fixes for font autoscaling
henry
parents: 9303
diff changeset
418 gtk_signal_connect( GTK_OBJECT( RBFontAutoScaleHeight ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)5 );
9351
pontscho
parents: 9346
diff changeset
419 gtk_signal_connect( GTK_OBJECT( RBFontAutoScaleWidth ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)6 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
420 gtk_signal_connect( GTK_OBJECT( RBFontAutoScaleDiagonal ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)7 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
421 #endif
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
422 gtk_signal_connect( GTK_OBJECT( CBCache ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)8);
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
423 gtk_signal_connect( GTK_OBJECT( CBAutoSync ),"toggled",GTK_SIGNAL_FUNC( prToggled ),(void*)9);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
424
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
425 gtk_signal_connect( GTK_OBJECT( HSExtraStereoMul ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)0 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
426 gtk_signal_connect( GTK_OBJECT( HSAudioDelay ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)1 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
427 gtk_signal_connect( GTK_OBJECT( HSPanscan ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)2 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
428 gtk_signal_connect( GTK_OBJECT( HSSubDelay ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)3 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
429 gtk_signal_connect( GTK_OBJECT( HSSubPosition ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)4 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
430 #ifndef HAVE_FREETYPE
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
431 gtk_signal_connect( GTK_OBJECT( HSFontFactor ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)5 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
432 #else
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
433 gtk_signal_connect( GTK_OBJECT( HSFontBlur ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)6 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
434 gtk_signal_connect( GTK_OBJECT( HSFontOutLine ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)7 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
435 gtk_signal_connect( GTK_OBJECT( HSFontTextScale ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)8 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
436 gtk_signal_connect( GTK_OBJECT( HSFontOSDScale ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)9 );
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
437 gtk_signal_connect( GTK_OBJECT( EFontEncoding ),"changed",GTK_SIGNAL_FUNC( prEntry ),(void *)0 );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
438 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
439 #ifdef USE_ICONV
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
440 gtk_signal_connect( GTK_OBJECT( ESubEncoding ),"changed",GTK_SIGNAL_FUNC( prEntry ),(void *)1 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
441 #endif
7751
27c9c440536f - dvd aspect changing bug - fixed
pontscho
parents: 7706
diff changeset
442 gtk_signal_connect( GTK_OBJECT( HSPPQuality ),"motion_notify_event",GTK_SIGNAL_FUNC( prHScaler ),(void*)10 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
443
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
444 gtk_signal_connect( GTK_OBJECT( CLADrivers ),"select_row",GTK_SIGNAL_FUNC( prCListRow ),(void*)0 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
445 gtk_signal_connect( GTK_OBJECT( CLVDrivers ),"select_row",GTK_SIGNAL_FUNC( prCListRow ),(void*)1 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
446
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
447 gtk_widget_show( Preferences );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
448 gtkSetLayer( Preferences );
9037
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
449 {
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
450 static int visible = 1;
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
451 if ( visible )
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
452 {
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
453 gtkMessageBox( GTK_MB_WARNING,MSGTR_PREFERENCES_Message );
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
454 visible=0;
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
455 }
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
456 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
457 }
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
458
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
459 void HidePreferences( void )
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
460 {
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
461 if ( !Preferences ) return;
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
462 gtk_widget_hide( Preferences );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
463 gtk_widget_destroy( Preferences );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
464 Preferences=NULL;
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
465 HideAudioConfig();
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
466 #ifdef HAVE_DXR3
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
467 HideDXR3Config();
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
468 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
469 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
470
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
471 #if defined( HAVE_FREETYPE ) || defined( USE_ICONV )
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
472 static void prEntry( GtkContainer * container,gpointer user_data )
9303
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
473 {
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
474 char * comment;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
475 int i;
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
476
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
477 switch( (int)user_data )
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
478 {
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
479 #ifdef HAVE_FREETYPE
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
480 case 0: // font encoding
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
481 comment=gtk_entry_get_text( GTK_ENTRY( EFontEncoding ) );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
482 for ( i=0;lEncoding[i].name;i++ )
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
483 if ( !gstrcmp( lEncoding[i].comment,comment ) ) break;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
484 if ( lEncoding[i].comment ) gtkSet( gtkSetFontEncoding,0,lEncoding[i].name );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
485 break;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
486 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
487 #ifdef USE_ICONV
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
488 case 1: // sub encoding
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
489 comment=gtk_entry_get_text( GTK_ENTRY( ESubEncoding ) );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
490 for ( i=0;lEncoding[i].name;i++ )
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
491 if ( !gstrcmp( lEncoding[i].comment,comment ) ) break;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
492 if ( lEncoding[i].comment ) gtkSet( gtkSetSubEncoding,0,lEncoding[i].name );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
493 else gtkSet( gtkSetSubEncoding,0,NULL );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
494 break;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
495 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
496 }
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
497 }
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
498 #endif
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
499
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
500 #define bAConfig 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
501 #define bVconfig 1
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
502 #define bOk 2
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
503 #define bCancel 3
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
504 #define bLSubtitle 4
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
505 #define bLFont 5
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
506
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
507 void prButton( GtkButton * button,gpointer user_data )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
508 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
509 switch ( (int)user_data )
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
510 {
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
511 case bOk:
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
512 // -- 1. page
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
513 gtkEnableAudioEqualizer=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBAudioEqualizer ) );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
514 gtkAOExtraStereo=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBExtraStereo ) );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
515 gtkAONorm=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBNormalize ) );
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
516 soft_vol=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBSoftwareMixer ) );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
517 gtkSet( gtkSetExtraStereo,HSExtraStereoMuladj->value,NULL );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
518 audio_delay=HSAudioDelayadj->value;
7582
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
519
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
520 gaddlist( &audio_driver_list,ao_driver[0] );
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
521 gaddlist( &video_driver_list,vo_driver[0] );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
522
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
523 // -- 2. page
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
524 vo_doublebuffering=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBDoubleBuffer ) );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
525 vo_directrendering=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBDR ) );
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
526
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
527 frame_dropping=0;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
528 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBFramedrop ) ) == TRUE ) frame_dropping=1;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
529 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBHFramedrop ) ) == TRUE ) frame_dropping=2;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
530
7705
844246b6c3bf last flip bug fixed
pontscho
parents: 7582
diff changeset
531 flip=-1;
844246b6c3bf last flip bug fixed
pontscho
parents: 7582
diff changeset
532 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBFlip ) ) ) flip=1;
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
533
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
534 force_fps=HSFPSadj->value;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
535
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
536 // -- 3. page
8717
2df4e9d9922d add overlapping to preferences
pontscho
parents: 8714
diff changeset
537 suboverlap_enabled=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBSubOverlap ) );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
538 sub_auto=!gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBNoAutoSub ) );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
539 gtkSubDumpMPSub=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBDumpMPSub ) );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
540 gtkSubDumpSrt=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBDumpSrt ) );
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
541 sub_unicode=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBSubUnicode ) );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
542 sub_delay=HSSubDelayadj->value;
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
543 sub_fps=HSSubFPSadj->value;
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
544 sub_pos=(int)HSSubPositionadj->value;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
545 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBOSDNone ) ) ) osd_level=0;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
546 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBOSDIndicator ) ) ) osd_level=1;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
547 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBOSDTandP ) ) ) osd_level=2;
8886
d32accfed8e6 add osd_level=3 support
pontscho
parents: 8719
diff changeset
548 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBOSDTPTT ) ) ) osd_level=3;
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
549
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
550
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
551 // --- 4. page
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
552 guiSetFilename( font_name,gtk_entry_get_text( GTK_ENTRY( prEFontName ) ) );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
553 #ifndef HAVE_FREETYPE
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
554 gtkSet( gtkSetFontFactor,HSFontFactoradj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
555 #else
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
556 gtkSet( gtkSetFontBlur,HSFontBluradj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
557 gtkSet( gtkSetFontOutLine,HSFontOutLineadj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
558 gtkSet( gtkSetFontTextScale,HSFontTextScaleadj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
559 gtkSet( gtkSetFontOSDScale,HSFontOSDScaleadj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
560 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBFontNoAutoScale ) ) ) gtkSet( gtkSetFontAutoScale,0,NULL );
9346
eb760cafaf75 minor fixes for font autoscaling
henry
parents: 9303
diff changeset
561 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBFontAutoScaleHeight ) ) ) gtkSet( gtkSetFontAutoScale,1,NULL );
9351
pontscho
parents: 9346
diff changeset
562 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBFontAutoScaleWidth ) ) ) gtkSet( gtkSetFontAutoScale,2,NULL );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
563 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBFontAutoScaleDiagonal ) ) ) gtkSet( gtkSetFontAutoScale,3,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
564 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
565
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
566 // -- 5. page
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 7009
diff changeset
567 force_ni=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBNonInterlaved ) );
9259
1a21ce1da8d8 fix idx
pontscho
parents: 9202
diff changeset
568 index_mode=-1;
1a21ce1da8d8 fix idx
pontscho
parents: 9202
diff changeset
569 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBIndex ) ) ) index_mode=1;
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
570
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
571 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
572 int i;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
573 char * tmp = gtk_entry_get_text( GTK_ENTRY( EVFM ) );
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
574 for( i=0;mpcodecs_vd_drivers[i];i++ )
7582
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
575 if ( !gstrcmp( tmp,(char *)mpcodecs_vd_drivers[i]->info->name ) )
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
576 { gaddlist( &video_fm_list,(char *)mpcodecs_vd_drivers[i]->info->short_name ); break; }
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
577 }
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
578
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
579 {
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
580 int i;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
581 char * tmp = gtk_entry_get_text( GTK_ENTRY( EAFM ) );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
582 for( i=0;mpcodecs_ad_drivers[i];i++ )
7582
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
583 if ( !gstrcmp( tmp,(char *)mpcodecs_ad_drivers[i]->info->name ) )
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7538
diff changeset
584 { gaddlist( &audio_fm_list,(char *)mpcodecs_ad_drivers[i]->info->short_name ); break; }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
585 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
586
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
587 // --- 6. page
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
588 gtkVopPP=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBPostprocess ) );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
589 gtkLoadFullscreen=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBLoadFullscreen ) );
9625
bc24dd70c6e2 many 10l for me ...
pontscho
parents: 9351
diff changeset
590 gui_save_pos=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBSaveWinPos ) );
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
591 gtkShowVideoWindow=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBShowVideoWindow ) );
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
592 stop_xscreensaver=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBStopXScreenSaver ) );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
593 gtkEnablePlayBar=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBPlayBar ) );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
594 gtkSet( gtkSetAutoq,HSPPQualityadj->value,NULL );
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
595
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
596 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBCache ) ) ) { gtkCacheSize=(int)SBCacheadj->value; gtkCacheOn=1; }
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
597 else gtkCacheOn=0;
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
598
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
599 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBAutoSync ) ) ) { gtkAutoSync=(int)SBAutoSyncadj->value; gtkAutoSyncOn=1; }
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
600 else gtkAutoSyncOn=0;
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
601
8933
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
602 guiSetFilename( dvd_device,gtk_entry_get_text( GTK_ENTRY( prEDVDDevice ) ) );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
603 guiSetFilename( cdrom_device,gtk_entry_get_text( GTK_ENTRY( prECDRomDevice ) ) );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
604
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
605 case bCancel:
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
606 HidePreferences();
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
607 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
608 case bAConfig:
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
609 if ( !ao_driver[0] ) break;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
610 gtk_widget_set_sensitive( AConfig,FALSE );
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
611 if ( !strncmp( ao_driver[0],"oss",3 ) ||
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
612 !strncmp( ao_driver[0],"alsa",4 ) ||
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
613 !strncmp( ao_driver[0],"esd",3 ) ||
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
614 !strncmp( ao_driver[0],"sdl",3 ) ) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
615 ShowAudioConfig();
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
616 gtk_widget_set_sensitive( AConfig,TRUE );
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
617 }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
618 break;
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
619 case bVconfig:
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
620 if ( !vo_driver[0] ) break;
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
621 gtk_widget_set_sensitive( VConfig,FALSE );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
622 #ifdef HAVE_DXR3
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
623 if ( !gstrcmp( vo_driver[0],"dxr3" ) ) { ShowDXR3Config(); gtk_widget_set_sensitive( VConfig,TRUE ); }
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
624 #endif
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
625 break;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
626 #if 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
627 case bLSubtitle:
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
628 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
629 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
630 case bLFont:
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
631 ShowFileSelect( fsFontSelector,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
632 gtkSetLayer( fsFileSelect );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
633 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
634 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
635 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
636
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
637 static gboolean prHScaler( GtkWidget * widget,GdkEventMotion * event,gpointer user_data )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
638 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
639 switch ( (int)user_data )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
640 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
641 case 0: // extra stereo coefficient
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
642 if ( !guiIntfStruct.Playing ) break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
643 gtkSet( gtkSetExtraStereo,HSExtraStereoMuladj->value,NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
644 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
645 case 1: // audio delay
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
646 audio_delay=HSAudioDelayadj->value;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
647 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
648 case 2: // panscan
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
649 gtkSet( gtkSetPanscan,HSPanscanadj->value,NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
650 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
651 case 3: // sub delay
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
652 sub_delay=HSSubDelayadj->value;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
653 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
654 case 4: // sub position
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
655 sub_pos=(int)HSSubPositionadj->value;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
656 break;
8154
3dd948f5d012 size optim
pontscho
parents: 8151
diff changeset
657 #ifndef HAVE_FREETYPE
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
658 case 5: // font factor
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
659 gtkSet( gtkSetFontFactor,HSFontFactoradj->value,NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
660 break;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
661 #else
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
662 case 6: // font blur
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
663 gtkSet( gtkSetFontBlur,HSFontBluradj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
664 break;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
665 case 7: // font outline
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
666 gtkSet( gtkSetFontOutLine,HSFontOutLineadj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
667 break;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
668 case 8: // text scale
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
669 gtkSet( gtkSetFontTextScale,HSFontTextScaleadj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
670 break;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
671 case 9: // osd scale
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
672 gtkSet( gtkSetFontOSDScale,HSFontOSDScaleadj->value,NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
673 break;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
674 #endif
7751
27c9c440536f - dvd aspect changing bug - fixed
pontscho
parents: 7706
diff changeset
675 case 10: // auto quality
27c9c440536f - dvd aspect changing bug - fixed
pontscho
parents: 7706
diff changeset
676 gtkSet( gtkSetAutoq,HSPPQualityadj->value,NULL );
27c9c440536f - dvd aspect changing bug - fixed
pontscho
parents: 7706
diff changeset
677 break;
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
678 }
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
679 return FALSE;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
680 }
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
681
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
682 static void prToggled( GtkToggleButton * togglebutton,gpointer user_data )
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
683 {
11918
634a2b279b1a 'video window vanishes after pause' bugfix, based on Andr«± K«ähne's (andre.kuehne@gmx.net) bugreport
pontscho
parents: 10182
diff changeset
684 int window;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
685 switch ( (int)user_data )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
686 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
687 case 0: // extra stereo coefficient
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
688 if ( guiIntfStruct.Playing )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
689 gtk_widget_set_sensitive( HSExtraStereoMul,gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBExtraStereo ) ) );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
690 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
691 // case 1: // normalize
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
692 // case 2: // equalizer
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
693 // if ( guiIntfStruct.Playing ) gtkMessageBox( GTK_MB_WARNING,"Please remember, this function need restart the playing." );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
694 // break;
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
695 case 3:
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
696 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBShowVideoWindow ) ) ) gtk_widget_set_sensitive( CBLoadFullscreen,TRUE );
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
697 else
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
698 {
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
699 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( CBLoadFullscreen ),0 );
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
700 gtk_widget_set_sensitive( CBLoadFullscreen,FALSE );
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
701 }
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
702 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBShowVideoWindow ) ) )
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
703 {
11918
634a2b279b1a 'video window vanishes after pause' bugfix, based on Andr«± K«ähne's (andre.kuehne@gmx.net) bugreport
pontscho
parents: 10182
diff changeset
704 window=wsShowWindow;
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
705 gtkActive( Preferences );
11918
634a2b279b1a 'video window vanishes after pause' bugfix, based on Andr«± K«ähne's (andre.kuehne@gmx.net) bugreport
pontscho
parents: 10182
diff changeset
706 } else window=wsHideWindow;
634a2b279b1a 'video window vanishes after pause' bugfix, based on Andr«± K«ähne's (andre.kuehne@gmx.net) bugreport
pontscho
parents: 10182
diff changeset
707
634a2b279b1a 'video window vanishes after pause' bugfix, based on Andr«± K«ähne's (andre.kuehne@gmx.net) bugreport
pontscho
parents: 10182
diff changeset
708 if ( !guiIntfStruct.Playing ) wsVisibleWindow( &appMPlayer.subWindow,window );
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
709 break;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
710 case 4:
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
711 case 5:
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
712 case 6:
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
713 case 7:
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
714 gtkSet( gtkSetFontAutoScale,(float)((int)user_data - 4 ),NULL );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
715 break;
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
716 case 8:
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
717 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBCache ) ) ) gtk_widget_set_sensitive( SBCache,TRUE );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
718 else gtk_widget_set_sensitive( SBCache,FALSE );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
719 break;
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
720 case 9:
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
721 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBAutoSync ) ) ) gtk_widget_set_sensitive( SBAutoSync,TRUE );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
722 else gtk_widget_set_sensitive( SBAutoSync,FALSE );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
723 break;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
724 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
725 }
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
726
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
727 static void prCListRow( GtkCList * clist,gint row,gint column,GdkEvent * event,gpointer user_data )
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
728 {
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
729 switch ( (int)user_data )
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
730 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
731 case 0: // audio driver
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
732 gtk_clist_get_text( GTK_CLIST( CLADrivers ),row,0,(char **)&ao_driver );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
733 gtk_widget_set_sensitive( AConfig,FALSE );
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
734 if ( !strncmp( ao_driver[0],"oss",3 ) ||
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
735 !strncmp( ao_driver[0],"alsa",4 ) ||
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
736 !strncmp( ao_driver[0],"esd",3 ) ||
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
737 !strncmp( ao_driver[0],"sdl",3 ) )
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
738 gtk_widget_set_sensitive( AConfig,TRUE );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
739 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
740 case 1: // video driver
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
741 gtk_clist_get_text( GTK_CLIST( CLVDrivers ),row,0,(char **)&vo_driver );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
742 gtk_widget_set_sensitive( VConfig,FALSE );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
743 #ifdef HAVE_DXR3
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
744 if ( !gstrcmp( vo_driver[0],"dxr3" ) ) gtk_widget_set_sensitive( VConfig,TRUE );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
745 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
746 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
747 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
748 }
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
749
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
750 GtkWidget * create_Preferences( void )
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
751 {
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
752 GtkWidget * label;
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
753 GtkWidget * frame;
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
754
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
755 GtkWidget * vbox1;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
756 GtkWidget * notebook1;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
757 GtkWidget * hbox1;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
758 GtkWidget * vbox2;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
759 GtkWidget * scrolledwindow3;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
760 GtkWidget * hbuttonbox2;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
761 GtkWidget * vbox3;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
762 GtkWidget * hbox8;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
763 GtkWidget * hbox2;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
764 GtkWidget * vbox4;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
765 GtkWidget * scrolledwindow2;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
766 GtkWidget * hbuttonbox3;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
767 GtkWidget * vbox5;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
768 GtkWidget * hbox3;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
769 GtkWidget * vbox6;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
770 GtkWidget * vbox600;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
771 GSList * OSD_group = NULL;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
772 GSList * Font_group = NULL;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
773 GList * CBFontEncoding_items = NULL;
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
774 GList * CBSubEncoding_items = NULL;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
775 GtkWidget * vbox7;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
776 GtkWidget * vbox8;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
777 GtkWidget * table1;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
778 GtkWidget * vbox9;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
779 GtkWidget * vbox603;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
780 GtkWidget * hbox6;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
781 GtkWidget * hbuttonbox5;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
782 #ifndef HAVE_FREETYPE
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
783 GtkWidget * hbox7;
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
784 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
785 GtkWidget * vbox601;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
786 GtkWidget * vbox602;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
787 GtkWidget * hbox5;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
788 GtkWidget * hbuttonbox1;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
789 GtkAccelGroup * accel_group;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
790
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
791 accel_group=gtk_accel_group_new();
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
792
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
793 Preferences=gtk_window_new( GTK_WINDOW_TOPLEVEL );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
794 gtk_widget_set_name( Preferences,"Preferences" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
795 gtk_object_set_data( GTK_OBJECT( Preferences ),"Preferences",Preferences );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
796 gtk_window_set_title( GTK_WINDOW( Preferences ),MSGTR_Preferences );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
797 gtk_window_set_position( GTK_WINDOW( Preferences ),GTK_WIN_POS_CENTER );
7217
7527dc997596 rewrite eq interface and add *.rm to fs
pontscho
parents: 7203
diff changeset
798 // gtk_window_set_policy( GTK_WINDOW( Preferences ),FALSE,FALSE,FALSE );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
799 gtk_window_set_wmclass( GTK_WINDOW( Preferences ),"Preferences","MPlayer" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
800
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
801 gtk_widget_realize( Preferences );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
802 gtkAddIcon( Preferences );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
803
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
804 vbox1=AddVBox( AddDialogFrame( Preferences ),0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
805 notebook1=gtk_notebook_new();
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
806 gtk_widget_set_name( notebook1,"notebook1" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
807 gtk_widget_show( notebook1 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
808 gtk_box_pack_start( GTK_BOX( vbox1 ),notebook1,TRUE,TRUE,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
809
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
810 hbox1=AddVBox( notebook1,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
811
8154
3dd948f5d012 size optim
pontscho
parents: 8151
diff changeset
812 frame=AddFrame( NULL,GTK_SHADOW_ETCHED_OUT,hbox1,1 );
3dd948f5d012 size optim
pontscho
parents: 8151
diff changeset
813 frame=AddFrame( NULL,GTK_SHADOW_NONE,frame,1 );
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
814
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
815 // --- 1. page
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
816
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
817 vbox2=AddVBox( frame,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
818
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
819 scrolledwindow3=gtk_scrolled_window_new( NULL,NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
820 gtk_widget_set_name( scrolledwindow3,"scrolledwindow3" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
821 gtk_widget_show( scrolledwindow3 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
822 gtk_box_pack_start( GTK_BOX( vbox2 ),scrolledwindow3,TRUE,TRUE,0 );
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
823 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( scrolledwindow3 ),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
824
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
825 CLADrivers=gtk_clist_new( 2 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
826 gtk_widget_set_name( CLADrivers,"CLADrivers" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
827 gtk_widget_show( CLADrivers );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
828 gtk_container_add( GTK_CONTAINER( scrolledwindow3 ),CLADrivers );
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
829 gtk_clist_set_column_width( GTK_CLIST( CLADrivers ),0,50 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
830 gtk_clist_column_titles_show( GTK_CLIST( CLADrivers ) );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
831 gtk_clist_set_shadow_type( GTK_CLIST( CLADrivers ),GTK_SHADOW_NONE );
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
832 gtk_widget_set_usize( CLADrivers,250,-2 );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
833 gtk_clist_set_column_widget( GTK_CLIST( CLADrivers ),0,
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
834 AddLabel( MSGTR_PREFERENCES_AvailableDrivers,NULL ) );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
835
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
836 AConfig=AddButton( MSGTR_ConfigDriver,
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
837 AddHButtonBox( vbox2 ) );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
838
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
839 vbox3=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
840 AddFrame( NULL,GTK_SHADOW_NONE,
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
841 AddFrame( NULL,GTK_SHADOW_ETCHED_OUT,hbox1,0 ),1 ),0 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
842 gtk_widget_set_usize( vbox3,250,-2 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
843
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
844 CBNormalize=AddCheckButton( MSGTR_PREFERENCES_NormalizeSound,vbox3 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
845 CBAudioEqualizer=AddCheckButton( MSGTR_PREFERENCES_EnEqualizer,vbox3 );
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
846 CBSoftwareMixer=AddCheckButton( MSGTR_PREFERENCES_SoftwareMixer,vbox3 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
847 #if 0
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
848 CBSurround=AddCheckButton( "Enable surround",vbox3 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
849 #endif
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
850
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
851 AddHSeparator( vbox3 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
852 CBExtraStereo=AddCheckButton( MSGTR_PREFERENCES_ExtraStereo,vbox3 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
853 hbox8=AddHBox( vbox3,1 );
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
854 label=AddLabel( MSGTR_PREFERENCES_Coefficient,hbox8 );
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
855 // gtk_misc_set_padding( GTK_MISC( label ),20,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
856 HSExtraStereoMuladj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,-10,10,0.1,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
857 HSExtraStereoMul=AddHScaler( HSExtraStereoMuladj,hbox8,1 );
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
858 AddHSeparator( vbox3 );
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
859
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
860 hbox8=AddHBox( vbox3,1 );
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
861 AddLabel( MSGTR_PREFERENCES_AudioDelay,hbox8 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
862
9037
00b831ed9582 show one ...
pontscho
parents: 9031
diff changeset
863 HSAudioDelayadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,-10,10,0.01,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
864 HSAudioDelay=AddHScaler( HSAudioDelayadj,hbox8,2 );
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
865 label=AddLabel( MSGTR_PREFERENCES_Audio,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
866 gtk_notebook_set_tab_label( GTK_NOTEBOOK( notebook1 ),gtk_notebook_get_nth_page( GTK_NOTEBOOK( notebook1 ),0 ),label );
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
867
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
868 // --- 2. page
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
869
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
870 hbox2=AddVBox( notebook1,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
871
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
872 vbox4=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
873 AddFrame( NULL,GTK_SHADOW_NONE,
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
874 AddFrame( NULL,GTK_SHADOW_ETCHED_OUT,hbox2,1 ),1 ),0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
875
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
876 scrolledwindow2=gtk_scrolled_window_new( NULL,NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
877 gtk_widget_set_name( scrolledwindow2,"scrolledwindow2" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
878 gtk_widget_show( scrolledwindow2 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
879 gtk_box_pack_start( GTK_BOX( vbox4 ),scrolledwindow2,TRUE,TRUE,0 );
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
880 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( scrolledwindow2 ),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
881
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
882 CLVDrivers=gtk_clist_new( 2 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
883 gtk_widget_set_name( CLVDrivers,"CLVDrivers" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
884 gtk_widget_show( CLVDrivers );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
885 gtk_container_add( GTK_CONTAINER( scrolledwindow2 ),CLVDrivers );
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
886 gtk_clist_set_column_width( GTK_CLIST( CLVDrivers ),0,50 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
887 gtk_clist_column_titles_show( GTK_CLIST( CLVDrivers ) );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
888 gtk_clist_set_shadow_type( GTK_CLIST( CLVDrivers ),GTK_SHADOW_NONE );
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
889 gtk_widget_set_usize( CLVDrivers,250,-2 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
890
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
891 label=AddLabel( MSGTR_PREFERENCES_AvailableDrivers,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
892 gtk_clist_set_column_widget( GTK_CLIST( CLVDrivers ),0,label );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
893
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
894 hbuttonbox3=AddHButtonBox( vbox4 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
895 VConfig=AddButton( MSGTR_ConfigDriver,hbuttonbox3 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
896
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
897 vbox5=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
898 AddFrame( NULL,GTK_SHADOW_NONE,
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
899 AddFrame( NULL,GTK_SHADOW_ETCHED_OUT,hbox2,0 ),1 ),0 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
900 gtk_widget_set_usize( vbox5,250,-2 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
901
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
902 CBDoubleBuffer=AddCheckButton( MSGTR_PREFERENCES_DoubleBuffer,vbox5 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
903 CBDR=AddCheckButton( MSGTR_PREFERENCES_DirectRender,vbox5 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
904 CBFramedrop=AddCheckButton( MSGTR_PREFERENCES_FrameDrop,vbox5 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
905 CBHFramedrop=AddCheckButton( MSGTR_PREFERENCES_HFrameDrop,vbox5 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
906 CBFlip=AddCheckButton( MSGTR_PREFERENCES_Flip,vbox5 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
907
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
908 table1=gtk_table_new( 3,2,FALSE );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
909 gtk_widget_set_name( table1,"table1" );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
910 gtk_widget_show( table1 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
911 gtk_box_pack_start( GTK_BOX( vbox5 ),table1,FALSE,FALSE,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
912
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
913 label=AddLabel( MSGTR_PREFERENCES_Panscan,NULL );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
914 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,0,1,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
915
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
916 label=AddLabel( MSGTR_PREFERENCES_FPS,NULL );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
917 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,1,2,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
918
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
919 HSPanscanadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,1,0.001,0,0 ) );
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
920 HSPanscan=AddHScaler( HSPanscanadj,NULL,1 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
921 gtk_table_attach( GTK_TABLE( table1 ),HSPanscan,1,2,0,1,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
922
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
923 HSFPSadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,1000,0.001,0,0 ) );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
924 HSFPS=gtk_spin_button_new( GTK_ADJUSTMENT( HSFPSadj ),1,3 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
925 gtk_widget_set_name( HSFPS,"HSFPS" );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
926 gtk_widget_show( HSFPS );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
927 gtk_spin_button_set_numeric( GTK_SPIN_BUTTON( HSFPS ),TRUE );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
928 gtk_table_attach( GTK_TABLE( table1 ),HSFPS,1,2,1,2,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
929
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
930 label=AddLabel( MSGTR_PREFERENCES_Video,NULL );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
931 gtk_notebook_set_tab_label( GTK_NOTEBOOK( notebook1 ),gtk_notebook_get_nth_page( GTK_NOTEBOOK( notebook1 ),1 ),label );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
932
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
933 // --- 3. page
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
934
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
935 vbox6=AddVBox( notebook1,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
936
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
937 vbox600=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
938 AddFrame( NULL,GTK_SHADOW_NONE,
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
939 AddFrame( MSGTR_PREFERENCES_FRAME_OSD_Level,GTK_SHADOW_ETCHED_OUT,vbox6,0 ),1 ),0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
940
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
941 RBOSDNone=AddRadioButton( MSGTR_PREFERENCES_None,&OSD_group,vbox600 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
942 RBOSDTandP=AddRadioButton( MSGTR_PREFERENCES_OSDTimer,&OSD_group,vbox600 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
943 RBOSDIndicator=AddRadioButton( MSGTR_PREFERENCES_OSDProgress,&OSD_group,vbox600 );
8886
d32accfed8e6 add osd_level=3 support
pontscho
parents: 8719
diff changeset
944 RBOSDTPTT=AddRadioButton( MSGTR_PREFERENCES_OSDTimerPercentageTotalTime,&OSD_group,vbox600 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
945
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
946 vbox7=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
947 AddFrame( NULL,GTK_SHADOW_NONE,
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
948 AddFrame( MSGTR_PREFERENCES_FRAME_Subtitle,GTK_SHADOW_ETCHED_OUT,vbox6,0 ),1 ),0 );
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6794
diff changeset
949
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
950 #if 0
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
951 hbox4=AddHBox( vbox7,1 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
952
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
953 AddLabel( MSGTR_PREFERENCES_Subtitle,hbox4 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
954
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
955 ESubtitleName=gtk_entry_new();
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
956 gtk_widget_set_name( ESubtitleName,"ESubtitleName" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
957 gtk_widget_show( ESubtitleName );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
958 gtk_box_pack_start( GTK_BOX( hbox4 ),ESubtitleName,TRUE,TRUE,0 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
959
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
960 hbuttonbox4=AddHButtonBox( hbuttonbox4 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
961 gtk_container_set_border_width( GTK_CONTAINER( hbuttonbox4 ),3 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
962 BLoadSubtitle=AddButton( MSGTR_Browse,hbuttonbox4 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
963 #endif
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
964
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
965 vbox8=AddVBox( vbox7,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
966
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
967 table1=gtk_table_new( 3,2,FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
968 gtk_widget_set_name( table1,"table1" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
969 gtk_widget_show( table1 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
970 gtk_box_pack_start( GTK_BOX( vbox8 ),table1,FALSE,FALSE,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
971
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
972 label=AddLabel( MSGTR_PREFERENCES_SUB_Delay,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
973 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,0,1,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
974
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
975 label=AddLabel( MSGTR_PREFERENCES_SUB_POS,NULL );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
976 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,1,2,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
977
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
978 label=AddLabel( MSGTR_PREFERENCES_SUB_FPS,NULL );
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
979 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,2,3,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
980
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
981 #ifdef USE_ICONV
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
982 label=AddLabel( MSGTR_PREFERENCES_FontEncoding,NULL );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
983 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,3,4,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
984 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
985
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
986 HSSubDelayadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,-10.0,10,0.01,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
987 HSSubDelay=AddHScaler( HSSubDelayadj,NULL,1 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
988 gtk_table_attach( GTK_TABLE( table1 ),HSSubDelay,1,2,0,1,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
989
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
990 HSSubPositionadj=GTK_ADJUSTMENT( gtk_adjustment_new( 100,0,100,1,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
991 HSSubPosition=AddHScaler( HSSubPositionadj,NULL,0 );
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
992 gtk_table_attach( GTK_TABLE( table1 ),HSSubPosition,1,2,1,2,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
993
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
994 HSSubFPSadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,100,0.01,0,0 ) );
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
995 HSSubFPS=gtk_spin_button_new( GTK_ADJUSTMENT( HSSubFPSadj ),1,3 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
996 gtk_widget_set_name( HSSubFPS,"HSSubFPS" );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
997 gtk_widget_show( HSSubFPS );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
998 gtk_widget_set_usize( HSSubFPS,60,-1 );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
999 gtk_spin_button_set_numeric( GTK_SPIN_BUTTON( HSSubFPS ),TRUE );
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 9037
diff changeset
1000 gtk_table_attach( GTK_TABLE( table1 ),HSSubFPS,1,2,2,3,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1001
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1002 #ifdef USE_ICONV
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1003 CBSubEncoding=gtk_combo_new();
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1004 gtk_widget_set_name( CBSubEncoding,"CBSubEncoding" );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1005 gtk_widget_show( CBSubEncoding );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1006 gtk_table_attach( GTK_TABLE( table1 ),CBSubEncoding,1,2,3,4,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1007 CBSubEncoding_items=g_list_append( CBSubEncoding_items,MSGTR_PREFERENCES_None );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1008 {
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1009 int i;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1010 for ( i=0;lEncoding[i].name;i++ ) CBSubEncoding_items=g_list_append( CBSubEncoding_items,lEncoding[i].comment );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1011 }
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1012 gtk_combo_set_popdown_strings( GTK_COMBO( CBSubEncoding ),CBSubEncoding_items );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1013 g_list_free( CBSubEncoding_items );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1014
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1015 ESubEncoding=GTK_COMBO( CBSubEncoding )->entry;
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1016 gtk_widget_set_name( ESubEncoding,"ESubEncoding" );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1017 gtk_entry_set_editable( GTK_ENTRY( ESubEncoding ),FALSE );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1018 gtk_widget_show( ESubEncoding );
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1019 #endif
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
1020
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1021 vbox9=AddVBox( vbox8,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1022
8717
2df4e9d9922d add overlapping to preferences
pontscho
parents: 8714
diff changeset
1023 CBSubOverlap=AddCheckButton( MSGTR_PREFERENCES_SUB_Overlap,vbox9 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1024 CBNoAutoSub=AddCheckButton( MSGTR_PREFERENCES_SUB_AutoLoad,vbox9 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1025 CBSubUnicode=AddCheckButton( MSGTR_PREFERENCES_SUB_Unicode,vbox9 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1026 CBDumpMPSub=AddCheckButton( MSGTR_PREFERENCES_SUB_MPSUB,vbox9 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1027 CBDumpSrt=AddCheckButton( MSGTR_PREFERENCES_SUB_SRT,vbox9 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1028
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1029 label=AddLabel( MSGTR_PREFERENCES_SubtitleOSD,NULL );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1030 gtk_notebook_set_tab_label( GTK_NOTEBOOK( notebook1 ),gtk_notebook_get_nth_page( GTK_NOTEBOOK( notebook1 ),2 ),label );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1031 vbox601=AddVBox( notebook1,0 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1032
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
1033 // --- 4. page
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1034
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1035 vbox603=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1036 AddFrame( NULL,GTK_SHADOW_NONE,
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1037 AddFrame( MSGTR_PREFERENCES_FRAME_Font,GTK_SHADOW_ETCHED_OUT,vbox601,0 ),1 ),0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1038
9303
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1039 hbox6=AddHBox( vbox603,1 );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1040 AddLabel( MSGTR_PREFERENCES_Font,hbox6 );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1041 prEFontName=gtk_entry_new();
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1042 gtk_widget_set_name( prEFontName,"prEFontName" );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1043 gtk_widget_show( prEFontName );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1044 gtk_box_pack_start( GTK_BOX( hbox6 ),prEFontName,TRUE,TRUE,0 );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1045 hbuttonbox5=AddHButtonBox( hbox6 );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1046 gtk_container_set_border_width( GTK_CONTAINER( hbuttonbox5 ),3 );
76fa7baabd90 fix one 10l
pontscho
parents: 9259
diff changeset
1047 BLoadFont=AddButton( MSGTR_Browse,hbuttonbox5 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1048
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1049 #ifndef HAVE_FREETYPE
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1050 hbox7=AddHBox( vbox603,1 );
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1051 AddLabel( MSGTR_PREFERENCES_FontFactor,hbox7 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1052 HSFontFactoradj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,10,0.05,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1053 HSFontFactor=AddHScaler( HSFontFactoradj,hbox7,2 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1054 #else
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1055
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1056 RBFontNoAutoScale=AddRadioButton( MSGTR_PREFERENCES_FontNoAutoScale,&Font_group,vbox603 );
9346
eb760cafaf75 minor fixes for font autoscaling
henry
parents: 9303
diff changeset
1057 RBFontAutoScaleHeight=AddRadioButton( MSGTR_PREFERENCES_FontPropHeight,&Font_group,vbox603 );
9351
pontscho
parents: 9346
diff changeset
1058 RBFontAutoScaleWidth=AddRadioButton( MSGTR_PREFERENCES_FontPropWidth,&Font_group,vbox603 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1059 RBFontAutoScaleDiagonal=AddRadioButton( MSGTR_PREFERENCES_FontPropDiagonal,&Font_group,vbox603 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1060
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1061 table1=gtk_table_new( 3,2,FALSE );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1062 gtk_widget_set_name( table1,"table1" );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1063 gtk_widget_show( table1 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1064 gtk_box_pack_start( GTK_BOX( vbox603 ),table1,FALSE,FALSE,0 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1065
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1066 label=AddLabel( MSGTR_PREFERENCES_FontEncoding,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1067 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,0,1,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1068
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1069 CBFontEncoding=gtk_combo_new();
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1070 gtk_widget_set_name( CBFontEncoding,"CBFontEncoding" );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1071 gtk_widget_show( CBFontEncoding );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1072 gtk_table_attach( GTK_TABLE( table1 ),CBFontEncoding,1,2,0,1,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1073 {
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1074 int i;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1075 for ( i=0;lEncoding[i].name;i++ ) CBFontEncoding_items=g_list_append( CBFontEncoding_items,lEncoding[i].comment );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1076 }
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1077 gtk_combo_set_popdown_strings( GTK_COMBO( CBFontEncoding ),CBFontEncoding_items );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1078 g_list_free( CBFontEncoding_items );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1079
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1080 EFontEncoding=GTK_COMBO( CBFontEncoding )->entry;
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1081 gtk_widget_set_name( EFontEncoding,"EFontEncoding" );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1082 gtk_entry_set_editable( GTK_ENTRY( EFontEncoding ),FALSE );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1083 gtk_widget_show( EFontEncoding );
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1084
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1085 label=AddLabel( MSGTR_PREFERENCES_FontBlur,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1086 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,1,2,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1087
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1088 HSFontBluradj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,100,0.1,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1089 HSFontBlur=AddHScaler( HSFontBluradj,NULL,2 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1090 gtk_table_attach( GTK_TABLE( table1 ),HSFontBlur,1,2,1,2,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1091
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1092 label=AddLabel( MSGTR_PREFERENCES_FontOutLine,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1093 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,2,3,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1094
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1095 HSFontOutLineadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,100,0.1,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1096 HSFontOutLine=AddHScaler( HSFontOutLineadj,NULL,2 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1097 gtk_table_attach( GTK_TABLE( table1 ),HSFontOutLine,1,2,2,3,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1098
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1099 label=AddLabel( MSGTR_PREFERENCES_FontTextScale,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1100 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,3,4,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1101
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1102 HSFontTextScaleadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,100,0.1,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1103 HSFontTextScale=AddHScaler( HSFontTextScaleadj,NULL,2 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1104 gtk_table_attach( GTK_TABLE( table1 ),HSFontTextScale,1,2,3,4,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1105
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1106 label=AddLabel( MSGTR_PREFERENCES_FontOSDScale,NULL );
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1107 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,4,5,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1108
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1109 HSFontOSDScaleadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,100,0.1,0,0 ) );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1110 HSFontOSDScale=AddHScaler( HSFontOSDScaleadj,NULL,2 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1111 gtk_table_attach( GTK_TABLE( table1 ),HSFontOSDScale,1,2,4,5,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
7139
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1112 #endif
dd1e21e775b6 - add freetype support for gui
pontscho
parents: 7019
diff changeset
1113
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1114 label=AddLabel( MSGTR_PREFERENCES_FRAME_Font,NULL );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1115 gtk_notebook_set_tab_label( GTK_NOTEBOOK( notebook1 ),gtk_notebook_get_nth_page( GTK_NOTEBOOK( notebook1 ),3 ),label );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1116
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
1117 // --- 5. page
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1118
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1119 vbox601=AddVBox( notebook1,0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1120
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1121 vbox602=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1122 AddFrame( NULL,GTK_SHADOW_NONE,
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1123 AddFrame( MSGTR_PREFERENCES_FRAME_CodecDemuxer,GTK_SHADOW_ETCHED_OUT,vbox601,0 ),1 ),0 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1124
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1125 CBNonInterlaved=AddCheckButton( MSGTR_PREFERENCES_NI,vbox602 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1126 CBIndex=AddCheckButton( MSGTR_PREFERENCES_IDX,vbox602 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1127
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1128 hbox5=AddHBox( vbox602,1 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1129
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1130 AddLabel( MSGTR_PREFERENCES_VideoCodecFamily,hbox5 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1131
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1132 CBVFM=gtk_combo_new();
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1133 gtk_widget_set_name( CBVFM,"CBVFM" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1134 gtk_widget_show( CBVFM );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1135 gtk_box_pack_start( GTK_BOX( hbox5 ),CBVFM,TRUE,TRUE,0 );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1136
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1137 EVFM=GTK_COMBO( CBVFM )->entry;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1138 gtk_widget_set_name( EVFM,"CEVFM" );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1139 gtk_entry_set_editable( GTK_ENTRY( EVFM ),FALSE );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1140 gtk_widget_show( EVFM );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1141
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1142 hbox5=AddHBox( vbox602,1 );
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1143
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1144 AddLabel( MSGTR_PREFERENCES_AudioCodecFamily,hbox5 );
7186
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1145
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1146 CBAFM=gtk_combo_new();
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1147 gtk_widget_set_name( CBAFM,"CBAFM" );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1148 gtk_widget_show( CBAFM );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1149 gtk_box_pack_start( GTK_BOX( hbox5 ),CBAFM,TRUE,TRUE,0 );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1150
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1151 EAFM=GTK_COMBO( CBAFM )->entry;
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1152 gtk_widget_set_name( EAFM,"EAFM" );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1153 gtk_entry_set_editable( GTK_ENTRY( EAFM ),FALSE );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1154 gtk_widget_show( EAFM );
02b1976e12e2 fix vfm and add afm support
pontscho
parents: 7139
diff changeset
1155
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1156 label=AddLabel( MSGTR_PREFERENCES_Codecs,NULL );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1157 gtk_notebook_set_tab_label( GTK_NOTEBOOK( notebook1 ),gtk_notebook_get_nth_page( GTK_NOTEBOOK( notebook1 ),4 ),label );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1158
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1159 vbox601=AddVBox( notebook1,0 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1160
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
1161 // --- 6. page
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1162
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1163 vbox602=AddVBox(
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1164 AddFrame( NULL,GTK_SHADOW_NONE,
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1165 AddFrame( MSGTR_PREFERENCES_FRAME_PostProcess,GTK_SHADOW_ETCHED_OUT,vbox601,0 ),1 ),0 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1166
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1167 CBPostprocess=AddCheckButton( MSGTR_PREFERENCES_PostProcess,vbox602 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1168
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1169 hbox5=AddHBox( vbox602,1 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1170
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1171 AddLabel( MSGTR_PREFERENCES_AutoQuality,hbox5 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1172
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1173 if ( guiIntfStruct.sh_video && guiIntfStruct.Playing ) HSPPQualityadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,get_video_quality_max( guiIntfStruct.sh_video ),0,0,0 ) );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1174 else HSPPQualityadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,100,0,0,0 ) );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1175 HSPPQuality=AddHScaler( HSPPQualityadj,hbox5,0 );
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1176
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1177 vbox602=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1178 AddFrame( NULL,GTK_SHADOW_NONE,
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1179 AddFrame( MSGTR_PREFERENCES_FRAME_Cache,GTK_SHADOW_ETCHED_OUT,vbox601,0 ),1 ),0 );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1180
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1181 CBCache=AddCheckButton( MSGTR_PREFERENCES_Cache,vbox602 );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1182
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1183 hbox5=AddHBox( vbox602,1 );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1184
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1185 AddLabel( MSGTR_PREFERENCES_CacheSize,hbox5 );
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1186
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1187 SBCacheadj=GTK_ADJUSTMENT( gtk_adjustment_new( 2048,4,65535,1,10,10 ) );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1188 SBCache=gtk_spin_button_new( GTK_ADJUSTMENT( SBCacheadj ),1,0 );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1189 gtk_widget_show( SBCache );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1190 gtk_box_pack_start( GTK_BOX( hbox5 ),SBCache,TRUE,TRUE,0 );
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7473
diff changeset
1191
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1192 vbox602=AddVBox(
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1193 AddFrame( NULL,GTK_SHADOW_NONE,
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1194 AddFrame( MSGTR_PREFERENCES_FRAME_Misc,GTK_SHADOW_ETCHED_OUT,vbox601,1 ),1 ),0 );
7538
c7b61f316edf - add "start in fullscreen" function
pontscho
parents: 7535
diff changeset
1195
9202
c2f31ca14a92 - rewrite Jan Spitalnik's patch
pontscho
parents: 9194
diff changeset
1196 CBShowVideoWindow=AddCheckButton( MSGTR_PREFERENCES_ShowVideoWindow,vbox602 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1197 CBLoadFullscreen=AddCheckButton( MSGTR_PREFERENCES_LoadFullscreen,vbox602 );
9625
bc24dd70c6e2 many 10l for me ...
pontscho
parents: 9351
diff changeset
1198 CBSaveWinPos=AddCheckButton( MSGTR_PREFERENCES_SaveWinPos,vbox602 );
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1199 CBStopXScreenSaver=AddCheckButton( MSGTR_PREFERENCES_XSCREENSAVER,vbox602 );
8973
0a665389cf2b - add playbar
pontscho
parents: 8964
diff changeset
1200 CBPlayBar=AddCheckButton( MSGTR_PREFERENCES_PlayBar,vbox602 );
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1201
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1202 AddHSeparator( vbox602 );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1203
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1204 CBAutoSync=AddCheckButton( MSGTR_PREFERENCES_AutoSync,vbox602 );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1205 hbox5=AddHBox( vbox602,1 );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1206 AddLabel( MSGTR_PREFERENCES_AutoSyncValue,hbox5 );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1207 SBAutoSyncadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,10000,1,10,10 ) );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1208 SBAutoSync=gtk_spin_button_new( GTK_ADJUSTMENT( SBAutoSyncadj ),1,0 );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1209 gtk_widget_show( SBAutoSync );
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 8308
diff changeset
1210 gtk_box_pack_start( GTK_BOX( hbox5 ),SBAutoSync,TRUE,TRUE,0 );
7538
c7b61f316edf - add "start in fullscreen" function
pontscho
parents: 7535
diff changeset
1211
8933
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1212 AddHSeparator( vbox602 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1213
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1214 table1=gtk_table_new( 2,2,FALSE );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1215 gtk_widget_set_name( table1,"table1" );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1216 gtk_widget_show( table1 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1217 gtk_box_pack_start( GTK_BOX( vbox602 ),table1,FALSE,FALSE,0 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1218
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1219 label=AddLabel( MSGTR_PREFERENCES_DVDDevice,NULL );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1220 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,0,1,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1221 prEDVDDevice=gtk_entry_new();
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1222 gtk_widget_set_name( prEDVDDevice,"prEDVDDevice" );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1223 gtk_widget_show( prEDVDDevice );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1224 gtk_table_attach( GTK_TABLE( table1 ),prEDVDDevice,1,2,0,1,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1225
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1226 label=AddLabel( MSGTR_PREFERENCES_CDROMDevice,NULL );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1227 gtk_table_attach( GTK_TABLE( table1 ),label,0,1,1,2,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1228 prECDRomDevice=gtk_entry_new();
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1229 gtk_widget_set_name( prECDRomDevice,"prECDRomDevice" );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1230 gtk_widget_show( prECDRomDevice );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1231 gtk_table_attach( GTK_TABLE( table1 ),prECDRomDevice,1,2,1,2,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1232
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1233 // AddHSeparator( vbox602 );
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8923
diff changeset
1234
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1235 label=AddLabel( MSGTR_PREFERENCES_Misc,NULL );
8964
9f3a0da01917 preferences cosmetics
pontscho
parents: 8933
diff changeset
1236 gtk_notebook_set_tab_label( GTK_NOTEBOOK( notebook1 ),gtk_notebook_get_nth_page( GTK_NOTEBOOK( notebook1 ),5 ),label );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1237
8923
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
1238 // ---
e1910649ff08 "cosmetic" :)
pontscho
parents: 8920
diff changeset
1239
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1240 AddHSeparator( vbox1 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1241
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1242 hbuttonbox1=AddHButtonBox( vbox1 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1243 gtk_button_box_set_layout( GTK_BUTTON_BOX( hbuttonbox1 ),GTK_BUTTONBOX_END );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1244 gtk_button_box_set_spacing( GTK_BUTTON_BOX( hbuttonbox1 ),10 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1245 BOk=AddButton( MSGTR_Ok,hbuttonbox1 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1246 BCancel=AddButton( MSGTR_Cancel,hbuttonbox1 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1247
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1248 gtk_widget_add_accelerator( BOk,"clicked",accel_group,GDK_Return,0,GTK_ACCEL_VISIBLE );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1249 gtk_widget_add_accelerator( BCancel,"clicked",accel_group,GDK_Escape,0,GTK_ACCEL_VISIBLE );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1250
8719
dc27303ae528 correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents: 8717
diff changeset
1251 gtk_signal_connect( GTK_OBJECT( Preferences ),"destroy",GTK_SIGNAL_FUNC( WidgetDestroy ),&Preferences );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1252
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1253 gtk_signal_connect( GTK_OBJECT( AConfig ),"clicked",GTK_SIGNAL_FUNC( prButton ),(void*)bAConfig );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1254 gtk_signal_connect( GTK_OBJECT( BOk ),"clicked",GTK_SIGNAL_FUNC( prButton ),(void*)bOk );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1255 gtk_signal_connect( GTK_OBJECT( BCancel ),"clicked",GTK_SIGNAL_FUNC( prButton ),(void*)bCancel );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1256 gtk_signal_connect( GTK_OBJECT( VConfig ),"clicked",GTK_SIGNAL_FUNC( prButton ),(void*)bVconfig );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1257 #if 0
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1258 gtk_signal_connect( GTK_OBJECT( BLoadSubtitle ),"clicked",GTK_SIGNAL_FUNC( prButton ),(void*)bLSubtitle );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1259 #endif
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1260 gtk_signal_connect( GTK_OBJECT( BLoadFont ),"clicked",GTK_SIGNAL_FUNC( prButton ),(void*)bLFont );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1261
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1262 #if 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1263 gtk_signal_connect( GTK_OBJECT( CBNormalize ),"toggled",GTK_SIGNAL_FUNC( on_CBNormalize_toggled ),NULL );
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1264 gtk_signal_connect( GTK_OBJECT( CBSoftwareMixer ),"toggled",GTK_SIGNAL_FUNC( on_CBSoftwareMixer_toggled ),NULL );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1265 gtk_signal_connect( GTK_OBJECT( CBSurround ),"toggled",GTK_SIGNAL_FUNC( on_CBSurround_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1266 gtk_signal_connect( GTK_OBJECT( CBExtraStereo ),"toggled",GTK_SIGNAL_FUNC( on_CBExtraStereo_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1267 gtk_signal_connect( GTK_OBJECT( CBDoubleBuffer ),"toggled",GTK_SIGNAL_FUNC( on_CBDoubleBuffer_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1268 gtk_signal_connect( GTK_OBJECT( CBDR ),"toggled",GTK_SIGNAL_FUNC( on_CBDR_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1269 gtk_signal_connect( GTK_OBJECT( CBFramedrop ),"toggled",GTK_SIGNAL_FUNC( on_CBFramedrop_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1270 gtk_signal_connect( GTK_OBJECT( CBHFramedrop ),"toggled",GTK_SIGNAL_FUNC( on_CBHFramedrop_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1271 gtk_signal_connect( GTK_OBJECT( CBFullScreen ),"toggled",GTK_SIGNAL_FUNC( on_CBFullScreen_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1272 gtk_signal_connect( GTK_OBJECT( CBNonInterlaved ),"toggled",GTK_SIGNAL_FUNC( on_CBNonInterlaved_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1273 gtk_signal_connect( GTK_OBJECT( CBFlip ),"toggled",GTK_SIGNAL_FUNC( on_CBFlip_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1274 gtk_signal_connect( GTK_OBJECT( CBPostprocess ),"toggled",GTK_SIGNAL_FUNC( on_CBPostprocess_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1275 gtk_signal_connect( GTK_OBJECT( CBNoAutoSub ),"toggled",GTK_SIGNAL_FUNC( on_CBNoAutoSub_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1276 gtk_signal_connect( GTK_OBJECT( CBSubUnicode ),"toggled",GTK_SIGNAL_FUNC( on_CNSubUnicode_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1277 gtk_signal_connect( GTK_OBJECT( CBDumpMPSub ),"toggled",GTK_SIGNAL_FUNC( on_CBDumpMPSub_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1278 gtk_signal_connect( GTK_OBJECT( CBDumpSrt ),"toggled",GTK_SIGNAL_FUNC( on_CBDumpSrt_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1279 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1280 #if 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1281 gtk_signal_connect( GTK_OBJECT( RBOSDNone ),"toggled",GTK_SIGNAL_FUNC( on_RBOSDNone_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1282 gtk_signal_connect( GTK_OBJECT( RBOSDTandP ),"toggled",GTK_SIGNAL_FUNC( on_RBOSDTandP_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1283 gtk_signal_connect( GTK_OBJECT( RBOSDIndicator ),"toggled",GTK_SIGNAL_FUNC( on_RBOSDIndicator_toggled ),NULL );
8886
d32accfed8e6 add osd_level=3 support
pontscho
parents: 8719
diff changeset
1284 gtk_signal_connect( GTK_OBJECT( RBOSDTPTT ),"toggled",GTK_SIGNAL_FUNC( on_RBOSDIndicator_toggled ),NULL );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1285 gtk_signal_connect( GTK_OBJECT( CBAudioEqualizer ),"toggled",GTK_SIGNAL_FUNC( on_CBAudioEqualizer_toggled ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1286 #endif
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1287 #if 0
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1288 gtk_signal_connect( GTK_OBJECT( HSAudioDelay ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSAudioDelay_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1289 gtk_signal_connect( GTK_OBJECT( HSPanscan ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSPanscan_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1290 gtk_signal_connect( GTK_OBJECT( label2 ),"motion_notify_event",GTK_SIGNAL_FUNC( on_label2_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1291 gtk_signal_connect( GTK_OBJECT( HSSubDelay ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSSubDelay_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1292 gtk_signal_connect( GTK_OBJECT( HSSubPosition ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSSubPosition_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1293 gtk_signal_connect( GTK_OBJECT( HSSubFPS ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSSubFPS_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1294 gtk_signal_connect( GTK_OBJECT( HSFontFactor ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSFontFactor_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1295 gtk_signal_connect( GTK_OBJECT( HSPPQuality ),"motion_notify_event",GTK_SIGNAL_FUNC( on_HSPPQuality_motion_notify_event ),NULL );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1296 #endif
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1297
7187
3b44192516e4 upsz ...
pontscho
parents: 7186
diff changeset
1298 gtk_notebook_set_page( GTK_NOTEBOOK( notebook1 ),2 );
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1299
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1300 gtk_window_add_accel_group( GTK_WINDOW( Preferences ),accel_group );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1301
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1302 return Preferences;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1303 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1304
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1305 #ifdef USE_OSS_AUDIO
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1306 GList *appendOSSDevices(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1307 // careful! the current implementation allows only string constants!
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1308 l = g_list_append(l, (gpointer)"/dev/dsp");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1309 if (gtkAOOSSDevice && strncmp(gtkAOOSSDevice, "/dev/sound", 10) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1310 l = g_list_append(l, (gpointer)"/dev/sound/dsp0");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1311 l = g_list_append(l, (gpointer)"/dev/sound/dsp1");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1312 l = g_list_append(l, (gpointer)"/dev/sound/dsp2");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1313 l = g_list_append(l, (gpointer)"/dev/sound/dsp3");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1314 } else {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1315 l = g_list_append(l, (gpointer)"/dev/dsp0");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1316 l = g_list_append(l, (gpointer)"/dev/dsp1");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1317 l = g_list_append(l, (gpointer)"/dev/dsp2");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1318 l = g_list_append(l, (gpointer)"/dev/dsp3");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1319 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1320 #ifdef HAVE_DXR3
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1321 l = g_list_append(l, (gpointer)"/dev/em8300_ma");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1322 l = g_list_append(l, (gpointer)"/dev/em8300_ma-0");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1323 l = g_list_append(l, (gpointer)"/dev/em8300_ma-1");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1324 l = g_list_append(l, (gpointer)"/dev/em8300_ma-2");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1325 l = g_list_append(l, (gpointer)"/dev/em8300_ma-3");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1326 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1327 return l;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1328 }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1329
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1330 GList *appendOSSMixers(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1331 // careful! the current implementation allows only string constants!
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1332 l = g_list_append(l, (gpointer)"/dev/mixer");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1333 if (gtkAOOSSMixer && strncmp(gtkAOOSSMixer, "/dev/sound", 10) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1334 l = g_list_append(l, (gpointer)"/dev/sound/mixer0");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1335 l = g_list_append(l, (gpointer)"/dev/sound/mixer1");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1336 l = g_list_append(l, (gpointer)"/dev/sound/mixer2");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1337 l = g_list_append(l, (gpointer)"/dev/sound/mixer3");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1338 } else {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1339 l = g_list_append(l, (gpointer)"/dev/mixer0");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1340 l = g_list_append(l, (gpointer)"/dev/mixer1");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1341 l = g_list_append(l, (gpointer)"/dev/mixer2");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1342 l = g_list_append(l, (gpointer)"/dev/mixer3");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1343 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1344 return l;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1345 }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1346
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1347 GList *appendOSSMixerChannels(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1348 l = g_list_append(l, (gpointer)"vol");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1349 l = g_list_append(l, (gpointer)"pcm");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1350 l = g_list_append(l, (gpointer)"line");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1351 return l;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1352 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1353 #endif
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1354
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1355 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1356 GList *appendALSADevices(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1357 l = g_list_append(l, (gpointer)"default");
13443
b1b8e4a38520 fix examples for ao_alsa options dialog and add example for mixer index.
reimar
parents: 13266
diff changeset
1358 l = g_list_append(l, (gpointer)"hw=0.0");
b1b8e4a38520 fix examples for ao_alsa options dialog and add example for mixer index.
reimar
parents: 13266
diff changeset
1359 l = g_list_append(l, (gpointer)"hw=0.1");
b1b8e4a38520 fix examples for ao_alsa options dialog and add example for mixer index.
reimar
parents: 13266
diff changeset
1360 l = g_list_append(l, (gpointer)"hw=0.2");
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1361 l = g_list_append(l, (gpointer)"surround40");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1362 l = g_list_append(l, (gpointer)"surround51");
13443
b1b8e4a38520 fix examples for ao_alsa options dialog and add example for mixer index.
reimar
parents: 13266
diff changeset
1363 l = g_list_append(l, (gpointer)"plug=surround40");
b1b8e4a38520 fix examples for ao_alsa options dialog and add example for mixer index.
reimar
parents: 13266
diff changeset
1364 l = g_list_append(l, (gpointer)"plug=surround51");
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1365 return l;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1366 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1367
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1368 GList *appendALSAMixers(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1369 l = g_list_append(l, (gpointer)"default");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1370 return l;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1371 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1372
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1373 GList *appendALSAMixerChannels(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1374 l = g_list_append(l, (gpointer)"Master");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1375 l = g_list_append(l, (gpointer)"Line");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1376 l = g_list_append(l, (gpointer)"PCM");
13443
b1b8e4a38520 fix examples for ao_alsa options dialog and add example for mixer index.
reimar
parents: 13266
diff changeset
1377 l = g_list_append(l, (gpointer)"PCM,1");
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1378 return l;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1379 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1380 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1381
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1382 #ifdef HAVE_SDL
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1383 GList *appendSDLDevices(GList *l) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1384 l = g_list_append(l, (gpointer)"alsa");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1385 l = g_list_append(l, (gpointer)"arts");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1386 l = g_list_append(l, (gpointer)"esd");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1387 l = g_list_append(l, (gpointer)"jack");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1388 l = g_list_append(l, (gpointer)"oss");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1389 l = g_list_append(l, (gpointer)"nas");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1390 return l;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1391 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1392 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1393
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1394 #ifdef USE_ESD
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1395 GList *appendESDDevices(GList *l) {
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1396 l = g_list_append(l, (gpointer)"Enter Remote IP");
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1397 l = g_list_append(l, (gpointer)"Use Software Mixer");
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1398 return l;
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1399 }
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1400 #endif
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1401
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1402 // Gets text string from a gtk entry, interpreting
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1403 // MSGTR_PREFERENCES_DriverDefault as null string.
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1404 char *getGtkEntryText(GtkWidget *from) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1405 char *tmp = gtk_entry_get_text(GTK_ENTRY(from));
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1406 if (strcmp(tmp, MSGTR_PREFERENCES_DriverDefault) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1407 tmp = NULL;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1408 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1409 return tmp;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1410 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1411
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1412 // Sets text string of a gtk entry, interpreting
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1413 // null string as MSGTR_PREFERENCES_DriverDefault.
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1414 void setGtkEntryText(GtkWidget *dest, char *to) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1415 if (!to) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1416 to = MSGTR_PREFERENCES_DriverDefault;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1417 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1418 gtk_entry_set_text(GTK_ENTRY(dest),to);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1419 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1420
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1421 GtkWidget *AudioConfig;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1422 static GtkWidget *CEAudioDevice;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1423 static GtkWidget *CBAudioDevice;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1424 static GtkWidget *CEAudioMixer;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1425 static GtkWidget *CBAudioMixer;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1426 static GtkWidget *CEAudioMixerChannel;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1427 static GtkWidget *CBAudioMixerChannel;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1428 static GtkWidget *BAudioOk;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1429 static GtkWidget *BAudioCancel;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1430
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1431 void ShowAudioConfig() {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1432 if (AudioConfig) gtkActive(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1433 else AudioConfig = create_AudioConfig();
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1434
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1435 #ifdef USE_OSS_AUDIO
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1436 if (strncmp(ao_driver[0], "oss", 3) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1437 setGtkEntryText(CEAudioDevice, gtkAOOSSDevice);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1438 setGtkEntryText(CEAudioMixer, gtkAOOSSMixer);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1439 setGtkEntryText(CEAudioMixerChannel, gtkAOOSSMixerChannel);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1440 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1441 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1442 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1443 if (strncmp(ao_driver[0], "alsa", 4) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1444 setGtkEntryText(CEAudioDevice, gtkAOALSADevice);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1445 setGtkEntryText(CEAudioMixer, gtkAOALSAMixer);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1446 setGtkEntryText(CEAudioMixerChannel, gtkAOALSAMixerChannel);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1447 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1448 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1449 #ifdef HAVE_SDL
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1450 if (strncmp(ao_driver[0], "sdl", 3) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1451 setGtkEntryText(CEAudioDevice, gtkAOSDLDriver);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1452 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1453 #endif
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1454 #ifdef USE_ESD
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1455 if (strncmp(ao_driver[0], "esd", 3) == 0) {
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1456 setGtkEntryText(CEAudioDevice, gtkAOESDDevice);
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1457 }
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1458 #endif
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1459
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1460 gtk_widget_show(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1461 gtkSetLayer(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1462 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1463
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1464 void HideAudioConfig() {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1465 if (!AudioConfig) return;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1466 gtk_widget_hide(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1467 gtk_widget_destroy(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1468 AudioConfig=NULL;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1469 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1470
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1471 static void audioButton(GtkButton *button, gpointer user_data) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1472 switch( (int)user_data ) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1473 case 1:
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1474 #ifdef USE_OSS_AUDIO
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1475 if (strncmp(ao_driver[0], "oss", 3) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1476 gfree(&gtkAOOSSDevice);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1477 gtkAOOSSDevice = gstrdup(getGtkEntryText(CEAudioDevice));
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1478 gfree(&gtkAOOSSMixer);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1479 gtkAOOSSMixer = gstrdup(getGtkEntryText(CEAudioMixer));
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1480 gfree(&gtkAOOSSMixerChannel);
13266
914749a92b28 Copy-n-Paste bug breaking channel selection in audio configuration dialog
reimar
parents: 12924
diff changeset
1481 gtkAOOSSMixerChannel = gstrdup(getGtkEntryText(CEAudioMixerChannel));
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1482 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1483 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1484 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1485 if (strncmp(ao_driver[0], "alsa", 4) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1486 gfree(&gtkAOALSADevice);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1487 gtkAOALSADevice = gstrdup(getGtkEntryText(CEAudioDevice));
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1488 gfree(&gtkAOALSAMixer);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1489 gtkAOALSAMixer = gstrdup(getGtkEntryText(CEAudioMixer));
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1490 gfree(&gtkAOALSAMixerChannel);
13266
914749a92b28 Copy-n-Paste bug breaking channel selection in audio configuration dialog
reimar
parents: 12924
diff changeset
1491 gtkAOALSAMixerChannel = gstrdup(getGtkEntryText(CEAudioMixerChannel));
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1492 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1493 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1494 #ifdef HAVE_SDL
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1495 if (strncmp(ao_driver[0], "sdl", 3) == 0) {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1496 gfree(&gtkAOSDLDriver);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1497 gtkAOSDLDriver = gstrdup(getGtkEntryText(CEAudioDevice));
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1498 }
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1499 #endif
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1500 #ifdef USE_ESD
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1501 if (strncmp(ao_driver[0], "esd", 3) == 0) {
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1502 gfree(&gtkAOESDDevice);
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1503 gtkAOESDDevice = gstrdup(getGtkEntryText(CEAudioDevice));
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1504 }
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1505 #endif
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1506 case 0:
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1507 HideAudioConfig();
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1508 break;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1509 }
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1510 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1511
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1512 GtkWidget *create_AudioConfig() {
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1513 GList *items = NULL;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1514 GtkWidget *vbox;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1515 GtkWidget *table;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1516 GtkWidget *label;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1517 GtkWidget *hbuttonbox;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1518 GtkAccelGroup *accel_group;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1519
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1520 AudioConfig = gtk_window_new(GTK_WINDOW_TOPLEVEL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1521 gtk_widget_set_name(AudioConfig, "AudioConfig");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1522 gtk_object_set_data(GTK_OBJECT(AudioConfig), "AudioConfig", AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1523 gtk_window_set_title(GTK_WINDOW(AudioConfig), MSGTR_AudioPreferences);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1524 gtk_window_set_position(GTK_WINDOW(AudioConfig), GTK_WIN_POS_CENTER);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1525 gtk_window_set_policy(GTK_WINDOW(AudioConfig), FALSE, FALSE, FALSE);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1526 gtk_window_set_wmclass(GTK_WINDOW(AudioConfig), "Audio Config", "MPlayer");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1527
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1528 gtk_widget_realize(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1529 gtkAddIcon(AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1530
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1531 vbox = AddVBox(AddDialogFrame(AudioConfig), 0);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1532
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1533 table = gtk_table_new(2, 3, FALSE);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1534 gtk_widget_set_name(table, "table");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1535 gtk_widget_show(table);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1536 gtk_box_pack_start(GTK_BOX(vbox), table, TRUE, TRUE, 0);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1537
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1538 label = AddLabel(MSGTR_PREFERENCES_Audio_Device, NULL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1539 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, (GtkAttachOptions)(GTK_FILL), (GtkAttachOptions)(0), 0, 0);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1540
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1541 CBAudioDevice = AddComboBox(NULL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1542 gtk_table_attach(GTK_TABLE(table), CBAudioDevice, 1, 2, 0, 1, (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), (GtkAttachOptions)(0), 0, 0);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1543 items = g_list_append(items,(gpointer)MSGTR_PREFERENCES_DriverDefault);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1544 #ifdef USE_OSS_AUDIO
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1545 if (strncmp(ao_driver[0], "oss", 3) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1546 items = appendOSSDevices(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1547 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1548 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1549 if (strncmp(ao_driver[0], "alsa", 4) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1550 items = appendALSADevices(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1551 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1552 #ifdef HAVE_SDL
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1553 if (strncmp(ao_driver[0], "sdl", 3) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1554 items = appendSDLDevices(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1555 #endif
14686
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1556 #ifdef USE_ESD
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1557 if (strncmp(ao_driver[0], "esd", 3) == 0)
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1558 items = appendESDDevices(items);
e2b2ab284a9a ESD configuration dialog and software volume control option for Gui
reimar
parents: 13443
diff changeset
1559 #endif
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1560 gtk_combo_set_popdown_strings(GTK_COMBO(CBAudioDevice), items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1561 g_list_free(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1562 items = NULL;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1563
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1564 CEAudioDevice = GTK_COMBO(CBAudioDevice)->entry;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1565 gtk_widget_set_name(CEAudioDevice, "CEAudioDevice");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1566 gtk_widget_show(CEAudioDevice);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1567
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1568 label = AddLabel(MSGTR_PREFERENCES_Audio_Mixer, NULL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1569 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, (GtkAttachOptions)(GTK_FILL), (GtkAttachOptions)(0), 0, 0);
9193
101a844d6995 devfs baszas
pontscho
parents: 9075
diff changeset
1570
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1571 CBAudioMixer = AddComboBox(NULL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1572 gtk_table_attach(GTK_TABLE(table), CBAudioMixer, 1, 2, 1, 2, (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), (GtkAttachOptions)(0), 0, 0);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1573 items = g_list_append(items, (gpointer)MSGTR_PREFERENCES_DriverDefault);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1574 #ifdef USE_OSS_AUDIO
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1575 if (strncmp(ao_driver[0], "oss", 3) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1576 items = appendOSSMixers(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1577 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1578 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1579 if (strncmp(ao_driver[0], "alsa", 4) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1580 items = appendALSAMixers(items);
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1581 #endif
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1582 gtk_combo_set_popdown_strings(GTK_COMBO(CBAudioMixer), items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1583 g_list_free(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1584 items = NULL;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1585
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1586 CEAudioMixer = GTK_COMBO(CBAudioMixer)->entry;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1587 gtk_widget_set_name(CEAudioMixer, "CEAudioMixer");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1588 gtk_widget_show(CEAudioMixer);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1589
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1590 label = AddLabel(MSGTR_PREFERENCES_Audio_MixerChannel, NULL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1591 gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3, (GtkAttachOptions)(GTK_FILL), (GtkAttachOptions)(0), 0, 0);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1592
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1593 CBAudioMixerChannel = AddComboBox(NULL);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1594 gtk_table_attach(GTK_TABLE(table), CBAudioMixerChannel, 1, 2, 2, 3, (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), (GtkAttachOptions)(0), 0, 0);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1595 items = g_list_append(items, (gpointer)MSGTR_PREFERENCES_DriverDefault);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1596 #ifdef USE_OSS_AUDIO
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1597 if (strncmp(ao_driver[0], "oss", 3) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1598 items = appendOSSMixerChannels(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1599 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1600 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1601 if (strncmp(ao_driver[0], "alsa", 4) == 0)
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1602 items = appendALSAMixerChannels(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1603 #endif
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1604 gtk_combo_set_popdown_strings(GTK_COMBO(CBAudioMixerChannel), items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1605 g_list_free(items);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1606 items = NULL;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1607
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1608 CEAudioMixerChannel = GTK_COMBO(CBAudioMixerChannel)->entry;
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1609 gtk_widget_set_name(CEAudioMixerChannel, "CEAudioMixerChannel");
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1610 gtk_widget_show(CEAudioMixerChannel);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1611
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1612 AddHSeparator(vbox);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1613
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1614 hbuttonbox = AddHButtonBox(vbox);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1615 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbuttonbox), GTK_BUTTONBOX_END);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1616 gtk_button_box_set_spacing(GTK_BUTTON_BOX(hbuttonbox), 10);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1617 BAudioOk = AddButton(MSGTR_Ok, hbuttonbox);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1618 BAudioCancel = AddButton(MSGTR_Cancel, hbuttonbox);
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1619
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1620 gtk_signal_connect(GTK_OBJECT(AudioConfig), "destroy", GTK_SIGNAL_FUNC(WidgetDestroy), &AudioConfig);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1621 gtk_signal_connect(GTK_OBJECT(BAudioOk), "clicked", GTK_SIGNAL_FUNC(audioButton), (void*)1);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1622 gtk_signal_connect(GTK_OBJECT(BAudioCancel), "clicked", GTK_SIGNAL_FUNC(audioButton), (void*)0);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1623
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1624 accel_group = gtk_accel_group_new();
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1625 gtk_widget_add_accelerator(BAudioOk, "clicked", accel_group, GDK_Return, 0, GTK_ACCEL_VISIBLE);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1626 gtk_widget_add_accelerator(BAudioCancel, "clicked", accel_group, GDK_Escape, 0, GTK_ACCEL_VISIBLE);
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1627 gtk_window_add_accel_group(GTK_WINDOW(AudioConfig), accel_group);
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1628
12918
eb0d3c1b6c6d unified audio options dialog, fixes also bug #40
reimar
parents: 12691
diff changeset
1629 return AudioConfig;
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1630 }
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6625
diff changeset
1631
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1632 #ifdef HAVE_DXR3
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1633 // --- dxr3 config box
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1634
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1635 static GtkWidget * DXR3Config;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1636 static GtkWidget * CBDevice;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1637 static GtkWidget * CEDXR3Device;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1638 static GtkWidget * RBVNone;
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1639 #ifdef USE_LIBAVCODEC
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1640 static GtkWidget * RBVLavc;
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1641 #endif
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1642 #ifdef USE_LIBFAME
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1643 static GtkWidget * RBVFame;
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1644 #endif
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1645 static GtkWidget * dxr3BOk;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1646 static GtkWidget * dxr3BCancel;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1647
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1648 GtkWidget * create_DXR3Config( void );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1649
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1650 void ShowDXR3Config( void )
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1651 {
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1652 if ( DXR3Config ) gtkActive( DXR3Config );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1653 else DXR3Config=create_DXR3Config();
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1654
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1655 gtk_entry_set_text( GTK_ENTRY( CEDXR3Device ),gtkDXR3Device );
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1656
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1657 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBVNone ),TRUE );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1658 #ifdef USE_LIBAVCODEC
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1659 if ( gtkVopLAVC ) gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBVLavc ),TRUE );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1660 #endif
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1661 #ifdef USE_LIBFAME
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1662 if ( gtkVopFAME ) gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( RBVFame ),TRUE );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1663 #endif
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1664
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1665 gtk_widget_show( DXR3Config );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1666 gtkSetLayer( DXR3Config );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1667 }
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1668
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1669 void HideDXR3Config( void )
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1670 {
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1671 if ( !DXR3Config ) return;
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1672 gtk_widget_hide( DXR3Config );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1673 gtk_widget_destroy( DXR3Config );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1674 DXR3Config=NULL;
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1675 }
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1676
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1677 static void dxr3Button( GtkButton * button,gpointer user_data )
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1678 {
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1679 switch ( (int)user_data )
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1680 {
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1681 case 0: // Ok
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1682 gfree( (void **)&gtkDXR3Device ); gtkDXR3Device=strdup( gtk_entry_get_text( GTK_ENTRY( CEDXR3Device ) ) );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1683 #ifdef USE_LIBAVCODEC
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1684 gtkVopLAVC=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBVLavc ) );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1685 #endif
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1686 #ifdef USE_LIBFAME
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1687 gtkVopFAME=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( RBVFame ) );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1688 #endif
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1689 case 1: // Cancel
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1690 HideDXR3Config();
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1691 break;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1692 }
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1693 }
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1694
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1695 GtkWidget * create_DXR3Config( void )
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1696 {
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1697 GtkWidget * vbox1;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1698 GtkWidget * vbox2;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1699 GtkWidget * hbox1;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1700 GList * CBDevice_items = NULL;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1701 GtkWidget * vbox3;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1702 GSList * VEncoder_group = NULL;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1703 GtkWidget * hbuttonbox1;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1704 GtkAccelGroup * accel_group;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1705
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1706 accel_group=gtk_accel_group_new();
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1707
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1708 DXR3Config=gtk_window_new( GTK_WINDOW_TOPLEVEL );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1709 gtk_widget_set_name( DXR3Config,"DXR3Config" );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1710 gtk_object_set_data( GTK_OBJECT( DXR3Config ),"DXR3Config",DXR3Config );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1711 // gtk_widget_set_usize( DXR3Config,300,156 );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1712 GTK_WIDGET_SET_FLAGS( DXR3Config,GTK_CAN_DEFAULT );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1713 gtk_window_set_title( GTK_WINDOW( DXR3Config ),"DXR3/H+" );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1714 gtk_window_set_position( GTK_WINDOW( DXR3Config ),GTK_WIN_POS_CENTER );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1715 gtk_window_set_policy( GTK_WINDOW( DXR3Config ),FALSE,FALSE,FALSE );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1716 gtk_window_set_wmclass( GTK_WINDOW( DXR3Config ),"DXR3","MPlayer" );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1717
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1718 gtk_widget_realize( DXR3Config );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1719 gtkAddIcon( DXR3Config );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1720
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1721 vbox1=AddVBox( AddDialogFrame( DXR3Config ),0 );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1722 vbox2=AddVBox( vbox1,0 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1723 hbox1=AddHBox( vbox2,1 );
12924
65f49a82ac94 100l, fixes DXR3 compile problems caused by my last patch.
reimar
parents: 12918
diff changeset
1724 AddLabel( MSGTR_PREFERENCES_Audio_Device,hbox1 );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1725
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1726 CBDevice=AddComboBox( hbox1 );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1727
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1728 CBDevice_items=g_list_append( CBDevice_items,( gpointer ) "/dev/em8300" );
7706
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1729 CBDevice_items=g_list_append( CBDevice_items,( gpointer ) "/dev/em8300-0" );
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1730 CBDevice_items=g_list_append( CBDevice_items,( gpointer ) "/dev/em8300-1" );
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1731 CBDevice_items=g_list_append( CBDevice_items,( gpointer ) "/dev/em8300-2" );
90044efe01ee - better dxr3 support
pontscho
parents: 7705
diff changeset
1732 CBDevice_items=g_list_append( CBDevice_items,( gpointer ) "/dev/em8300-3" );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1733 gtk_combo_set_popdown_strings( GTK_COMBO( CBDevice ),CBDevice_items );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1734 g_list_free( CBDevice_items );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1735
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1736 CEDXR3Device=GTK_COMBO( CBDevice )->entry;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1737 gtk_widget_set_name( CEDXR3Device,"CEDXR3Device" );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1738 gtk_widget_show( CEDXR3Device );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1739 gtk_entry_set_text( GTK_ENTRY( CEDXR3Device ),"/dev/em8300" );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1740
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1741 #if defined( USE_LIBAVCODEC ) || defined( USE_LIBFAME )
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1742 AddHSeparator( vbox2 );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1743 vbox3=AddVBox( vbox2,0 );
8156
e2f8e7252add size ...
pontscho
parents: 8154
diff changeset
1744 AddLabel( MSGTR_PREFERENCES_DXR3_VENC,vbox3 );
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1745 RBVNone=AddRadioButton( MSGTR_PREFERENCES_None,&VEncoder_group,vbox3 );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1746 #ifdef USE_LIBAVCODEC
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1747 RBVLavc=AddRadioButton( MSGTR_PREFERENCES_DXR3_LAVC,&VEncoder_group,vbox3 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1748 #endif
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1749 #ifdef USE_LIBFAME
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1750 RBVFame=AddRadioButton( MSGTR_PREFERENCES_DXR3_FAME,&VEncoder_group,vbox3 );
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1751 #endif
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1752
8043
e5dda05f9aab cleanup
pontscho
parents: 7751
diff changeset
1753 #endif
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1754
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1755 AddHSeparator( vbox1 );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1756
8173
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1757 hbuttonbox1=AddHButtonBox( vbox1 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1758 gtk_button_box_set_layout( GTK_BUTTON_BOX( hbuttonbox1 ),GTK_BUTTONBOX_END );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1759 gtk_button_box_set_spacing( GTK_BUTTON_BOX( hbuttonbox1 ),10 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1760 dxr3BOk=AddButton( MSGTR_Ok,hbuttonbox1 );
56e664c3bc24 cleanup
pontscho
parents: 8156
diff changeset
1761 dxr3BCancel=AddButton( MSGTR_Cancel,hbuttonbox1 );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1762
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1763 gtk_widget_add_accelerator( dxr3BOk,"clicked",accel_group,GDK_Return,0,GTK_ACCEL_VISIBLE );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1764 gtk_widget_add_accelerator( dxr3BCancel,"clicked",accel_group,GDK_Escape,0,GTK_ACCEL_VISIBLE );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1765
8719
dc27303ae528 correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents: 8717
diff changeset
1766 gtk_signal_connect( GTK_OBJECT( DXR3Config ),"destroy",GTK_SIGNAL_FUNC( WidgetDestroy ),&DXR3Config );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1767
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1768 gtk_signal_connect( GTK_OBJECT( dxr3BOk ),"clicked",GTK_SIGNAL_FUNC( dxr3Button ),(void *)0 );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8284
diff changeset
1769 gtk_signal_connect( GTK_OBJECT( dxr3BCancel ),"clicked",GTK_SIGNAL_FUNC( dxr3Button ),(void *)1 );
7009
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1770
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1771 gtk_window_add_accel_group( GTK_WINDOW( DXR3Config ),accel_group );
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1772
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1773 return DXR3Config;
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1774 }
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1775
98bed9e12087 - add dxr3 gui support (dialogbox, etc.)
pontscho
parents: 6912
diff changeset
1776 #endif