Bug fixes.
[wine/multimedia.git] / misc / tweak.c
blob4c30596d4be963ed457cf73a6e58b06e092a43da
1 /******************************************************************************
3 * tweak.c
5 * Windows 95 style interface tweaks.
6 * Copyright (c) 1997 Dave Cuthbert.
8 * FIXME: This file is, unfortunately, aptly named: the method of
9 * displaying Win95 style windows is a tweak. Lots of stuff does not yet
10 * work -- and probably never will unless some of this code is
11 * incorporated into the mainstream Wine code.
13 * DEVELOPERS, PLEASE NOTE: Before delving into the mainstream code and
14 * altering it, consider how your changes will affect the Win3.1 interface
15 * (which has taken a major effort to create!). After you make any sort of
16 * non-trivial change, *test* the Wine code running in Win3.1 mode! The
17 * object here is to make it so that the person who tests the latest version
18 * of Wine without adding the tweaks into wine.conf notices nothing out of
19 * the ordinary.
21 * Revision history
22 * 03-Jul-1997 Dave Cuthbert (dacut@ece.cmu.edu)
23 * Original implementation.
24 * 05-Aug-1998 Eric Kohl (ekohl@abo.rhein-zeitung.de)
25 * Removed some unused code.
26 * 22-Sep-1998 Eric Kohl (ekohl@abo.rhein-zeitung.de)
27 * Removed more unused code.
29 *****************************************************************************/
31 #include <string.h>
32 #include "winuser.h"
33 #include "tweak.h"
34 #include "options.h"
35 #include "debugtools.h"
37 DEFAULT_DEBUG_CHANNEL(tweak)
39 /* General options */
41 WINE_LOOK TWEAK_WineLook = WIN31_LOOK;
44 /******************************************************************************
46 * int TWEAK_Init()
48 * Does the full initialization of the Win95 tweak subsystem. Return value
49 * indicates success. Called by loader/main.c's MAIN_Init().
51 * Revision history
52 * 05-Jul-1997 Dave Cuthbert (dacut@ece.cmu.edu)
53 * Original implementation.
54 * 22-Sep-1998 Eric Kohl (ekohl@abo.rhein-zeitung.de)
55 * Removed unused code and added Win98 option.
57 *****************************************************************************/
59 int TWEAK_Init (void)
61 char szIniString[80];
63 PROFILE_GetWineIniString ("Tweak.Layout", "Win95Look", "TestString",
64 szIniString, 80);
65 if (strncmp (szIniString, "TestString", 10)) {
66 if (PROFILE_GetWineIniBool ("Tweak.Layout", "Win95Look", 0)) {
67 TWEAK_WineLook = WIN95_LOOK;
68 TRACE("Using Win95 look and feel.\n");
70 else {
71 TWEAK_WineLook = WIN31_LOOK;
72 TRACE("Using Win3.1 look and feel.\n");
74 ERR(
75 "Replace \"Win95Look\" by \"WineLook\" in your \"wine.ini\"!\n");
78 PROFILE_GetWineIniString ("Tweak.Layout", "WineLook", "Win31",
79 szIniString, 80);
81 if (!strncasecmp (szIniString, "Win31", 5)) {
82 TWEAK_WineLook = WIN31_LOOK;
83 TRACE("Using Win3.1 look and feel.\n");
85 else if (!strncasecmp (szIniString, "Win95", 5)) {
86 TWEAK_WineLook = WIN95_LOOK;
87 TRACE("Using Win95 look and feel.\n");
89 else if (!strncasecmp (szIniString, "Win98", 5)) {
90 TWEAK_WineLook = WIN98_LOOK;
91 TRACE("Using Win98 look and feel.\n");
93 else {
94 TWEAK_WineLook = WIN31_LOOK;
95 TRACE("Using Win3.1 look and feel.\n");
98 return 1;
102 /******************************************************************************
104 * int TWEAK_CheckConfiguration()
106 * Examines wine.conf for old/bad entries and recommends changes to the user.
108 * Revision history
109 * 05-Jul-1997 Dave Cuthbert (dacut@ece.cmu.edu)
110 * Original implementation.
112 *****************************************************************************/
114 int TWEAK_CheckConfiguration()
116 return 1;