Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
170 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);
24
    connect(pb_DIR_CVS,   SIGNAL(clicked()), this, SLOT(slot_DIR_CVS()));
25
    connect(pb_DIR_SET,   SIGNAL(clicked()), this, SLOT(slot_DIR_SET()));
26
}
27
 
28
void dlg_Preferences::set_Settings(cSettings *Set)
29
{
30
    Settings = Set;
31
 
32
    le_DIR_CVS->setText(Settings->DIR.Logging);
33
    le_DIR_SET->setText(Settings->DIR.Parameter);
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);
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
}
43
 
44
cSettings *dlg_Preferences::get_Settings()
45
{
46
    Settings->TTY.Port           = le_TTY->text();
47
    Settings->Data.Plotter_Count = sp_Plotter_Count->value();
48
    Settings->Data.Debug_Fast    = sp_Debug_Fast->value();
49
    Settings->Data.Debug_Slow    = sp_Debug_Slow->value();
50
    Settings->Data.Debug_Off     = sp_Debug_Off->value();
51
    Settings->Data.Navi_Fast     = sp_Navi_Fast->value();
52
    Settings->Data.Navi_Slow     = sp_Navi_Slow->value();
53
    Settings->Data.Navi_Off      = sp_Navi_Off->value();
54
 
55
    return Settings;
56
}
57
 
58
// Configuration -> Verzeichnisse
59
/////////////////////////////////
60
void dlg_Preferences::slot_DIR_CVS()
61
{
62
    QString directory = QFileDialog::getExistingDirectory(this, trUtf8("Verzeichniss für CSV-Logdateien"), Settings->DIR.Logging, QFileDialog::DontResolveSymlinks | QFileDialog::ShowDirsOnly);
63
 
64
    if ((!directory.isEmpty()) && (Settings->DIR.Logging != directory))
65
    {
66
        Settings->DIR.Logging = directory;
67
        le_DIR_CVS->setText(Settings->DIR.Logging);
68
//        Settings->write_Settings();
69
    }
70
}
71
 
72
void dlg_Preferences::slot_DIR_SET()
73
{
74
    QString directory = QFileDialog::getExistingDirectory(this, trUtf8("Verzeichniss für Settings-Dateien"), Settings->DIR.Parameter, QFileDialog::DontResolveSymlinks | QFileDialog::ShowDirsOnly);
75
 
76
    if ((!directory.isEmpty()) && (Settings->DIR.Parameter != directory))
77
    {
78
        Settings->DIR.Parameter = directory;
79
        le_DIR_SET->setText(Settings->DIR.Parameter);
80
//        Settings->write_Settings();
81
    }
82
 
83
}
84
 
85
dlg_Preferences::~dlg_Preferences()
86
{
87
}
88
 
89