Subversion Repositories Projects

Rev

Rev 227 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
159 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 "dlg_Preferences.h"
20
 
21
dlg_Preferences::dlg_Preferences(QWidget *parent) : QDialog(parent)
22
{
23
    setupUi(this);
163 KeyOz 24
    connect(pb_DIR_CVS,   SIGNAL(clicked()), this, SLOT(slot_DIR_CVS()));
25
    connect(pb_DIR_SET,   SIGNAL(clicked()), this, SLOT(slot_DIR_SET()));
159 KeyOz 26
}
27
 
163 KeyOz 28
void dlg_Preferences::set_Settings(cSettings *Set)
29
{
30
    Settings = Set;
159 KeyOz 31
 
163 KeyOz 32
    le_DIR_CVS->setText(Settings->DIR.Logging);
33
    le_DIR_SET->setText(Settings->DIR.Parameter);
166 KeyOz 34
    le_TTY->setText(Settings->TTY.Port);
35
    sp_Plotter_Count->setValue(Settings->Data.Plotter_Count);
36
    sp_Debug_Fast->setValue(Settings->Data.Debug_Fast);
37
    sp_Debug_Slow->setValue(Settings->Data.Debug_Slow);
199 KeyOz 38
    sp_Debug_Off->setValue(Settings->Data.Debug_Off);
39
    sp_Navi_Fast->setValue(Settings->Data.Navi_Fast);
40
    sp_Navi_Slow->setValue(Settings->Data.Navi_Slow);
41
    sp_Navi_Off->setValue(Settings->Data.Navi_Off);
42
    le_ServerPort->setText(Settings->Server.Port);
43
    cb_StartServer->setChecked(Settings->Server.StartServer);
44
    cb_ToGround->setChecked(Settings->Server.ToGround);
227 KeyOz 45
    le_Login->setText(Settings->Server.QMKS_Login);
46
    le_Password->setText(Settings->Server.QMKS_Password);
272 KeyOz 47
    le_QMKS_Host->setText(Settings->Server.QMKS_Host);
48
    le_QMKS_Port->setText(Settings->Server.QMKS_Port);
163 KeyOz 49
}
50
 
51
cSettings *dlg_Preferences::get_Settings()
52
{
227 KeyOz 53
    Settings->TTY.Port             = le_TTY->text();
54
    Settings->Data.Plotter_Count   = sp_Plotter_Count->value();
55
    Settings->Data.Debug_Fast      = sp_Debug_Fast->value();
56
    Settings->Data.Debug_Slow      = sp_Debug_Slow->value();
57
    Settings->Data.Debug_Off       = sp_Debug_Off->value();
58
    Settings->Data.Navi_Fast       = sp_Navi_Fast->value();
59
    Settings->Data.Navi_Slow       = sp_Navi_Slow->value();
60
    Settings->Data.Navi_Off        = sp_Navi_Off->value();
61
    Settings->Server.Port          = le_ServerPort->text();
62
    Settings->Server.StartServer   = cb_StartServer->isChecked();
63
    Settings->Server.ToGround      = cb_ToGround->isChecked();
64
    Settings->Server.QMKS_Login    = le_Login->text();
65
    Settings->Server.QMKS_Password = le_Password->text();
272 KeyOz 66
    Settings->Server.QMKS_Host     = le_QMKS_Host->text();
67
    Settings->Server.QMKS_Port     = le_QMKS_Port->text();
166 KeyOz 68
 
163 KeyOz 69
    return Settings;
70
}
71
 
72
// Configuration -> Verzeichnisse
73
/////////////////////////////////
74
void dlg_Preferences::slot_DIR_CVS()
75
{
166 KeyOz 76
    QString directory = QFileDialog::getExistingDirectory(this, trUtf8("Verzeichniss für CSV-Logdateien"), Settings->DIR.Logging, QFileDialog::DontResolveSymlinks | QFileDialog::ShowDirsOnly);
163 KeyOz 77
 
78
    if ((!directory.isEmpty()) && (Settings->DIR.Logging != directory))
79
    {
80
        Settings->DIR.Logging = directory;
81
        le_DIR_CVS->setText(Settings->DIR.Logging);
82
//        Settings->write_Settings();
83
    }
84
}
85
 
86
void dlg_Preferences::slot_DIR_SET()
87
{
166 KeyOz 88
    QString directory = QFileDialog::getExistingDirectory(this, trUtf8("Verzeichniss für Settings-Dateien"), Settings->DIR.Parameter, QFileDialog::DontResolveSymlinks | QFileDialog::ShowDirsOnly);
163 KeyOz 89
 
90
    if ((!directory.isEmpty()) && (Settings->DIR.Parameter != directory))
91
    {
92
        Settings->DIR.Parameter = directory;
93
        le_DIR_SET->setText(Settings->DIR.Parameter);
94
//        Settings->write_Settings();
95
    }
96
 
97
}
166 KeyOz 98
 
159 KeyOz 99
dlg_Preferences::~dlg_Preferences()
100
{
101
}
102
 
103