]>
git.saurik.com Git - wxWidgets.git/blob - utils/configtool/src/appsettings.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: appsettings.cpp
3 // Purpose: Implements settings-related functionality
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "appsettings.h"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
25 #include "wx/datstrm.h"
27 #include "wx/colordlg.h"
28 #include "wx/wxhtml.h"
29 #include "wx/effects.h"
30 #include "wx/spinctrl.h"
31 #include "wx/tooltip.h"
35 #include "wx/wfstream.h"
36 #include "wx/config.h"
37 #include "wx/fileconf.h"
38 #include "wx/valgen.h"
40 #include "wxconfigtool.h"
41 #include "appsettings.h"
42 #include "mainframe.h"
44 #include "settingsdialog.h"
47 * User-changeable settings
50 IMPLEMENT_DYNAMIC_CLASS(ctSettings
, wxObject
)
52 ctSettings::ctSettings()
56 m_showWelcomeDialog
= true;
57 m_exportDir
= wxEmptyString
;
59 m_frameSize
= wxRect(10, 10, 600, 500);
60 // m_backgroundColour = wxColour(140, 172, 179); // blue-grey
61 m_editWindowFont
= wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
);
63 m_appName
= wxT("wxWidgets Configuration Tool");
64 m_appNameShort
= wxT("Configuration Tool");
65 m_showSplashScreen
= false;
66 m_userName
= wxEmptyString
;
67 m_frameStatus
= ctSHOW_STATUS_NORMAL
;
68 m_loadLastDocument
= true;
69 m_firstTimeRun
= true;
70 m_smallToolbar
= true;
73 m_showTrayIcon
= true;
74 m_trayIconIsShown
= false;
75 m_useEnvironmentVariable
= true;
76 m_frameworkDir
= wxEmptyString
;
77 m_matchWholeWord
= false;
79 m_defaultFileKind
= wxT("Setup file");
83 ctSettings::ctSettings(const ctSettings
& settings
)
89 ctSettings::~ctSettings()
93 void ctSettings::operator = (const ctSettings
& settings
)
98 void ctSettings::Copy (const ctSettings
& settings
)
100 m_lastSetupSaveDir
= settings
.m_lastSetupSaveDir
;
101 m_lastDocument
= settings
.m_lastDocument
;
102 m_showToolBar
= settings
.m_showToolBar
;
103 m_frameSize
= settings
.m_frameSize
;
104 m_editWindowFont
= settings
.m_editWindowFont
;
105 m_showSplashScreen
= settings
.m_showSplashScreen
;
106 m_userName
= settings
.m_userName
;
107 m_loadLastDocument
= settings
.m_loadLastDocument
;
108 m_exportDir
= settings
.m_exportDir
;
109 m_firstTimeRun
= settings
.m_firstTimeRun
;
110 m_noUses
= settings
.m_noUses
;
111 m_smallToolbar
= settings
.m_smallToolbar
;
112 m_useToolTips
= settings
.m_useToolTips
;
113 m_showWelcomeDialog
= settings
.m_showWelcomeDialog
;
114 m_mainSashSize
= settings
.m_mainSashSize
;
116 m_showTrayIcon
= settings
.m_showTrayIcon
;
117 m_trayIconIsShown
= settings
.m_trayIconIsShown
;
119 m_useEnvironmentVariable
= settings
.m_useEnvironmentVariable
;
120 m_frameworkDir
= settings
.m_frameworkDir
;
121 m_matchWholeWord
= settings
.m_matchWholeWord
;
122 m_matchCase
= settings
.m_matchCase
;
123 m_defaultFileKind
= settings
.m_defaultFileKind
;
126 // Do some initialisation within stApp::OnInit
127 bool ctSettings::Init()
129 m_lastSetupSaveDir
= wxEmptyString
;
130 if (m_userName
.IsEmpty())
131 m_userName
= wxGetUserName();
136 // Create new filename
137 wxString
ctSettings::GenerateFilename(const wxString
& rootName
)
140 if (!m_lastFilename
.IsEmpty())
141 path
= wxPathOnly(m_lastFilename
);
143 path
= wxGetApp().GetAppDir();
145 wxString
filename(path
);
146 if (filename
.Last() != wxFILE_SEP_PATH
)
147 filename
+= wxFILE_SEP_PATH
;
148 filename
+= rootName
;
150 wxString fullFilename
= filename
+ wxT(".wxs");
153 while (wxFileExists(fullFilename
))
156 postfixStr
.Printf(_T("%d"), i
);
157 fullFilename
= filename
+ postfixStr
+ wxT(".wxs");
160 m_lastFilename
= fullFilename
;
165 bool ctSettings::LoadConfig()
167 wxConfig
config(wxGetApp().GetSettings().GetAppName(), wxT("wxWidgets"));
169 config
.Read(wxT("Files/LastFile"), & m_lastFilename
);
170 config
.Read(wxT("Files/LastSetupSaveDir"), & m_lastSetupSaveDir
);
171 config
.Read(wxT("Files/ExportDir"), & m_exportDir
);
172 config
.Read(wxT("Files/FrameworkDir"), & m_frameworkDir
);
173 config
.Read(wxT("Files/UseEnvironmentVariable"), (bool*) & m_useEnvironmentVariable
);
175 config
.Read(wxT("Misc/UserName"), & m_userName
);
176 config
.Read(wxT("Misc/FrameStatus"), & m_frameStatus
);
177 config
.Read(wxT("Misc/ShowToolTips"), (bool*) & m_useToolTips
);
178 config
.Read(wxT("Misc/LastDocument"), & m_lastDocument
);
179 config
.Read(wxT("Misc/LoadLastDocument"), (bool*) & m_loadLastDocument
);
180 config
.Read(wxT("Misc/ShowWelcomeDialog"), (bool*) & m_showWelcomeDialog
);
181 config
.Read(wxT("Misc/Ran"), & m_noUses
);
182 config
.Read(wxT("Misc/ShowTrayIcon"), (bool*) & m_showTrayIcon
);
183 config
.Read(wxT("Misc/MatchWholeWord"), (bool*) & m_matchWholeWord
);
184 config
.Read(wxT("Misc/MatchCase"), (bool*) & m_matchCase
);
185 config
.Read(wxT("Misc/BuildMode"), & m_defaultFileKind
);
189 config
.Read(wxT("Windows/ShowToolBar"), (bool*) & m_showToolBar
);
191 m_firstTimeRun
= !(config
.Read(wxT("Windows/WindowX"), & m_frameSize
.x
));
192 config
.Read(wxT("Windows/WindowY"), & m_frameSize
.y
);
193 config
.Read(wxT("Windows/WindowWidth"), & m_frameSize
.width
);
194 config
.Read(wxT("Windows/WindowHeight"), & m_frameSize
.height
);
195 config
.Read(wxT("Windows/ShowSplashScreen"), (bool*) & m_showSplashScreen
);
196 config
.Read(wxT("Windows/SmallToolbar"), (bool*) & m_smallToolbar
);
197 config
.Read(wxT("Windows/MainSashSize"), & m_mainSashSize
);
201 fontSpec
= wxEmptyString
;
202 config
.Read(wxT("Style/EditWindowFont"), & fontSpec
);
203 if (!fontSpec
.IsEmpty())
204 m_editWindowFont
= apStringToFont(fontSpec
);
207 int runningProgram
= 0;
208 config
.Read(wxT("Misc/RunningProgram"), & runningProgram
);
211 // runningProgram should be zero if all is well. If 1,
212 // it crashed during a run, so we should disable the auto-load
213 // facility just in case it's trying to load a damaged file.
214 if (runningProgram
!= 0)
216 m_loadLastDocument
= false;
220 config
.Write(wxT("Misc/RunningProgram"), (long) 1);
226 bool ctSettings::SaveConfig()
228 wxConfig
config(wxGetApp().GetSettings().GetAppName(), wxT("wxWidgets"));
230 config
.Write(wxT("Files/LastFile"), m_lastFilename
);
231 config
.Write(wxT("Files/LastSetupSaveDir"), m_lastSetupSaveDir
);
232 config
.Write(wxT("Files/ExportDir"), m_exportDir
);
233 config
.Write(wxT("Files/FrameworkDir"), m_frameworkDir
);
234 config
.Write(wxT("Files/UseEnvironmentVariable"), m_useEnvironmentVariable
);
236 config
.Write(wxT("Misc/UserName"), m_userName
);
237 config
.Write(wxT("Misc/FrameStatus"), (long) m_frameStatus
);
238 config
.Write(wxT("Misc/ShowToolTips"), m_useToolTips
);
239 config
.Write(wxT("Misc/LastDocument"), m_lastDocument
);
240 config
.Write(wxT("Misc/LoadLastDocument"), (long) m_loadLastDocument
);
241 config
.Write(wxT("Misc/ShowWelcomeDialog"), (long) m_showWelcomeDialog
);
242 config
.Write(wxT("Misc/Ran"), m_noUses
);
243 config
.Write(wxT("Misc/ShowTrayIcon"), (long) m_showTrayIcon
);
244 config
.Write(wxT("Misc/MatchWholeWord"), (long) m_matchWholeWord
);
245 config
.Write(wxT("Misc/MatchCase"), (long) m_matchCase
);
246 config
.Write(wxT("Misc/BuildMode"), m_defaultFileKind
);
248 config
.Write(wxT("Windows/ShowToolBar"), m_showToolBar
);
249 config
.Write(wxT("Windows/WindowX"), (long) m_frameSize
.x
);
250 config
.Write(wxT("Windows/WindowY"), (long) m_frameSize
.y
);
251 config
.Write(wxT("Windows/WindowWidth"), (long) m_frameSize
.width
);
252 config
.Write(wxT("Windows/WindowHeight"), (long) m_frameSize
.height
);
254 config
.Write(wxT("Windows/ShowSplashScreen"), m_showSplashScreen
);
255 config
.Write(wxT("Windows/SmallToolbar"), (long) m_smallToolbar
);
256 config
.Write(wxT("Windows/MainSashSize"), (long) m_mainSashSize
);
259 wxString backgroundColour(apColourToHexString(m_backgroundColour));
260 config.Write(wxT("Style/BackgroundColour"), backgroundColour);
263 config
.Write(wxT("Style/EditWindowFont"), apFontToString(m_editWindowFont
));
265 // Indicate that we're no longer running, so we know if the program
266 // crashed last time around.
267 config
.Write(wxT("Misc/RunningProgram"), (long) 0);
270 config
.SetPath(wxT("FileHistory/"));
271 wxGetApp().GetDocManager()->FileHistorySave(config
);
277 void ctSettings::ShowSettingsDialog(const wxString
& WXUNUSED(page
))
279 ctSettingsDialog
* dialog
= new ctSettingsDialog(wxGetApp().GetTopWindow());
280 // if (!page.IsEmpty())
281 // dialog->GetNotebook()->SetSelection(apFindNotebookPage(dialog->GetNotebook(), page));
283 /* int ret = */ dialog
->ShowModal();