File: calcnodeeditor.cpp

package info (click to toggle)
portabase 2.1%2Bgit20120910-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 8,648 kB
  • ctags: 3,498
  • sloc: cpp: 32,214; sh: 2,868; ansic: 2,320; makefile: 481; python: 121; xml: 23; asm: 10
file content (203 lines) | stat: -rw-r--r-- 5,829 bytes parent folder | download | duplicates (2)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
 * calcnodeeditor.cpp
 *
 * (c) 2003-2004,2008-2010 by Jeremy Bowman <jmbowman@alum.mit.edu>
 *
 * 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.
 */

/** @file calcnodeeditor.cpp
 * Source file for CalcNodeEditor
 */

#include <QApplication>
#include <QButtonGroup>
#include <QComboBox>
#include <QListWidget>
#include <QMessageBox>
#include <QRadioButton>
#include "calcnode.h"
#include "calcnodeeditor.h"
#include "../datatypes.h"
#include "../factory.h"
#include "../formatting.h"
#include "../numberwidget.h"

/**
 * Constructor.
 *
 * @param colNames Ordered list of all the database's column names
 * @param colTypes Ordered list of all the database's column types
 * @param showOps True if the list of operations is to be shown, false otherwise
 * @param parent This dialog's parent widget
 */
CalcNodeEditor::CalcNodeEditor(const QStringList &colNames, int *colTypes, bool showOps, QWidget *parent)
  : PBDialog(tr("Calculation Node Editor"), parent)
{
    group = new QButtonGroup(this);
    QGridLayout *grid = Factory::gridLayout(vbox);
    QRadioButton *colButton = new QRadioButton(tr("Column"), this);
    group->addButton(colButton, 0);
    grid->addWidget(colButton, 0, 0);
    columnList = new QComboBox(this);
    grid->addWidget(columnList, 0, 1);
    int count = colNames.count();
    int i;
    for (i = 0; i < count; i++) {
        int t = colTypes[i];
        if (t == INTEGER || t == FLOAT || t == SEQUENCE || t == BOOLEAN) {
            columnList->addItem(colNames[i]);
        }
    }
    connect(columnList, SIGNAL(activated(int)),
            this, SLOT(columnSelected(int)));

    QRadioButton *constantButton = new QRadioButton(tr("Constant"), this);
    group->addButton(constantButton, 1);
    grid->addWidget(constantButton, 1, 0);
    number = new NumberWidget(FLOAT, this);
    grid->addWidget(number, 1, 1);

    if (showOps) {
        QRadioButton *opButton = new QRadioButton(tr("Operation"), this);
        group->addButton(opButton, 2);
        grid->addWidget(opButton, 2, 0, Qt::AlignLeft | Qt::AlignTop);
        opList = Factory::listWidget(this);
        grid->addWidget(opList, 2, 1);
        opList->addItems(CalcNode::listOperations());
        connect(opList, SIGNAL(itemSelectionChanged()),
                this, SLOT(operationSelected()));
    }
    else {
        opList = 0;
    }
    if (columnList->count() > 0) {
        group->button(0)->setChecked(true);
    }
    else {
        // no numeric columns, so can't select one
        group->button(1)->setChecked(true);
        colButton->setEnabled(false);
    }

    int minHeight = showOps ? parent->height() : -1;
    finishLayout(parent->width() / 2, minHeight);
}

/**
 * Reset the dialog's entry widgets to their default values.  Typically used
 * when relaunching it for a different node.
 */
void CalcNodeEditor::reset()
{
    if (columnList->count() > 0) {
        columnList->setCurrentIndex(0);
    }
    number->setValue("0");
    if (opList != 0) {
        opList->setCurrentRow(0);
    }
    group->button(0)->setChecked(true);
}

/**
 * Create a new calculation node and set it's properties to match those
 * currently selected in this dialog.
 *
 * @return The newly created and configured node
 */
CalcNode *CalcNodeEditor::createNode()
{
    CalcNode *node = new CalcNode(CalcNode::Constant, "");
    updateNode(node);
    return node;
}

/**
 * Set the properties of the provided node to match those currently
 * selected in this dialog.
 *
 * @param node The node to be updated
 */
void CalcNodeEditor::updateNode(CalcNode *node)
{
    int selection = group->checkedId();
    if (selection == 0) {
        node->setType(CalcNode::Column);
        node->setValue(columnList->currentText());
    }
    else if (selection == 1) {
        node->setType(CalcNode::Constant);
        node->setValue(number->getValue());
    }
    else {
        node->setType((CalcNode::NodeType)(opList->currentRow() + CALC_FIRST_OP));
        node->setValue("");
    }
}

/**
 * Update this dialog's properties to match those of the provided node.
 *
 * @param node The node to be reflected by the dialog
 */
void CalcNodeEditor::setNode(CalcNode *node)
{
    reset();
    CalcNode::NodeType type = node->type();
    QString value = node->value();
    if (type == CalcNode::Constant) {
        group->button(1)->setChecked(true);
        number->setValue(value);
    }
    else if (type == CalcNode::Column) {
        group->button(0)->setChecked(true);
        int count = columnList->count();
        for (int i = 0; i < count; i++) {
            if (columnList->itemText(i) == value) {
                columnList->setCurrentIndex(i);
                break;
            }
        }
    }
}

/**
 * Determine if the currently entered values represent a valid node or not.
 *
 * @return True if the selected properties are valid, false otherwise
 */
bool CalcNodeEditor::isValid()
{
    if (group->checkedId() != 1) {
        return true;
    }
    bool ok = false;
    Formatting::parseDouble(number->getValue(), &ok);
    if (!ok) {
        QMessageBox::warning(this, qApp->applicationName(),
                             tr("Constant must be a decimal value"));
    }
    return ok;
}

/**
 * Called when a column is selected from the combo box, in order to
 * automatically check the appropriate radio button.
 */
void CalcNodeEditor::columnSelected(int)
{
    group->button(0)->setChecked(true);
}

/**
 * Called when an operation is selected from the list, in order to
 * automatically check the appropriate radio button.
 */
void CalcNodeEditor::operationSelected()
{
    group->button(2)->setChecked(true);
}