Small fixes.
[wine/multimedia.git] / misc / main.c
blob2ac1f6e3ee11088ac5cc6fc8603bc0e6826ac689
1 /*
2 * Main function.
4 * Copyright 1994 Alexandre Julliard
5 */
7 #include <signal.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <ctype.h>
12 /* #include <locale.h> */
13 #ifdef MALLOC_DEBUGGING
14 #include <malloc.h>
15 #endif
16 #include "ts_xlib.h"
17 #include "ts_xresource.h"
18 #include "ts_xutil.h"
19 #include <X11/Xlocale.h>
20 #include <X11/cursorfont.h>
21 #include "winsock.h"
22 #include "heap.h"
23 #include "message.h"
24 #include "msdos.h"
25 #include "windows.h"
26 #include "color.h"
27 #include "options.h"
28 #include "desktop.h"
29 #include "process.h"
30 #include "shell.h"
31 #include "winbase.h"
32 #include "debug.h"
33 #include "debugdefs.h"
34 #include "xmalloc.h"
35 #include "version.h"
36 #include "winnls.h"
38 /* when adding new languages look at ole/ole2nls.c
39 * for proper iso name and Windows code (add 0x0400
40 * to the code listed there)
42 const WINE_LANGUAGE_DEF Languages[] =
44 {"En",0x0409}, /* LANG_En */
45 {"Es",0x040A}, /* LANG_Es */
46 {"De",0x0407}, /* LANG_De */
47 {"No",0x0414}, /* LANG_No */
48 {"Fr",0x040C}, /* LANG_Fr */
49 {"Fi",0x040B}, /* LANG_Fi */
50 {"Da",0x0406}, /* LANG_Da */
51 {"Cs",0x0405}, /* LANG_Cs */
52 {"Eo",0x048f}, /* LANG_Eo */
53 {"It",0x0410}, /* LANG_It */
54 {"Ko",0x0412}, /* LANG_Ko */
55 {"Hu",0x040e}, /* LANG_Hu */
56 {"Pl",0x0415}, /* LANG_Pl */
57 {"Pt",0x0416}, /* LANG_Pt */
58 {"Sv",0x041d}, /* LANG_Sv */
59 {"Ca",0x0403}, /* LANG_Ca */
60 /* for compatibility whith non-iso names previously used */
61 {"Sw",0x041d}, /* LANG_Sv */
62 {"Cz",0x0405}, /* LANG_Cs */
63 {"Po",0x0416}, /* LANG_Pt */
64 {NULL,0}
67 WORD WINE_LanguageId = 0x409; /* english as default */
69 #define WINE_CLASS "Wine" /* Class name for resources */
71 #define WINE_APP_DEFAULTS "/usr/lib/X11/app-defaults/Wine"
73 Display *display;
74 Screen *screen;
75 Window rootWindow;
76 int screenWidth = 0, screenHeight = 0; /* Desktop window dimensions */
77 int screenDepth = 0; /* Screen depth to use */
79 struct options Options =
80 { /* default options */
81 NULL, /* desktopGeometry */
82 NULL, /* programName */
83 NULL, /* argv0 */
84 NULL, /* dllFlags */
85 FALSE, /* usePrivateMap */
86 FALSE, /* useFixedMap */
87 FALSE, /* synchronous */
88 FALSE, /* backing store */
89 SW_SHOWNORMAL, /* cmdShow */
90 FALSE,
91 FALSE, /* failReadOnly */
92 MODE_ENHANCED, /* Enhanced mode */
93 #ifdef DEFAULT_LANG
94 DEFAULT_LANG, /* Default language */
95 #else
96 LANG_En,
97 #endif
98 FALSE, /* Managed windows */
99 FALSE, /* Perfect graphics */
100 NULL /* Alternate config file name */
104 static XrmOptionDescRec optionsTable[] =
106 { "-backingstore", ".backingstore", XrmoptionNoArg, (caddr_t)"on" },
107 { "-desktop", ".desktop", XrmoptionSepArg, (caddr_t)NULL },
108 { "-depth", ".depth", XrmoptionSepArg, (caddr_t)NULL },
109 { "-display", ".display", XrmoptionSepArg, (caddr_t)NULL },
110 { "-iconic", ".iconic", XrmoptionNoArg, (caddr_t)"on" },
111 { "-language", ".language", XrmoptionSepArg, (caddr_t)"En" },
112 { "-name", ".name", XrmoptionSepArg, (caddr_t)NULL },
113 { "-perfect", ".perfect", XrmoptionNoArg, (caddr_t)"on" },
114 { "-privatemap", ".privatemap", XrmoptionNoArg, (caddr_t)"on" },
115 { "-fixedmap", ".fixedmap", XrmoptionNoArg, (caddr_t)"on" },
116 { "-synchronous", ".synchronous", XrmoptionNoArg, (caddr_t)"on" },
117 { "-debug", ".debug", XrmoptionNoArg, (caddr_t)"on" },
118 { "-debugmsg", ".debugmsg", XrmoptionSepArg, (caddr_t)NULL },
119 { "-dll", ".dll", XrmoptionSepArg, (caddr_t)NULL },
120 { "-failreadonly", ".failreadonly", XrmoptionNoArg, (caddr_t)"on" },
121 { "-mode", ".mode", XrmoptionSepArg, (caddr_t)NULL },
122 { "-managed", ".managed", XrmoptionNoArg, (caddr_t)"off"},
123 { "-winver", ".winver", XrmoptionSepArg, (caddr_t)NULL },
124 { "-config", ".config", XrmoptionSepArg, (caddr_t)NULL }
127 #define NB_OPTIONS (sizeof(optionsTable) / sizeof(optionsTable[0]))
129 #define USAGE \
130 "%s\n" \
131 "Usage: %s [options] \"program_name [arguments]\"\n" \
132 "\n" \
133 "Options:\n" \
134 " -backingstore Turn on backing store\n" \
135 " -config name Specify config file to use\n" \
136 " -debug Enter debugger before starting application\n" \
137 " -debugmsg name Turn debugging-messages on or off\n" \
138 " -depth n Change the depth to use for multiple-depth screens\n" \
139 " -desktop geom Use a desktop window of the given geometry\n" \
140 " -display name Use the specified display\n" \
141 " -dll name Enable or disable built-in DLLs\n" \
142 " -failreadonly Read only files may not be opened in write mode\n" \
143 " -fixedmap Use a \"standard\" color map\n" \
144 " -help Show this help message\n" \
145 " -iconic Start as an icon\n" \
146 " -language xx Set the language (one of Ca,Cs,Da,De,En,Eo,Es,Fi,Fr,Hu,It,\n Ko,No,Pl,Pt,Sv)\n" \
147 " -managed Allow the window manager to manage created windows\n" \
148 " -mode mode Start Wine in a particular mode (standard or enhanced)\n" \
149 " -name name Set the application name\n" \
150 " -perfect Favor correctness over speed for graphical operations\n" \
151 " -privatemap Use a private color map\n" \
152 " -synchronous Turn on synchronous display mode\n" \
153 " -version Display the Wine version\n" \
154 " -winver Version to imitate (one of win31,win95,nt351,nt40)\n"
158 /***********************************************************************
159 * MAIN_Usage
161 void MAIN_Usage( char *name )
163 MSG( USAGE, WINE_RELEASE_INFO, name );
164 exit(1);
168 /***********************************************************************
169 * MAIN_GetProgramName
171 * Get the program name. The name is specified by (in order of precedence):
172 * - the option '-name'.
173 * - the environment variable 'WINE_NAME'.
174 * - the last component of argv[0].
176 static char *MAIN_GetProgramName( int argc, char *argv[] )
178 int i;
179 char *p;
181 for (i = 1; i < argc-1; i++)
182 if (!strcmp( argv[i], "-name" )) return argv[i+1];
183 if ((p = getenv( "WINE_NAME" )) != NULL) return p;
184 if ((p = strrchr( argv[0], '/' )) != NULL) return p+1;
185 return argv[0];
189 /***********************************************************************
190 * MAIN_GetResource
192 * Fetch the value of resource 'name' using the correct instance name.
193 * 'name' must begin with '.' or '*'
195 static int MAIN_GetResource( XrmDatabase db, char *name, XrmValue *value )
197 char *buff_instance, *buff_class;
198 char *dummy;
199 int retval;
201 buff_instance = (char *)xmalloc(strlen(Options.programName)+strlen(name)+1);
202 buff_class = (char *)xmalloc( strlen(WINE_CLASS) + strlen(name) + 1 );
204 strcpy( buff_instance, Options.programName );
205 strcat( buff_instance, name );
206 strcpy( buff_class, WINE_CLASS );
207 strcat( buff_class, name );
208 retval = TSXrmGetResource( db, buff_instance, buff_class, &dummy, value );
209 free( buff_instance );
210 free( buff_class );
211 return retval;
215 /***********************************************************************
216 * MAIN_ParseDebugOptions
218 * Turns specific debug messages on or off, according to "options".
220 * RETURNS
221 * TRUE if parsing was successful
223 static BOOL32 MAIN_ParseDebugOptions(char *options)
225 /* defined in relay32/relay386.c */
226 extern char **debug_relay_includelist;
227 extern char **debug_relay_excludelist;
228 /* defined in relay32/snoop.c */
229 extern char **debug_snoop_includelist;
230 extern char **debug_snoop_excludelist;
232 int l, cls;
233 if (strlen(options)<3)
234 return FALSE;
237 if ((*options!='+')&&(*options!='-')){
238 int j;
240 for(j=0; j<DEBUG_CLASS_COUNT; j++)
241 if(!lstrncmpi32A(options, debug_cl_name[j], strlen(debug_cl_name[j])))
242 break;
243 if(j==DEBUG_CLASS_COUNT)
244 return FALSE;
245 options += strlen(debug_cl_name[j]);
246 if ((*options!='+')&&(*options!='-'))
247 return FALSE;
248 cls = j;
250 else
251 cls = -1; /* all classes */
253 if (strchr(options,','))
254 l=strchr(options,',')-options;
255 else
256 l=strlen(options);
258 if (!lstrncmpi32A(options+1,"all",l-1))
260 int i, j;
261 for (i=0; i<DEBUG_CHANNEL_COUNT; i++)
262 for(j=0; j<DEBUG_CLASS_COUNT; j++)
263 if(cls == -1 || cls == j)
264 debug_msg_enabled[i][j]=(*options=='+');
266 else if (!lstrncmpi32A(options+1, "relay=", 6) ||
267 !lstrncmpi32A(options+1, "snoop=", 6))
269 int i, j;
270 char *s, *s2, ***output, c;
272 for (i=0; i<DEBUG_CHANNEL_COUNT; i++)
273 if (debug_ch_name && (!lstrncmpi32A(debug_ch_name[i],options+1,5))){
274 for(j=0; j<DEBUG_CLASS_COUNT; j++)
275 if(cls == -1 || cls == j)
276 debug_msg_enabled[i][j]=TRUE;
277 break;
279 /* should never happen, maybe assert(i!=DEBUG_CHANNEL_COUNT)? */
280 if (i==DEBUG_CHANNEL_COUNT)
281 return FALSE;
282 output = (*options == '+') ?
283 ((*(options+1) == 'r') ?
284 &debug_relay_includelist :
285 &debug_snoop_includelist) :
286 ((*(options+1) == 'r') ?
287 &debug_relay_excludelist :
288 &debug_snoop_excludelist);
289 s = options + 7;
290 i = 1;
291 while((s = strchr(s, ':'))) i++, s++;
292 *output = malloc(sizeof(char **) * i + 1);
293 i = 0;
294 s = options + 7;
295 while((s2 = strchr(s, ':'))) {
296 c = *s2;
297 *s2 = '\0';
298 *((*output)+i) = strdup(s);
299 *s2 = c;
300 s = s2 + 1;
301 i++;
303 c = *(options + l);
304 *(options + l) = '\0';
305 *((*output)+i) = strdup(s);
306 *(options + l) = c;
307 *((*output)+i+1) = NULL;
309 else
311 int i, j;
312 for (i=0; i<DEBUG_CHANNEL_COUNT; i++)
313 if (debug_ch_name && (!lstrncmpi32A(options+1,debug_ch_name[i],l-1))){
314 for(j=0; j<DEBUG_CLASS_COUNT; j++)
315 if(cls == -1 || cls == j)
316 debug_msg_enabled[i][j]=(*options=='+');
317 break;
319 if (i==DEBUG_CHANNEL_COUNT)
320 return FALSE;
322 options+=l;
324 while((*options==',')&&(*(++options)));
325 if (*options)
326 return FALSE;
327 else
328 return TRUE;
331 /***********************************************************************
332 * MAIN_GetLanguageID
334 * INPUT:
335 * Lang: a string whose two first chars are the iso name of a language.
336 * Country: a string whose two first chars are the iso name of country
337 * Charset: a string defining the chossen charset encoding
338 * Dialect: a string defining a variation of the locale
340 * all those values are from the standardized format of locale
341 * name in unix which is: Lang[_Country][.Charset][@Dialect]
343 * RETURNS:
344 * the numeric code of the language used by Windows (or 0x00)
346 int MAIN_GetLanguageID(LPCSTR Lang,LPCSTR Country,LPCSTR Charset,LPCSTR Dialect)
348 char lang[3]="??", country[3]={0,0,0};
349 char *charset=NULL, *dialect=NULL;
350 int i,j,ret=0;
352 if (Lang==NULL) return 0x00;
353 if (Lang[0]) lang[0]=tolower(Lang[0]);
354 if (Lang[1]) lang[1]=tolower(Lang[1]);
356 if (Country!=NULL) {
357 if (Country[0]) country[0]=toupper(Country[0]);
358 if (Country[1]) country[1]=toupper(Country[1]);
361 if (Charset!=NULL) {
362 j=strlen(Charset);
363 charset=(char*)malloc(j+1);
364 for (i=0;i<j;i++)
365 charset[i]=toupper(Charset[i]);
366 charset[i]='\0';
369 if (Dialect!=NULL) {
370 j=strlen(Dialect);
371 dialect=(char*)malloc(j+1);
372 for (i=0;i<j;i++)
373 dialect[i]=tolower(Dialect[i]);
374 dialect[i]='\0';
377 #define LANG_ENTRY_BEGIN(x,y) if(!strcmp(lang, x )) { \
378 if (!country[0]) { \
379 ret=LANG_##y ; \
380 goto end_MAIN_GetLanguageID; \
382 #define LANG_SUB_ENTRY(x,y,z) if (!strcmp(country, x )) \
383 ret = MAKELANGID( LANG_##y , SUBLANG_##z ); \
384 goto end_MAIN_GetLanguageID;
385 #define LANG_DIALECT_ENTRY(x,y) { ret = MAKELANGID(LANG_##x , SUBLANG_##y ); \
386 goto end_MAIN_GetLanguageID; }
387 #define LANG_ENTRY_END(x) ret = MAKELANGID(LANG_##x , SUBLANG_DEFAULT); \
388 goto end_MAIN_GetLanguageID; \
391 /*x01*/ LANG_ENTRY_BEGIN( "ar", ARABIC )
392 LANG_SUB_ENTRY( "SA", ARABIC, ARABIC)
393 LANG_SUB_ENTRY( "IQ", ARABIC, ARABIC_IRAQ )
394 LANG_SUB_ENTRY( "EG", ARABIC, ARABIC_EGYPT )
395 LANG_SUB_ENTRY( "LY", ARABIC, ARABIC_LIBYA )
396 LANG_SUB_ENTRY( "DZ", ARABIC, ARABIC_ALGERIA )
397 LANG_SUB_ENTRY( "MA", ARABIC, ARABIC_MOROCCO )
398 LANG_SUB_ENTRY( "TN", ARABIC, ARABIC_TUNISIA )
399 LANG_SUB_ENTRY( "OM", ARABIC, ARABIC_OMAN )
400 LANG_SUB_ENTRY( "YE", ARABIC, ARABIC_YEMEN )
401 LANG_SUB_ENTRY( "SY", ARABIC, ARABIC_SYRIA )
402 LANG_SUB_ENTRY( "JO", ARABIC, ARABIC_JORDAN )
403 LANG_SUB_ENTRY( "LB", ARABIC, ARABIC_LEBANON )
404 LANG_SUB_ENTRY( "KW", ARABIC, ARABIC_KUWAIT )
405 LANG_SUB_ENTRY( "AE", ARABIC, ARABIC_UAE )
406 LANG_SUB_ENTRY( "BH", ARABIC, ARABIC_BAHRAIN )
407 LANG_SUB_ENTRY( "QA", ARABIC, ARABIC_QATAR )
408 LANG_ENTRY_END( ARABIC )
409 /*x02*/ LANG_ENTRY_BEGIN( "bu", BULGARIAN )
410 LANG_ENTRY_END( BULGARIAN )
411 /*x03*/ LANG_ENTRY_BEGIN( "ca", CATALAN )
412 LANG_ENTRY_END( CATALAN )
413 /*x04*/ LANG_ENTRY_BEGIN( "zh", CHINESE )
414 LANG_SUB_ENTRY( "TW", CHINESE, CHINESE_TRADITIONAL )
415 LANG_SUB_ENTRY( "CN", CHINESE, CHINESE_SIMPLIFIED )
416 LANG_SUB_ENTRY( "HK", CHINESE, CHINESE_HONGKONG )
417 LANG_SUB_ENTRY( "SG", CHINESE, CHINESE_SINGAPORE )
418 LANG_SUB_ENTRY( "MO", CHINESE, CHINESE_MACAU )
419 LANG_ENTRY_END( CHINESE )
420 /*x05*/ LANG_ENTRY_BEGIN( "cs", CZECH )
421 LANG_ENTRY_END( CZECH )
422 /*x06*/ LANG_ENTRY_BEGIN( "da", DANISH )
423 LANG_ENTRY_END( DANISH )
424 /*x07*/ LANG_ENTRY_BEGIN( "de", GERMAN )
425 LANG_SUB_ENTRY( "DE", GERMAN, GERMAN )
426 LANG_SUB_ENTRY( "CH", GERMAN, GERMAN_SWISS )
427 LANG_SUB_ENTRY( "AT", GERMAN, GERMAN_AUSTRIAN )
428 LANG_SUB_ENTRY( "LU", GERMAN, GERMAN_LUXEMBOURG )
429 LANG_SUB_ENTRY( "LI", GERMAN, GERMAN_LIECHTENSTEIN )
430 LANG_ENTRY_END( GERMAN )
431 /*x08*/ LANG_ENTRY_BEGIN( "el", GREEK )
432 LANG_ENTRY_END( GREEK )
433 /*x09*/ LANG_ENTRY_BEGIN( "en", ENGLISH )
434 LANG_SUB_ENTRY( "US", ENGLISH, ENGLISH_US )
435 LANG_SUB_ENTRY( "UK", ENGLISH, ENGLISH_UK )
436 LANG_SUB_ENTRY( "AU", ENGLISH, ENGLISH_AUS )
437 LANG_SUB_ENTRY( "CA", ENGLISH, ENGLISH_CAN )
438 LANG_SUB_ENTRY( "NZ", ENGLISH, ENGLISH_NZ )
439 LANG_SUB_ENTRY( "EI", ENGLISH, ENGLISH_EIRE )
440 LANG_SUB_ENTRY( "ZA", ENGLISH, ENGLISH_SAFRICA )
441 LANG_SUB_ENTRY( "JM", ENGLISH, ENGLISH_JAMAICA )
442 /* LANG_SUB_ENTRY( "AG", ENGLISH, ENGLISH_CARIBBEAN ) */
443 LANG_SUB_ENTRY( "BZ", ENGLISH, ENGLISH_BELIZE )
444 LANG_SUB_ENTRY( "TT", ENGLISH, ENGLISH_TRINIDAD )
445 LANG_SUB_ENTRY( "ZW", ENGLISH, ENGLISH_ZIMBABWE )
446 LANG_SUB_ENTRY( "PH", ENGLISH, ENGLISH_PHILIPPINES )
447 LANG_ENTRY_END( ENGLISH )
448 /*x0a*/ LANG_ENTRY_BEGIN( "es", SPANISH )
449 /* traditional sorting */
450 if (!strcmp(dialect,"tradicional"))
451 LANG_DIALECT_ENTRY( SPANISH, SPANISH )
452 LANG_SUB_ENTRY( "MX", SPANISH, SPANISH_MEXICAN )
453 LANG_SUB_ENTRY( "ES", SPANISH, SPANISH_MODERN )
454 LANG_SUB_ENTRY( "GT", SPANISH, SPANISH_GUATEMALA )
455 LANG_SUB_ENTRY( "CR", SPANISH, SPANISH_COSTARICA )
456 LANG_SUB_ENTRY( "PA", SPANISH, SPANISH_PANAMA )
457 LANG_SUB_ENTRY( "DO", SPANISH, SPANISH_DOMINICAN )
458 LANG_SUB_ENTRY( "VE", SPANISH, SPANISH_VENEZUELA )
459 LANG_SUB_ENTRY( "CO", SPANISH, SPANISH_COLOMBIA )
460 LANG_SUB_ENTRY( "PE", SPANISH, SPANISH_PERU )
461 LANG_SUB_ENTRY( "AR", SPANISH, SPANISH_ARGENTINA )
462 LANG_SUB_ENTRY( "EC", SPANISH, SPANISH_ECUADOR )
463 LANG_SUB_ENTRY( "CL", SPANISH, SPANISH_CHILE )
464 LANG_SUB_ENTRY( "UY", SPANISH, SPANISH_URUGUAY )
465 LANG_SUB_ENTRY( "PY", SPANISH, SPANISH_PARAGUAY )
466 LANG_SUB_ENTRY( "BO", SPANISH, SPANISH_BOLIVIA )
467 LANG_SUB_ENTRY( "HN", SPANISH, SPANISH_HONDURAS )
468 LANG_SUB_ENTRY( "NI", SPANISH, SPANISH_NICARAGUA )
469 LANG_SUB_ENTRY( "PR", SPANISH, SPANISH_PUERTO_RICO )
470 LANG_ENTRY_END( SPANISH )
471 /*x0b*/ LANG_ENTRY_BEGIN( "fi", FINNISH )
472 LANG_ENTRY_END( FINNISH )
473 /*x0c*/ LANG_ENTRY_BEGIN( "fr", FRENCH )
474 LANG_SUB_ENTRY( "FR", FRENCH, FRENCH )
475 LANG_SUB_ENTRY( "BE", FRENCH, FRENCH_BELGIAN )
476 LANG_SUB_ENTRY( "CA", FRENCH, FRENCH_CANADIAN )
477 LANG_SUB_ENTRY( "CH", FRENCH, FRENCH_SWISS )
478 LANG_SUB_ENTRY( "LU", FRENCH, FRENCH_LUXEMBOURG )
479 LANG_SUB_ENTRY( "MC", FRENCH, FRENCH_MONACO )
480 LANG_ENTRY_END( FRENCH )
481 /*x0d*/ LANG_ENTRY_BEGIN( "iw", HEBREW )
482 LANG_ENTRY_END( HEBREW )
483 /*x0e*/ LANG_ENTRY_BEGIN( "hu", HUNGARIAN )
484 LANG_ENTRY_END( HUNGARIAN )
485 /*x0f*/ LANG_ENTRY_BEGIN( "ic", ICELANDIC )
486 LANG_ENTRY_END( ICELANDIC )
487 /*x10*/ LANG_ENTRY_BEGIN( "it", ITALIAN )
488 LANG_SUB_ENTRY( "IT", ITALIAN, ITALIAN )
489 LANG_SUB_ENTRY( "CH", ITALIAN, ITALIAN_SWISS )
490 LANG_ENTRY_END( ITALIAN )
491 /*x11*/ LANG_ENTRY_BEGIN( "ja", JAPANESE )
492 LANG_ENTRY_END( JAPANESE )
493 /*x12*/ LANG_ENTRY_BEGIN( "ko", KOREAN )
494 /* JOHAB encoding */
495 if (!strcmp(charset,"JOHAB"))
496 LANG_DIALECT_ENTRY( KOREAN, KOREAN_JOHAB )
497 else
498 LANG_DIALECT_ENTRY( KOREAN, KOREAN )
499 LANG_ENTRY_END( KOREAN )
500 /*x13*/ LANG_ENTRY_BEGIN( "nl", DUTCH )
501 LANG_SUB_ENTRY( "NL", DUTCH, DUTCH )
502 LANG_SUB_ENTRY( "BE", DUTCH, DUTCH_BELGIAN )
503 LANG_SUB_ENTRY( "SR", DUTCH, DUTCH_SURINAM )
504 LANG_ENTRY_END( DUTCH )
505 /*x14*/ LANG_ENTRY_BEGIN( "no", NORWEGIAN )
506 /* nynorsk */
507 if (!strcmp(dialect,"nynorsk"))
508 LANG_DIALECT_ENTRY( NORWEGIAN, NORWEGIAN_NYNORSK )
509 else
510 LANG_DIALECT_ENTRY( NORWEGIAN, NORWEGIAN_BOKMAL )
511 LANG_ENTRY_END( NORWEGIAN )
512 /*x15*/ LANG_ENTRY_BEGIN( "pl", POLISH )
513 LANG_ENTRY_END( POLISH )
514 /*x16*/ LANG_ENTRY_BEGIN( "pt", PORTUGUESE )
515 LANG_SUB_ENTRY( "BR", PORTUGUESE, PORTUGUESE_BRAZILIAN )
516 LANG_SUB_ENTRY( "PT", PORTUGUESE, PORTUGUESE )
517 LANG_ENTRY_END( PORTUGUESE )
518 /*x17*/ LANG_ENTRY_BEGIN( "rm", RHAETO_ROMANCE )
519 LANG_ENTRY_END( RHAETO_ROMANCE )
520 /*x18*/ LANG_ENTRY_BEGIN( "ro", ROMANIAN )
521 LANG_SUB_ENTRY( "RO", ROMANIAN, ROMANIAN )
522 LANG_SUB_ENTRY( "MD", ROMANIAN, ROMANIAN_MOLDAVIA )
523 LANG_ENTRY_END( ROMANIAN )
524 /*x19*/ LANG_ENTRY_BEGIN( "ru", RUSSIAN )
525 LANG_SUB_ENTRY( "RU", RUSSIAN, RUSSIAN )
526 LANG_SUB_ENTRY( "MD", RUSSIAN, RUSSIAN_MOLDAVIA )
527 LANG_ENTRY_END( RUSSIAN )
528 /*x1a*/ if (!strcmp(lang,"sh") || !strcmp(lang,"hr") || !strcmp(lang,"sr")) {
529 if (!country[0])
530 LANG_DIALECT_ENTRY( SERBO_CROATIAN, NEUTRAL)
531 if (!strcmp(charset,"ISO-8859-5"))
532 LANG_DIALECT_ENTRY( SERBO_CROATIAN, SERBIAN )
533 LANG_SUB_ENTRY( "HR", SERBO_CROATIAN, CROATIAN )
534 if (!strcmp(country,"YU") && !strcmp(charset,"ISO-8859-2"))
535 LANG_DIALECT_ENTRY( SERBO_CROATIAN, SERBIAN_LATIN )
536 LANG_SUB_ENTRY( "YU", SERBO_CROATIAN, SERBIAN )
537 LANG_DIALECT_ENTRY( SERBO_CROATIAN, SERBIAN_LATIN )
539 /*x1b*/ LANG_ENTRY_BEGIN( "sk", SLOVAK )
540 LANG_ENTRY_END( SLOVAK )
541 /*x1c*/ LANG_ENTRY_BEGIN( "sq", ALBANIAN )
542 LANG_ENTRY_END( ALBANIAN )
543 /*x1d*/ LANG_ENTRY_BEGIN( "sv", SWEDISH )
544 LANG_SUB_ENTRY( "SE", SWEDISH, SWEDISH )
545 LANG_SUB_ENTRY( "FI", SWEDISH, SWEDISH_FINLAND )
546 LANG_ENTRY_END( SWEDISH )
547 /*x1e*/ LANG_ENTRY_BEGIN( "th", THAI )
548 LANG_ENTRY_END( THAI )
549 /*x1f*/ LANG_ENTRY_BEGIN( "tr", TURKISH )
550 LANG_ENTRY_END( TURKISH )
551 /*x20*/ LANG_ENTRY_BEGIN( "ur", URDU )
552 LANG_ENTRY_END( URDU )
553 /*x21*/ LANG_ENTRY_BEGIN( "in", INDONESIAN )
554 LANG_ENTRY_END( INDONESIAN )
555 /*x22*/ LANG_ENTRY_BEGIN( "uk", UKRAINIAN )
556 LANG_ENTRY_END( UKRAINIAN )
557 /*x23*/ LANG_ENTRY_BEGIN( "be", BYELORUSSIAN )
558 LANG_ENTRY_END( BYELORUSSIAN )
559 /*x24*/ LANG_ENTRY_BEGIN( "sl", SLOVENIAN )
560 LANG_ENTRY_END( SLOVENIAN )
561 /*x25*/ LANG_ENTRY_BEGIN( "et", ESTONIAN )
562 LANG_ENTRY_END( ESTONIAN )
563 /*x26*/ LANG_ENTRY_BEGIN( "lv", LATVIAN )
564 LANG_ENTRY_END( LATVIAN )
565 /*x27*/ LANG_ENTRY_BEGIN( "lt", LITHUANIAN )
566 /* traditional sorting ? */
567 if (!strcmp(dialect,"classic") || !strcmp(dialect,"traditional"))
568 LANG_DIALECT_ENTRY( LITHUANIAN, LITHUANIAN_CLASSIC )
569 else
570 LANG_DIALECT_ENTRY( LITHUANIAN, LITHUANIAN )
571 LANG_ENTRY_END( LITHUANIAN )
572 /*x28*/ LANG_ENTRY_BEGIN( "mi", MAORI )
573 LANG_ENTRY_END( MAORI )
574 /*x29*/ LANG_ENTRY_BEGIN( "fa", FARSI )
575 LANG_ENTRY_END( FARSI )
576 /*x2a*/ LANG_ENTRY_BEGIN( "vi", VIETNAMESE )
577 LANG_ENTRY_END( VIETNAMESE )
578 /*x2b*/ LANG_ENTRY_BEGIN( "hy", ARMENIAN )
579 LANG_ENTRY_END( ARMENIAN )
580 /*x2c*/ LANG_ENTRY_BEGIN( "az", AZERI )
581 /* Cyrillic */
582 if (strstr(charset,"KOI8") || !strcmp(charset,"ISO-8859-5"))
583 LANG_DIALECT_ENTRY( AZERI, AZERI_CYRILLIC )
584 else
585 LANG_DIALECT_ENTRY( AZERI, AZERI )
586 LANG_ENTRY_END( AZERI )
587 /*x2d*/ LANG_ENTRY_BEGIN( "eu", BASQUE )
588 LANG_ENTRY_END( BASQUE )
589 /*x2e*/ /*LANG_ENTRY_BEGIN( "??", SORBIAN )
590 LANG_ENTRY_END( SORBIAN ) */
591 /*x2f*/ LANG_ENTRY_BEGIN( "mk", MACEDONIAN )
592 LANG_ENTRY_END( MACEDONIAN )
593 /*x30*/ /*LANG_ENTRY_BEGIN( "??", SUTU )
594 LANG_ENTRY_END( SUTU ) */
595 /*x31*/ LANG_ENTRY_BEGIN( "ts", TSONGA )
596 LANG_ENTRY_END( TSONGA )
597 /*x32*/ /*LANG_ENTRY_BEGIN( "??", TSWANA )
598 LANG_ENTRY_END( TSWANA ) */
599 /*x33*/ /*LANG_ENTRY_BEGIN( "??", VENDA )
600 LANG_ENTRY_END( VENDA ) */
601 /*x34*/ LANG_ENTRY_BEGIN( "xh", XHOSA )
602 LANG_ENTRY_END( XHOSA )
603 /*x35*/ LANG_ENTRY_BEGIN( "zu", ZULU )
604 LANG_ENTRY_END( ZULU )
605 /*x36*/ LANG_ENTRY_BEGIN( "af", AFRIKAANS )
606 LANG_ENTRY_END( AFRIKAANS )
607 /*x37*/ LANG_ENTRY_BEGIN( "ka", GEORGIAN )
608 LANG_ENTRY_END( GEORGIAN )
609 /*x38*/ LANG_ENTRY_BEGIN( "fo", FAEROESE )
610 LANG_ENTRY_END( FAEROESE )
611 /*x39*/ LANG_ENTRY_BEGIN( "hi", HINDI )
612 LANG_ENTRY_END( HINDI )
613 /*x3a*/ LANG_ENTRY_BEGIN( "mt", MALTESE )
614 LANG_ENTRY_END( MALTESE )
615 /*x3b*/ /*LANG_ENTRY_BEGIN( "??", SAAMI )
616 LANG_ENTRY_END( SAAMI ) */
617 /*x3c*/ LANG_ENTRY_BEGIN( "ga", GAELIC )
618 LANG_DIALECT_ENTRY( GAELIC, GAELIC )
619 LANG_ENTRY_END( GAELIC )
620 /*x3c*/ LANG_ENTRY_BEGIN( "gd", GAELIC )
621 LANG_DIALECT_ENTRY( GAELIC, GAELIC_SCOTTISH )
622 LANG_ENTRY_END( GAELIC )
623 // 0x3d
624 /*x3e*/ LANG_ENTRY_BEGIN( "ms", MALAY )
625 LANG_SUB_ENTRY( "MY", MALAY, MALAY )
626 LANG_SUB_ENTRY( "BN", MALAY, MALAY_BRUNEI_DARUSSALAM )
627 LANG_ENTRY_END( MALAY )
628 /*x3f*/ LANG_ENTRY_BEGIN( "kk", KAZAKH )
629 LANG_ENTRY_END( KAZAKH )
630 // 0x40
631 /*x41*/ LANG_ENTRY_BEGIN( "sw", SWAHILI )
632 LANG_ENTRY_END( SWAHILI )
633 // 0x42
634 /*x43*/ LANG_ENTRY_BEGIN( "uz", UZBEK )
635 /* Cyrillic */
636 if (strstr(charset,"KOI8") || !strcmp(charset,"ISO-8859-5"))
637 LANG_DIALECT_ENTRY( UZBEK, UZBEK_CYRILLIC )
638 else
639 LANG_DIALECT_ENTRY( UZBEK, UZBEK )
640 LANG_ENTRY_END( UZBEK )
641 /*x44*/ LANG_ENTRY_BEGIN( "tt", TATAR )
642 LANG_ENTRY_END( TATAR )
643 /*x45*/ LANG_ENTRY_BEGIN( "bn", BENGALI )
644 LANG_ENTRY_END( BENGALI )
645 /*x46*/ LANG_ENTRY_BEGIN( "pa", PUNJABI )
646 LANG_ENTRY_END( PUNJABI )
647 /*x47*/ LANG_ENTRY_BEGIN( "gu", GUJARATI )
648 LANG_ENTRY_END( GUJARATI )
649 /*x48*/ LANG_ENTRY_BEGIN( "or", ORIYA )
650 LANG_ENTRY_END( ORIYA )
651 /*x49*/ LANG_ENTRY_BEGIN( "ta", TAMIL )
652 LANG_ENTRY_END( TAMIL )
653 /*x4a*/ LANG_ENTRY_BEGIN( "te", TELUGU )
654 LANG_ENTRY_END( TELUGU )
655 /*x4b*/ LANG_ENTRY_BEGIN( "kn", KANNADA )
656 LANG_ENTRY_END( KANNADA )
657 /*x4c*/ LANG_ENTRY_BEGIN( "ml", MALAYALAM )
658 LANG_ENTRY_END( MALAYALAM )
659 /*x4d*/ LANG_ENTRY_BEGIN( "as", ASSAMESE )
660 LANG_ENTRY_END( ASSAMESE )
661 /*x4e*/ LANG_ENTRY_BEGIN( "mr", MARATHI )
662 LANG_ENTRY_END( MARATHI )
663 /*x4f*/ LANG_ENTRY_BEGIN( "sa", SANSKRIT )
664 LANG_ENTRY_END( SANSKRIT )
665 // 0x50 -> 0x56
666 /*x57*/ /*LANG_ENTRY_BEGIN( "??", KONKANI )
667 LANG_ENTRY_END( KONKANI ) */
668 // 0x58 -> ...
669 LANG_ENTRY_BEGIN( "eo", ESPERANTO ) /* not official */
670 LANG_ENTRY_END( ESPERANTO )
672 ret = LANG_NEUTRAL;
674 end_MAIN_GetLanguageID:
675 if (Charset) free(charset);
676 if (Dialect) free(dialect);
678 return ret;
681 /***********************************************************************
682 * MAIN_ParseLanguageOption
684 * Parse -language option.
686 static void MAIN_ParseLanguageOption( char *arg )
688 const WINE_LANGUAGE_DEF *p = Languages;
690 Options.language = LANG_En; /* First language */
691 for (;p->name;p++)
693 if (!lstrcmpi32A( p->name, arg ))
695 WINE_LanguageId = p->langid;
696 return;
698 Options.language++;
700 MSG( "Invalid language specified '%s'. Supported languages are: ", arg );
701 for (p = Languages; p->name; p++) MSG( "%s ", p->name );
702 MSG( "\n" );
703 exit(1);
707 /***********************************************************************
708 * MAIN_ParseModeOption
710 * Parse -mode option.
712 static void MAIN_ParseModeOption( char *arg )
714 if (!lstrcmpi32A("enhanced", arg)) Options.mode = MODE_ENHANCED;
715 else if (!lstrcmpi32A("standard", arg)) Options.mode = MODE_STANDARD;
716 else
718 MSG( "Invalid mode '%s' specified.\n", arg);
719 MSG( "Valid modes are: 'standard', 'enhanced' (default).\n");
720 exit(1);
724 /***********************************************************************
725 * MAIN_ParseOptions
727 * Parse command line options and open display.
729 static void MAIN_ParseOptions( int *argc, char *argv[] )
731 char *display_name = NULL;
732 XrmValue value;
733 XrmDatabase db = TSXrmGetFileDatabase(WINE_APP_DEFAULTS);
734 int i;
735 char *xrm_string;
737 Options.programName = MAIN_GetProgramName( *argc, argv );
738 Options.argv0 = argv[0];
740 /* Get display name from command line */
741 for (i = 1; i < *argc; i++)
743 if (!strcmp( argv[i], "-display" )) display_name = argv[i+1];
744 if (!strcmp( argv[i], "-v" ) || !strcmp( argv[i], "-version" ))
746 MSG( "%s\n", WINE_RELEASE_INFO );
747 exit(0);
749 if (!strcmp( argv[i], "-h" ) || !strcmp( argv[i], "-help" ))
751 MAIN_Usage(argv[0]);
752 exit(0);
756 /* Open display */
758 if (display_name == NULL &&
759 MAIN_GetResource( db, ".display", &value )) display_name = value.addr;
761 if (!(display = TSXOpenDisplay( display_name )))
763 MSG( "%s: Can't open display: %s\n",
764 argv[0], display_name ? display_name : "(none specified)" );
765 exit(1);
768 /* tell the libX11 that we will do input method handling ourselves
769 * that keep libX11 from doing anything whith dead keys, allowing Wine
770 * to have total control over dead keys, that is this line allows
771 * them to work in Wine, even whith a libX11 including the dead key
772 * patches from Th.Quinot (http://Web.FdN.FR/~tquinot/dead-keys.en.html)
774 TSXOpenIM(display,NULL,NULL,NULL);
776 /* Merge file and screen databases */
777 if ((xrm_string = TSXResourceManagerString( display )) != NULL)
779 XrmDatabase display_db = TSXrmGetStringDatabase( xrm_string );
780 TSXrmMergeDatabases( display_db, &db );
783 /* Parse command line */
784 TSXrmParseCommand( &db, optionsTable, NB_OPTIONS,
785 Options.programName, argc, argv );
787 /* Get all options */
788 if (MAIN_GetResource( db, ".iconic", &value ))
789 Options.cmdShow = SW_SHOWMINIMIZED;
790 if (MAIN_GetResource( db, ".privatemap", &value ))
791 Options.usePrivateMap = TRUE;
792 if (MAIN_GetResource( db, ".fixedmap", &value ))
793 Options.useFixedMap = TRUE;
794 if (MAIN_GetResource( db, ".synchronous", &value ))
795 Options.synchronous = TRUE;
796 if (MAIN_GetResource( db, ".backingstore", &value ))
797 Options.backingstore = TRUE;
798 if (MAIN_GetResource( db, ".debug", &value ))
799 Options.debug = TRUE;
800 if (MAIN_GetResource( db, ".failreadonly", &value ))
801 Options.failReadOnly = TRUE;
802 if (MAIN_GetResource( db, ".perfect", &value ))
803 Options.perfectGraphics = TRUE;
804 if (MAIN_GetResource( db, ".depth", &value))
805 screenDepth = atoi( value.addr );
806 if (MAIN_GetResource( db, ".desktop", &value))
807 Options.desktopGeometry = value.addr;
808 if (MAIN_GetResource( db, ".language", &value))
809 MAIN_ParseLanguageOption( (char *)value.addr );
810 if (MAIN_GetResource( db, ".managed", &value))
811 Options.managed = TRUE;
812 if (MAIN_GetResource( db, ".mode", &value))
813 MAIN_ParseModeOption( (char *)value.addr );
814 if (MAIN_GetResource( db, ".debugoptions", &value))
815 MAIN_ParseDebugOptions((char*)value.addr);
816 if (MAIN_GetResource( db, ".debugmsg", &value))
818 #ifndef DEBUG_RUNTIME
819 MSG("%s: Option \"-debugmsg\" not implemented.\n" \
820 " Recompile with DEBUG_RUNTIME in include/debugtools.h defined.\n",
821 argv[0]);
822 exit(1);
823 #else
824 if (MAIN_ParseDebugOptions((char*)value.addr)==FALSE)
826 int i;
827 MSG("%s: Syntax: -debugmsg [class]+xxx,... or "
828 "-debugmsg [class]-xxx,...\n",argv[0]);
829 MSG("Example: -debugmsg +all,warn-heap\n"
830 " turn on all messages except warning heap messages\n");
831 MSG("Special case: -debugmsg +relay=DLL:DLL.###:FuncName\n"
832 " turn on -debugmsg +relay only as specified\n"
833 "Special case: -debugmsg -relay=DLL:DLL.###:FuncName\n"
834 " turn on -debugmsg +relay except as specified\n"
835 "Also permitted, +snoop=..., -snoop=... as with relay.\n\n");
837 MSG("Available message classes:\n");
838 for(i=0;i<DEBUG_CLASS_COUNT;i++)
839 MSG( "%-9s", debug_cl_name[i]);
840 MSG("\n\n");
842 MSG("Available message types:\n");
843 MSG("%-9s ","all");
844 for(i=0;i<DEBUG_CHANNEL_COUNT;i++)
845 if(debug_ch_name[i])
846 MSG("%-9s%c",debug_ch_name[i],
847 (((i+2)%8==0)?'\n':' '));
848 MSG("\n\n");
849 exit(1);
851 #endif
854 if (MAIN_GetResource( db, ".dll", &value))
856 /* Hack: store option value in Options to be retrieved */
857 /* later on inside the emulator code. */
858 if (!__winelib) Options.dllFlags = xstrdup((char *)value.addr);
859 else
861 MSG("-dll not supported in Winelib\n" );
862 exit(1);
866 if (MAIN_GetResource( db, ".winver", &value))
867 VERSION_ParseVersion( (char*)value.addr );
868 if (MAIN_GetResource( db, ".config", &value))
869 Options.configFileName = xstrdup((char *)value.addr);
873 /***********************************************************************
874 * MAIN_CreateDesktop
876 static void MAIN_CreateDesktop( int argc, char *argv[] )
878 int x, y, flags;
879 unsigned int width = 640, height = 480; /* Default size = 640x480 */
880 char *name = "Wine desktop";
881 XSizeHints *size_hints;
882 XWMHints *wm_hints;
883 XClassHint *class_hints;
884 XSetWindowAttributes win_attr;
885 XTextProperty window_name;
886 Atom XA_WM_DELETE_WINDOW;
888 flags = TSXParseGeometry( Options.desktopGeometry, &x, &y, &width, &height );
889 screenWidth = width;
890 screenHeight = height;
892 /* Create window */
894 win_attr.background_pixel = BlackPixel(display,0);
895 win_attr.event_mask = ExposureMask | KeyPressMask | KeyReleaseMask |
896 PointerMotionMask | ButtonPressMask |
897 ButtonReleaseMask | EnterWindowMask;
898 win_attr.cursor = TSXCreateFontCursor( display, XC_top_left_arrow );
900 rootWindow = TSXCreateWindow( display, DefaultRootWindow(display),
901 x, y, width, height, 0,
902 CopyFromParent, InputOutput, CopyFromParent,
903 CWBackPixel | CWEventMask | CWCursor, &win_attr );
905 /* Set window manager properties */
907 size_hints = TSXAllocSizeHints();
908 wm_hints = TSXAllocWMHints();
909 class_hints = TSXAllocClassHint();
910 if (!size_hints || !wm_hints || !class_hints)
912 MSG("Not enough memory for window manager hints.\n" );
913 exit(1);
915 size_hints->min_width = size_hints->max_width = width;
916 size_hints->min_height = size_hints->max_height = height;
917 size_hints->flags = PMinSize | PMaxSize;
918 if (flags & (XValue | YValue)) size_hints->flags |= USPosition;
919 if (flags & (WidthValue | HeightValue)) size_hints->flags |= USSize;
920 else size_hints->flags |= PSize;
922 wm_hints->flags = InputHint | StateHint;
923 wm_hints->input = True;
924 wm_hints->initial_state = NormalState;
925 class_hints->res_name = argv[0];
926 class_hints->res_class = "Wine";
928 TSXStringListToTextProperty( &name, 1, &window_name );
929 TSXSetWMProperties( display, rootWindow, &window_name, &window_name,
930 argv, argc, size_hints, wm_hints, class_hints );
931 XA_WM_DELETE_WINDOW = TSXInternAtom( display, "WM_DELETE_WINDOW", False );
932 TSXSetWMProtocols( display, rootWindow, &XA_WM_DELETE_WINDOW, 1 );
933 TSXFree( size_hints );
934 TSXFree( wm_hints );
935 TSXFree( class_hints );
937 /* Map window */
939 TSXMapWindow( display, rootWindow );
943 XKeyboardState keyboard_state;
945 /***********************************************************************
946 * MAIN_SaveSetup
948 static void MAIN_SaveSetup(void)
950 TSXGetKeyboardControl(display, &keyboard_state);
953 /***********************************************************************
954 * MAIN_RestoreSetup
956 static void MAIN_RestoreSetup(void)
958 XKeyboardControl keyboard_value;
960 keyboard_value.key_click_percent = keyboard_state.key_click_percent;
961 keyboard_value.bell_percent = keyboard_state.bell_percent;
962 keyboard_value.bell_pitch = keyboard_state.bell_pitch;
963 keyboard_value.bell_duration = keyboard_state.bell_duration;
964 keyboard_value.auto_repeat_mode = keyboard_state.global_auto_repeat;
966 XChangeKeyboardControl(display, KBKeyClickPercent | KBBellPercent |
967 KBBellPitch | KBBellDuration | KBAutoRepeatMode, &keyboard_value);
971 /***********************************************************************
972 * called_at_exit
974 static void called_at_exit(void)
976 MAIN_RestoreSetup();
977 COLOR_Cleanup();
978 WINSOCK_Shutdown();
979 /* FIXME: should check for other processes or threads */
980 DeleteCriticalSection( HEAP_SystemLock );
983 static int WINE_X11_ErrorHandler(Display *display,XErrorEvent *error_evt)
985 kill( getpid(), SIGHUP ); /* force an entry in the debugger */
986 return 0;
989 /***********************************************************************
990 * MAIN_WineInit
992 * Wine initialisation and command-line parsing
994 BOOL32 MAIN_WineInit( int *argc, char *argv[] )
996 int depth_count, i;
997 int *depth_list;
998 struct timeval tv;
1000 #ifdef MALLOC_DEBUGGING
1001 char *trace;
1003 mcheck(NULL);
1004 if (!(trace = getenv("MALLOC_TRACE")))
1006 MSG( "MALLOC_TRACE not set. No trace generated\n" );
1008 else
1010 MSG( "malloc trace goes to %s\n", trace );
1011 mtrace();
1013 #endif
1015 setbuf(stdout,NULL);
1016 setbuf(stderr,NULL);
1018 setlocale(LC_CTYPE,"");
1019 gettimeofday( &tv, NULL);
1020 MSG_WineStartTicks = (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
1022 /* We need this before calling any Xlib function */
1023 InitializeCriticalSection( &X11DRV_CritSection );
1025 TSXrmInitialize();
1027 putenv("XKB_DISABLE="); /* Disable XKB extension if present. */
1029 MAIN_ParseOptions( argc, argv );
1031 if (Options.synchronous) XSetErrorHandler( WINE_X11_ErrorHandler );
1033 if (Options.desktopGeometry && Options.managed)
1035 #if 0
1036 MSG( "%s: -managed and -desktop options cannot be used together\n",
1037 Options.programName );
1038 exit(1);
1039 #else
1040 Options.managed = FALSE;
1041 #endif
1044 screen = DefaultScreenOfDisplay( display );
1045 screenWidth = WidthOfScreen( screen );
1046 screenHeight = HeightOfScreen( screen );
1047 if (screenDepth) /* -depth option specified */
1049 depth_list = TSXListDepths(display,DefaultScreen(display),&depth_count);
1050 for (i = 0; i < depth_count; i++)
1051 if (depth_list[i] == screenDepth) break;
1052 TSXFree( depth_list );
1053 if (i >= depth_count)
1055 MSG( "%s: Depth %d not supported on this screen.\n",
1056 Options.programName, screenDepth );
1057 exit(1);
1060 else screenDepth = DefaultDepthOfScreen( screen );
1061 if (Options.synchronous) TSXSynchronize( display, True );
1062 if (Options.desktopGeometry) MAIN_CreateDesktop( *argc, argv );
1063 else rootWindow = DefaultRootWindow( display );
1065 MAIN_SaveSetup();
1066 atexit(called_at_exit);
1067 return TRUE;
1071 /***********************************************************************
1072 * MessageBeep16 (USER.104)
1074 void WINAPI MessageBeep16( UINT16 i )
1076 MessageBeep32( i );
1080 /***********************************************************************
1081 * MessageBeep32 (USER32.390)
1083 BOOL32 WINAPI MessageBeep32( UINT32 i )
1085 TSXBell( display, 0 );
1086 return TRUE;
1090 /***********************************************************************
1091 * Beep (KERNEL32.11)
1093 BOOL32 WINAPI Beep( DWORD dwFreq, DWORD dwDur )
1095 /* dwFreq and dwDur are ignored by Win95 */
1096 TSXBell(display, 0);
1097 return TRUE;
1101 /***********************************************************************
1102 * GetTimerResolution (USER.14)
1104 LONG WINAPI GetTimerResolution(void)
1106 return (1000);
1109 /***********************************************************************
1110 * SystemParametersInfo32A (USER32.540)
1112 BOOL32 WINAPI SystemParametersInfo32A( UINT32 uAction, UINT32 uParam,
1113 LPVOID lpvParam, UINT32 fuWinIni )
1115 int timeout, temp;
1116 XKeyboardState keyboard_state;
1118 switch (uAction) {
1119 case SPI_GETBEEP:
1120 TSXGetKeyboardControl(display, &keyboard_state);
1121 if (keyboard_state.bell_percent == 0)
1122 *(BOOL32 *) lpvParam = FALSE;
1123 else
1124 *(BOOL32 *) lpvParam = TRUE;
1125 break;
1127 case SPI_GETBORDER:
1128 *(INT32 *)lpvParam = GetSystemMetrics32( SM_CXFRAME );
1129 break;
1131 case SPI_GETFASTTASKSWITCH:
1132 if ( GetProfileInt32A( "windows", "CoolSwitch", 1 ) == 1 )
1133 *(BOOL32 *) lpvParam = TRUE;
1134 else
1135 *(BOOL32 *) lpvParam = FALSE;
1136 break;
1138 case SPI_GETDRAGFULLWINDOWS:
1139 *(BOOL32 *) lpvParam = FALSE;
1141 case SPI_GETGRIDGRANULARITY:
1142 *(INT32*)lpvParam=GetProfileInt32A("desktop","GridGranularity",1);
1143 break;
1145 case SPI_GETICONTITLEWRAP:
1146 *(BOOL32*)lpvParam=GetProfileInt32A("desktop","IconTitleWrap",TRUE);
1147 break;
1149 case SPI_GETKEYBOARDDELAY:
1150 *(INT32*)lpvParam=GetProfileInt32A("keyboard","KeyboardDelay",1);
1151 break;
1153 case SPI_GETKEYBOARDSPEED:
1154 *(DWORD*)lpvParam=GetProfileInt32A("keyboard","KeyboardSpeed",30);
1155 break;
1157 case SPI_GETMENUDROPALIGNMENT:
1158 *(BOOL32*)lpvParam=GetSystemMetrics32(SM_MENUDROPALIGNMENT); /* XXX check this */
1159 break;
1161 case SPI_GETSCREENSAVEACTIVE:
1162 if ( GetProfileInt32A( "windows", "ScreenSaveActive", 1 ) == 1 )
1163 *(BOOL32*)lpvParam = TRUE;
1164 else
1165 *(BOOL32*)lpvParam = FALSE;
1166 break;
1168 case SPI_GETSCREENSAVETIMEOUT:
1169 /* FIXME GetProfileInt( "windows", "ScreenSaveTimeout", 300 ); */
1170 TSXGetScreenSaver(display, &timeout, &temp,&temp,&temp);
1171 *(INT32 *) lpvParam = timeout * 1000;
1172 break;
1174 case SPI_ICONHORIZONTALSPACING:
1175 /* FIXME Get/SetProfileInt */
1176 if (lpvParam == NULL)
1177 /*SetSystemMetrics( SM_CXICONSPACING, uParam )*/ ;
1178 else
1179 *(INT32*)lpvParam=GetSystemMetrics32(SM_CXICONSPACING);
1180 break;
1182 case SPI_ICONVERTICALSPACING:
1183 /* FIXME Get/SetProfileInt */
1184 if (lpvParam == NULL)
1185 /*SetSystemMetrics( SM_CYICONSPACING, uParam )*/ ;
1186 else
1187 *(INT32*)lpvParam=GetSystemMetrics32(SM_CYICONSPACING);
1188 break;
1190 case SPI_GETICONTITLELOGFONT: {
1191 LPLOGFONT32A lpLogFont = (LPLOGFONT32A)lpvParam;
1193 /* from now on we always have an alias for MS Sans Serif */
1195 GetProfileString32A("Desktop", "IconTitleFaceName", "MS Sans Serif",
1196 lpLogFont->lfFaceName, LF_FACESIZE );
1197 lpLogFont->lfHeight = -GetProfileInt32A("Desktop","IconTitleSize", 8);
1198 lpLogFont->lfWidth = 0;
1199 lpLogFont->lfEscapement = lpLogFont->lfOrientation = 0;
1200 lpLogFont->lfWeight = FW_NORMAL;
1201 lpLogFont->lfItalic = FALSE;
1202 lpLogFont->lfStrikeOut = FALSE;
1203 lpLogFont->lfUnderline = FALSE;
1204 lpLogFont->lfCharSet = ANSI_CHARSET;
1205 lpLogFont->lfOutPrecision = OUT_DEFAULT_PRECIS;
1206 lpLogFont->lfClipPrecision = CLIP_DEFAULT_PRECIS;
1207 lpLogFont->lfPitchAndFamily = DEFAULT_PITCH | FF_SWISS;
1208 break;
1210 case SPI_GETWORKAREA:
1211 SetRect32( (RECT32 *)lpvParam, 0, 0,
1212 GetSystemMetrics32( SM_CXSCREEN ),
1213 GetSystemMetrics32( SM_CYSCREEN )
1215 break;
1216 case SPI_GETNONCLIENTMETRICS:
1218 #define lpnm ((LPNONCLIENTMETRICS32A)lpvParam)
1220 if( lpnm->cbSize == sizeof(NONCLIENTMETRICS32A) )
1222 /* FIXME: initialize geometry entries */
1224 SystemParametersInfo32A(SPI_GETICONTITLELOGFONT, 0,
1225 (LPVOID)&(lpnm->lfCaptionFont),0);
1226 lpnm->lfCaptionFont.lfWeight = FW_BOLD;
1227 SystemParametersInfo32A(SPI_GETICONTITLELOGFONT, 0,
1228 (LPVOID)&(lpnm->lfSmCaptionFont),0);
1229 SystemParametersInfo32A(SPI_GETICONTITLELOGFONT, 0,
1230 (LPVOID)&(lpnm->lfMenuFont),0);
1231 SystemParametersInfo32A(SPI_GETICONTITLELOGFONT, 0,
1232 (LPVOID)&(lpnm->lfStatusFont),0);
1233 SystemParametersInfo32A(SPI_GETICONTITLELOGFONT, 0,
1234 (LPVOID)&(lpnm->lfMessageFont),0);
1236 #undef lpnm
1237 break;
1239 case SPI_GETANIMATION: {
1240 LPANIMATIONINFO lpAnimInfo = (LPANIMATIONINFO)lpvParam;
1242 /* Tell it "disabled" */
1243 lpAnimInfo->cbSize = sizeof(ANIMATIONINFO);
1244 uParam = sizeof(ANIMATIONINFO);
1245 lpAnimInfo->iMinAnimate = 0; /* Minimise and restore animation is disabled (nonzero == enabled) */
1246 break;
1249 case SPI_SETANIMATION: {
1250 LPANIMATIONINFO lpAnimInfo = (LPANIMATIONINFO)lpvParam;
1252 /* Do nothing */
1253 WARN(system, "SPI_SETANIMATION ignored.\n");
1254 lpAnimInfo->cbSize = sizeof(ANIMATIONINFO);
1255 uParam = sizeof(ANIMATIONINFO);
1256 break;
1259 case SPI_GETHIGHCONTRAST:
1261 LPHIGHCONTRASTA lpHighContrastA = (LPHIGHCONTRASTA)lpvParam;
1263 FIXME(system,"SPI_GETHIGHCONTRAST not fully implemented\n");
1265 if ( lpHighContrastA->cbSize == sizeof( HIGHCONTRASTA ) )
1267 /* Indicate that there is no high contrast available */
1268 lpHighContrastA->dwFlags = 0;
1269 lpHighContrastA->lpszDefaultScheme = NULL;
1271 else
1273 return FALSE;
1276 break;
1279 default:
1280 return SystemParametersInfo16(uAction,uParam,lpvParam,fuWinIni);
1282 return TRUE;
1286 /***********************************************************************
1287 * SystemParametersInfo16 (USER.483)
1289 BOOL16 WINAPI SystemParametersInfo16( UINT16 uAction, UINT16 uParam,
1290 LPVOID lpvParam, UINT16 fuWinIni )
1292 int timeout, temp;
1293 char buffer[256];
1294 XKeyboardState keyboard_state;
1295 XKeyboardControl keyboard_value;
1298 switch (uAction)
1300 case SPI_GETBEEP:
1301 TSXGetKeyboardControl(display, &keyboard_state);
1302 if (keyboard_state.bell_percent == 0)
1303 *(BOOL16 *) lpvParam = FALSE;
1304 else
1305 *(BOOL16 *) lpvParam = TRUE;
1306 break;
1308 case SPI_GETBORDER:
1309 *(INT16 *)lpvParam = GetSystemMetrics16( SM_CXFRAME );
1310 break;
1312 case SPI_GETFASTTASKSWITCH:
1313 if ( GetProfileInt32A( "windows", "CoolSwitch", 1 ) == 1 )
1314 *(BOOL16 *) lpvParam = TRUE;
1315 else
1316 *(BOOL16 *) lpvParam = FALSE;
1317 break;
1319 case SPI_GETGRIDGRANULARITY:
1320 *(INT16 *) lpvParam = GetProfileInt32A( "desktop",
1321 "GridGranularity",
1322 1 );
1323 break;
1325 case SPI_GETICONTITLEWRAP:
1326 *(BOOL16 *) lpvParam = GetProfileInt32A( "desktop",
1327 "IconTitleWrap",
1328 TRUE );
1329 break;
1331 case SPI_GETKEYBOARDDELAY:
1332 *(INT16 *) lpvParam = GetProfileInt32A( "keyboard",
1333 "KeyboardDelay", 1 );
1334 break;
1336 case SPI_GETKEYBOARDSPEED:
1337 *(WORD *) lpvParam = GetProfileInt32A( "keyboard",
1338 "KeyboardSpeed",
1339 30 );
1340 break;
1342 case SPI_GETMENUDROPALIGNMENT:
1343 *(BOOL16 *) lpvParam = GetSystemMetrics16( SM_MENUDROPALIGNMENT ); /* XXX check this */
1344 break;
1346 case SPI_GETSCREENSAVEACTIVE:
1347 if ( GetProfileInt32A( "windows", "ScreenSaveActive", 1 ) == 1 )
1348 *(BOOL16 *) lpvParam = TRUE;
1349 else
1350 *(BOOL16 *) lpvParam = FALSE;
1351 break;
1353 case SPI_GETSCREENSAVETIMEOUT:
1354 /* FIXME GetProfileInt( "windows", "ScreenSaveTimeout", 300 ); */
1355 TSXGetScreenSaver(display, &timeout, &temp,&temp,&temp);
1356 *(INT16 *) lpvParam = timeout;
1357 break;
1359 case SPI_ICONHORIZONTALSPACING:
1360 /* FIXME Get/SetProfileInt */
1361 if (lpvParam == NULL)
1362 /*SetSystemMetrics( SM_CXICONSPACING, uParam )*/ ;
1363 else
1364 *(INT16 *)lpvParam = GetSystemMetrics16( SM_CXICONSPACING );
1365 break;
1367 case SPI_ICONVERTICALSPACING:
1368 /* FIXME Get/SetProfileInt */
1369 if (lpvParam == NULL)
1370 /*SetSystemMetrics( SM_CYICONSPACING, uParam )*/ ;
1371 else
1372 *(INT16 *)lpvParam = GetSystemMetrics16(SM_CYICONSPACING);
1373 break;
1375 case SPI_SETBEEP:
1376 if (uParam == TRUE)
1377 keyboard_value.bell_percent = -1;
1378 else
1379 keyboard_value.bell_percent = 0;
1380 TSXChangeKeyboardControl(display, KBBellPercent,
1381 &keyboard_value);
1382 break;
1384 case SPI_SETSCREENSAVEACTIVE:
1385 if (uParam == TRUE)
1386 TSXActivateScreenSaver(display);
1387 else
1388 TSXResetScreenSaver(display);
1389 break;
1391 case SPI_SETSCREENSAVETIMEOUT:
1392 TSXSetScreenSaver(display, uParam, 60, DefaultBlanking,
1393 DefaultExposures);
1394 break;
1396 case SPI_SETDESKWALLPAPER:
1397 return (SetDeskWallPaper32((LPSTR) lpvParam));
1398 break;
1400 case SPI_SETDESKPATTERN:
1401 if ((INT16)uParam == -1) {
1402 GetProfileString32A("Desktop", "Pattern",
1403 "170 85 170 85 170 85 170 85",
1404 buffer, sizeof(buffer) );
1405 return (DESKTOP_SetPattern((LPSTR) buffer));
1406 } else
1407 return (DESKTOP_SetPattern((LPSTR) lpvParam));
1408 break;
1410 case SPI_GETICONTITLELOGFONT:
1412 LPLOGFONT16 lpLogFont = (LPLOGFONT16)lpvParam;
1414 GetProfileString32A("Desktop", "IconTitleFaceName", "MS Sans Serif",
1415 lpLogFont->lfFaceName, LF_FACESIZE );
1416 lpLogFont->lfHeight = -GetProfileInt32A("Desktop","IconTitleSize", 8);
1417 lpLogFont->lfWidth = 0;
1418 lpLogFont->lfEscapement = lpLogFont->lfOrientation = 0;
1419 lpLogFont->lfWeight = FW_NORMAL;
1420 lpLogFont->lfItalic = FALSE;
1421 lpLogFont->lfStrikeOut = FALSE;
1422 lpLogFont->lfUnderline = FALSE;
1423 lpLogFont->lfCharSet = ANSI_CHARSET;
1424 lpLogFont->lfOutPrecision = OUT_DEFAULT_PRECIS;
1425 lpLogFont->lfClipPrecision = CLIP_DEFAULT_PRECIS;
1426 lpLogFont->lfPitchAndFamily = DEFAULT_PITCH | FF_SWISS;
1427 break;
1429 case SPI_GETNONCLIENTMETRICS:
1431 #define lpnm ((LPNONCLIENTMETRICS16)lpvParam)
1432 if( lpnm->cbSize == sizeof(NONCLIENTMETRICS16) )
1434 /* FIXME: initialize geometry entries */
1435 SystemParametersInfo16( SPI_GETICONTITLELOGFONT, 0,
1436 (LPVOID)&(lpnm->lfCaptionFont),0);
1437 lpnm->lfCaptionFont.lfWeight = FW_BOLD;
1438 SystemParametersInfo16( SPI_GETICONTITLELOGFONT, 0,
1439 (LPVOID)&(lpnm->lfSmCaptionFont),0);
1440 SystemParametersInfo16( SPI_GETICONTITLELOGFONT, 0,
1441 (LPVOID)&(lpnm->lfMenuFont),0);
1442 SystemParametersInfo16( SPI_GETICONTITLELOGFONT, 0,
1443 (LPVOID)&(lpnm->lfStatusFont),0);
1444 SystemParametersInfo16( SPI_GETICONTITLELOGFONT, 0,
1445 (LPVOID)&(lpnm->lfMessageFont),0);
1447 else /* winfile 95 sets sbSize to 340 */
1448 SystemParametersInfo32A( uAction, uParam, lpvParam, fuWinIni );
1449 #undef lpnm
1450 break;
1452 case SPI_LANGDRIVER:
1453 case SPI_SETBORDER:
1454 case SPI_SETDOUBLECLKHEIGHT:
1455 case SPI_SETDOUBLECLICKTIME:
1456 case SPI_SETDOUBLECLKWIDTH:
1457 case SPI_SETFASTTASKSWITCH:
1458 case SPI_SETKEYBOARDDELAY:
1459 case SPI_SETKEYBOARDSPEED:
1460 WARN(system, "Option %d ignored.\n", uAction);
1461 break;
1463 case SPI_GETWORKAREA:
1464 SetRect16( (RECT16 *)lpvParam, 0, 0,
1465 GetSystemMetrics16( SM_CXSCREEN ),
1466 GetSystemMetrics16( SM_CYSCREEN ) );
1467 break;
1469 default:
1470 WARN(system, "Unknown option %d.\n", uAction);
1471 break;
1473 return 1;
1476 /***********************************************************************
1477 * SystemParametersInfo32W (USER32.541)
1479 BOOL32 WINAPI SystemParametersInfo32W( UINT32 uAction, UINT32 uParam,
1480 LPVOID lpvParam, UINT32 fuWinIni )
1482 char buffer[256];
1484 switch (uAction)
1486 case SPI_SETDESKWALLPAPER:
1487 if (lpvParam)
1489 lstrcpynWtoA(buffer,(LPWSTR)lpvParam,sizeof(buffer));
1490 return SetDeskWallPaper32(buffer);
1492 return SetDeskWallPaper32(NULL);
1494 case SPI_SETDESKPATTERN:
1495 if ((INT32) uParam == -1)
1497 GetProfileString32A("Desktop", "Pattern",
1498 "170 85 170 85 170 85 170 85",
1499 buffer, sizeof(buffer) );
1500 return (DESKTOP_SetPattern((LPSTR) buffer));
1502 if (lpvParam)
1504 lstrcpynWtoA(buffer,(LPWSTR)lpvParam,sizeof(buffer));
1505 return DESKTOP_SetPattern(buffer);
1507 return DESKTOP_SetPattern(NULL);
1509 case SPI_GETICONTITLELOGFONT:
1511 LPLOGFONT32W lpLogFont = (LPLOGFONT32W)lpvParam;
1512 GetProfileString32A("Desktop", "IconTitleFaceName", "MS Sans Serif",
1513 buffer, sizeof(buffer) );
1514 lstrcpynAtoW(lpLogFont->lfFaceName, buffer ,LF_FACESIZE);
1515 lpLogFont->lfHeight = 10;
1516 lpLogFont->lfWidth = 0;
1517 lpLogFont->lfEscapement = lpLogFont->lfOrientation = 0;
1518 lpLogFont->lfWeight = FW_NORMAL;
1519 lpLogFont->lfItalic = lpLogFont->lfStrikeOut = lpLogFont->lfUnderline = FALSE;
1520 lpLogFont->lfCharSet = ANSI_CHARSET;
1521 lpLogFont->lfOutPrecision = OUT_DEFAULT_PRECIS;
1522 lpLogFont->lfClipPrecision = CLIP_DEFAULT_PRECIS;
1523 lpLogFont->lfPitchAndFamily = DEFAULT_PITCH | FF_SWISS;
1525 break;
1526 case SPI_GETNONCLIENTMETRICS: {
1527 /* FIXME: implement correctly */
1528 LPNONCLIENTMETRICS32W lpnm=(LPNONCLIENTMETRICS32W)lpvParam;
1530 SystemParametersInfo32W(SPI_GETICONTITLELOGFONT,0,(LPVOID)&(lpnm->lfCaptionFont),0);
1531 lpnm->lfCaptionFont.lfWeight = FW_BOLD;
1532 SystemParametersInfo32W(SPI_GETICONTITLELOGFONT,0,(LPVOID)&(lpnm->lfSmCaptionFont),0);
1533 SystemParametersInfo32W(SPI_GETICONTITLELOGFONT,0,(LPVOID)&(lpnm->lfMenuFont),0);
1534 SystemParametersInfo32W(SPI_GETICONTITLELOGFONT,0,(LPVOID)&(lpnm->lfStatusFont),0);
1535 SystemParametersInfo32W(SPI_GETICONTITLELOGFONT,0,(LPVOID)&(lpnm->lfMessageFont),0);
1536 break;
1539 case SPI_GETHIGHCONTRAST:
1541 LPHIGHCONTRASTW lpHighContrastW = (LPHIGHCONTRASTW)lpvParam;
1543 FIXME(system,"SPI_GETHIGHCONTRAST not fully implemented\n");
1545 if ( lpHighContrastW->cbSize == sizeof( HIGHCONTRASTW ) )
1547 /* Indicate that there is no high contrast available */
1548 lpHighContrastW->dwFlags = 0;
1549 lpHighContrastW->lpszDefaultScheme = NULL;
1551 else
1553 return FALSE;
1556 break;
1559 default:
1560 return SystemParametersInfo32A(uAction,uParam,lpvParam,fuWinIni);
1563 return TRUE;
1567 /***********************************************************************
1568 * FileCDR (KERNEL.130)
1570 FARPROC16 WINAPI FileCDR(FARPROC16 x)
1572 FIXME(file,"(0x%8x): stub\n", (int) x);
1573 return (FARPROC16)TRUE;