blob: 9da0c0d5281048532fb495a50d6eb29f81df76a9 (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* Copyright (c) 2007-2008, Aconex. All Rights Reserved.
*
* 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 2 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.
*/
#include "tabdialog.h"
#include "main.h"
TabDialog::TabDialog(QWidget* parent) : QDialog(parent)
{
setupUi(this);
}
void TabDialog::languageChange()
{
retranslateUi(this);
}
void TabDialog::reset(QString label, bool live)
{
if (label == QString::null) {
setWindowTitle(tr("Add Tab"));
labelLineEdit->setText(live ? tr("Live") : tr("Archive"));
}
else {
setWindowTitle(tr("Edit Tab"));
liveHostRadioButton->setEnabled(false);
archivesRadioButton->setEnabled(false);
labelLineEdit->setText(label);
}
liveHostRadioButton->setChecked(live);
archivesRadioButton->setChecked(!live);
my.archiveSource = !live;
console->post(PmChart::DebugUi, "TabDialog::reset arch=%s",
my.archiveSource ? "true" : "false");
}
bool TabDialog::isArchiveSource()
{
return my.archiveSource;
}
QString TabDialog::label() const
{
return labelLineEdit->text();
}
void TabDialog::liveHostRadioButtonClicked()
{
if (labelLineEdit->text() == tr("Archive"))
labelLineEdit->setText(tr("Live"));
liveHostRadioButton->setChecked(true);
archivesRadioButton->setChecked(false);
my.archiveSource = false;
console->post(PmChart::DebugUi,
"TabDialog::liveHostRadioButtonClicked archive=%s",
my.archiveSource ? "true" : "false");
}
void TabDialog::archivesRadioButtonClicked()
{
if (labelLineEdit->text() == tr("Live"))
labelLineEdit->setText(tr("Archive"));
liveHostRadioButton->setChecked(false);
archivesRadioButton->setChecked(true);
my.archiveSource = true;
console->post(PmChart::DebugUi,
"TabDialog::archivesRadioButtonClicked archive=%s",
my.archiveSource ? "true" : "false");
}
|