Rev 674 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
674 | KeyOz | 1 | /*************************************************************************** |
2 | * Copyright (C) 2008 by Manuel Schrape * |
||
3 | * manuel.schrape@gmx.de * |
||
4 | * * |
||
5 | * This program is free software; you can redistribute it and/or modify * |
||
6 | * it under the terms of the GNU General Public License as published by * |
||
7 | * the Free Software Foundation; either version 2 of the License. * |
||
8 | * * |
||
9 | * This program is distributed in the hope that it will be useful, * |
||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
12 | * GNU General Public License for more details. * |
||
13 | * * |
||
14 | * You should have received a copy of the GNU General Public License * |
||
15 | * along with this program; if not, write to the * |
||
16 | * Free Software Foundation, Inc., * |
||
17 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
18 | ***************************************************************************/ |
||
19 | #include <QSettings> |
||
20 | #include <QDir> |
||
21 | |||
22 | #include "cSettings.h" |
||
23 | |||
24 | cSettings::cSettings() |
||
25 | { |
||
26 | Settings_ID = 1; |
||
27 | |||
28 | read_Settings(); |
||
29 | } |
||
30 | |||
31 | void cSettings::read_Settings() |
||
32 | { |
||
33 | QSettings Setting("QMK", QA_NAME); |
||
34 | |||
35 | Setting.beginGroup("Global"); |
||
36 | Settings_ID = Setting.value("Settings ID", Settings_ID).toInt(); |
||
37 | Setting.endGroup(); |
||
38 | |||
39 | Setting.beginGroup("GUI"); |
||
40 | GUI.isMax = Setting.value("IsMax",false).toBool(); |
||
41 | GUI.Size = Setting.value("Size", QSize(500, 350)).toSize(); |
||
42 | GUI.Point = Setting.value("Point",QPoint(1,1)).toPoint(); |
||
750 | KeyOz | 43 | GUI.Toolbar = Setting.value("Toolbar",true).toBool(); |
674 | KeyOz | 44 | Setting.endGroup(); |
45 | } |
||
46 | |||
47 | void cSettings::write_Settings() |
||
48 | { |
||
49 | QSettings Setting("QMK", QA_NAME); |
||
50 | |||
51 | Setting.beginGroup("Global"); |
||
52 | Setting.setValue("Settings ID", Settings_ID); |
||
53 | Setting.endGroup(); |
||
54 | |||
55 | Setting.beginGroup("GUI"); |
||
56 | Setting.setValue("IsMax", GUI.isMax); |
||
57 | Setting.setValue("Size", GUI.Size); |
||
58 | Setting.setValue("Point", GUI.Point); |
||
750 | KeyOz | 59 | Setting.setValue("Toolbar", GUI.Toolbar); |
674 | KeyOz | 60 | Setting.endGroup(); |
61 | } |