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
|
/*
* calcdateeditor.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 calctimeeditor.cpp
* Source file for CalcTimeEditor
*/
#include <QApplication>
#include <QButtonGroup>
#include <QComboBox>
#include <QDateTime>
#include <QMessageBox>
#include <QRadioButton>
#include "calcnode.h"
#include "calctimeeditor.h"
#include "../database.h"
#include "../datatypes.h"
#include "../factory.h"
#include "../formatting.h"
#include "../timewidget.h"
/**
* Constructor.
*
* @param dbase The database being edited
* @param colNames Ordered list of all the database's column names
* @param colTypes Ordered list of all the database's column types
* @param parent This dialog's parent widget
*/
CalcTimeEditor::CalcTimeEditor(Database *dbase, const QStringList &colNames, int *colTypes, QWidget *parent)
: PBDialog(tr("Calculation Node Editor"), parent), db(dbase)
{
group = new QButtonGroup(this);
QGridLayout *grid = Factory::gridLayout(vbox);
QRadioButton *colButton = new QRadioButton(tr("Column"), this);
grid->addWidget(colButton, 0, 0);
group->addButton(colButton, 0);
columnList = new QComboBox(this);
grid->addWidget(columnList, 0, 1);
int count = colNames.count();
int i;
for (i = 0; i < count; i++) {
int type = colTypes[i];
if (type == TIME) {
columnList->addItem(colNames[i]);
}
}
QRadioButton *constantButton = new QRadioButton(tr("Constant"), this);
grid->addWidget(constantButton, 1, 0);
group->addButton(constantButton, 1);
timeWidget = new TimeWidget(this);
grid->addWidget(timeWidget, 1, 1);
if (columnList->count() > 0) {
group->button(0)->setChecked(true);
}
else {
// no date columns, so can't select one
group->button(1)->setChecked(true);
colButton->setEnabled(false);
}
finishLayout(parent->width() / 2);
}
/**
* Reset the dialog's entry widgets to their default values. Typically used
* when relaunching it for a different node.
*/
void CalcTimeEditor::reset()
{
group->button(0)->setChecked(true);
if (columnList->count() > 0) {
columnList->setCurrentIndex(0);
}
QTime now = QTime::currentTime();
timeWidget->setTime(now);
}
/**
* 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 *CalcTimeEditor::createNode()
{
CalcNode *node = new CalcNode(CalcNode::TimeConstant, "");
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 CalcTimeEditor::updateNode(CalcNode *node)
{
int selection = group->checkedId();
if (selection == 0) {
node->setType(CalcNode::TimeColumn);
node->setValue(columnList->currentText());
}
else {
node->setType(CalcNode::TimeConstant);
QString timeString = timeWidget->getTime();
bool ok;
QString time = Formatting::parseTimeString(timeString, &ok);
// isValid() has already been checked, so ignore "ok"
node->setValue(time);
}
}
/**
* Update this dialog's properties to match those of the provided node.
*
* @param node The node to be reflected by the dialog
*/
void CalcTimeEditor::setNode(CalcNode *node)
{
reset();
CalcNode::NodeType type = node->type();
QString value = node->value();
if (type == CalcNode::TimeConstant) {
group->button(1)->setChecked(true);
timeWidget->setTime(value.toInt());
}
else if (type == CalcNode::TimeColumn) {
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 CalcTimeEditor::isValid()
{
if (group->checkedId() == 0) {
return true;
}
QString time = timeWidget->getTime();
QString error = db->isValidValue(TIME, time);
if (!error.isEmpty()) {
QString message = tr("Constant") + ": " + error;
QMessageBox::warning(this, qApp->applicationName(), message);
return false;
}
return true;
}
|