@@ -48,6 +48,36 @@ ioLaunch::ioLaunch(QWidget *parent) :
48
48
}
49
49
50
50
settings.setHaveRun (true );
51
+
52
+ // Populate the GUI with values read from settings.
53
+ if (settings.getResolutionMode () >= 0 )
54
+ {
55
+ // Predefined.
56
+ ui->cbResolution ->setCurrentIndex (2 + settings.getResolutionMode ());
57
+ }
58
+ else if (settings.getResolutionMode () == -1 )
59
+ {
60
+ // Custom.
61
+ ui->cbResolution ->setCurrentIndex (0 );
62
+ }
63
+ else if (settings.getResolutionMode () == -2 )
64
+ {
65
+ // Desktop.
66
+ ui->cbResolution ->setCurrentIndex (1 );
67
+ }
68
+
69
+ ui->sbWidth ->setValue (settings.getResolutionWidth ());
70
+ ui->sbHeight ->setValue (settings.getResolutionHeight ());
71
+ ioWedited = ioHedited = true ;
72
+
73
+ if (settings.getResolutionFullscreen ())
74
+ {
75
+ ui->rbFull ->setChecked (true );
76
+ }
77
+ else
78
+ {
79
+ ui->rbWin ->setChecked (true );
80
+ }
51
81
}
52
82
53
83
ioLaunch::~ioLaunch ()
@@ -223,13 +253,30 @@ void ioLaunch::on_cbResolution_currentIndexChanged(int index)
223
253
break ;
224
254
}
225
255
}
256
+
257
+ if (index == 0 )
258
+ {
259
+ // Custom.
260
+ settings.setResolutionMode (-1 );
261
+ }
262
+ else if (index == 1 )
263
+ {
264
+ // Desktop.
265
+ settings.setResolutionMode (-2 );
266
+ }
267
+ else
268
+ {
269
+ // Predefined.
270
+ settings.setResolutionMode (index - 2 );
271
+ }
226
272
}
227
273
228
274
void ioLaunch::on_rbFull_toggled (bool checked)
229
275
{
230
276
if (checked)
231
277
{
232
278
screenOption = " +set r_fullscreen 1" ;
279
+ settings.setResolutionFullscreen (true );
233
280
}
234
281
}
235
282
@@ -238,6 +285,7 @@ void ioLaunch::on_rbWin_toggled(bool checked)
238
285
if (checked)
239
286
{
240
287
screenOption = " +set r_fullscreen 0" ;
288
+ settings.setResolutionFullscreen (false );
241
289
}
242
290
}
243
291
@@ -261,6 +309,8 @@ void ioLaunch::on_sbWidth_valueChanged(int arg1)
261
309
else {
262
310
ioWedited = false ;
263
311
}
312
+
313
+ settings.setResolutionWidth (arg1);
264
314
}
265
315
266
316
void ioLaunch::on_sbHeight_valueChanged (int arg1)
@@ -274,6 +324,8 @@ void ioLaunch::on_sbHeight_valueChanged(int arg1)
274
324
else {
275
325
ioHedited = false ;
276
326
}
327
+
328
+ settings.setResolutionHeight (arg1);
277
329
}
278
330
279
331
// Since q3config.cfg is generated it's nice and clean and shouldn't need a full parser.
@@ -325,9 +377,6 @@ void ioLaunch::parseQuake3Config()
325
377
326
378
QTextStream stream (&file);
327
379
328
- // These may occur in any order, so process them after parsing the entire file.
329
- QString r_mode, r_customwidth, r_customheight;
330
-
331
380
while (!stream.atEnd ())
332
381
{
333
382
const QString line (stream.readLine ());
@@ -344,34 +393,20 @@ void ioLaunch::parseQuake3Config()
344
393
345
394
if (cvar == " r_mode" )
346
395
{
347
- r_mode = ParseToken (line, offset);
396
+ settings. setResolutionMode ( ParseToken (line, offset). toInt () );
348
397
}
349
398
else if (cvar == " r_customwidth" )
350
399
{
351
- r_customwidth = ParseToken (line, offset);
400
+ settings. setResolutionWidth ( ParseToken (line, offset). toInt () );
352
401
}
353
402
else if (cvar == " r_customheight" )
354
403
{
355
- r_customheight = ParseToken (line, offset);
404
+ settings. setResolutionHeight ( ParseToken (line, offset). toInt () );
356
405
}
357
406
else if (cvar == " r_fullscreen" )
358
407
{
359
- // Set fullscreen/windows radio buttons.
360
- const QString value (ParseToken (line, offset));
361
-
362
- if (value == " 0" )
363
- ui->rbWin ->setChecked (true );
364
- else if (value == " 1" )
365
- ui->rbFull ->setChecked (true );
408
+ settings.setResolutionFullscreen (ParseToken (line, offset).toInt () != 0 );
366
409
}
367
410
}
368
411
}
369
-
370
- // Populate resolution spinboxes.
371
- if (r_mode == " -1" && !r_customwidth.isEmpty () && !r_customheight.isEmpty ())
372
- {
373
- ui->sbWidth ->setValue (r_customwidth.toInt ());
374
- ui->sbHeight ->setValue (r_customheight.toInt ());
375
- ioWedited = ioHedited = true ;
376
- }
377
412
}
0 commit comments