-
Notifications
You must be signed in to change notification settings - Fork 2
/
preferencedialog.cpp
68 lines (60 loc) · 2.06 KB
/
preferencedialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* This file is part of 3GPP Decoder project.
* Copyright (C) 2015 Prashant Panigrahi [email protected]
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//We do not need to add any preference for Linux
#include "preferencedialog.h"
#include "ui_preferencedialog.h"
PreferenceDialog::PreferenceDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::PreferenceDialog)
{
ui->setupUi(this);
setDefaults();
}
PreferenceDialog::~PreferenceDialog()
{
delete ui;
}
void PreferenceDialog::setDefaults()
{
QString strCurrentWiresharkPath;
QFile wiresharkpath("config.txt");
//Default Wireshark Path
if (wiresharkpath.open(QIODevice::ReadOnly | QIODevice::Text)){
QTextStream stream(&wiresharkpath);
while (!stream.atEnd()){
strCurrentWiresharkPath = stream.readLine();
if(strCurrentWiresharkPath.contains("wireshark:"))
{
strCurrentWiresharkPath = strCurrentWiresharkPath.remove(0,10);
}
}
}
ui->lineEditWireshark->setText(strCurrentWiresharkPath);
}
void PreferenceDialog::on_buttonBox_accepted()
{
QString strWiresharkDir;
QFile configFile("config.txt");
strWiresharkDir;
if(ui->lineEditWireshark->text().length()> 0)
{
strWiresharkDir = ui->lineEditWireshark->text();
if (configFile.open(QIODevice::ReadWrite)) {
QTextStream stream(&configFile);
stream << "wireshark:" << strWiresharkDir;
}
}
}