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 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* filtereditor.cpp
*
* (c) 2002-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 filtereditor.cpp
* Source file for FilterEditor
*/
#include <QLabel>
#include <QLineEdit>
#include <QListWidget>
#include <QMessageBox>
#include <QPushButton>
#include "database.h"
#include "condition.h"
#include "conditioneditor.h"
#include "factory.h"
#include "filter.h"
#include "filtereditor.h"
/**
* Constructor.
*
* @param parent This dialog's parent widget
*/
FilterEditor::FilterEditor(QWidget *parent)
: PBDialog(tr("Filter Editor"), parent), db(0), filter(0)
{
QHBoxLayout *hbox = Factory::hBoxLayout(vbox);
hbox->addWidget(new QLabel(tr("Filter Name") + " ", this));
nameBox = new QLineEdit(this);
hbox->addWidget(nameBox);
listWidget = Factory::listWidget(this);
vbox->addWidget(listWidget);
addEditButtons();
connect(addButton, SIGNAL(clicked()), this, SLOT(addCondition()));
connect(editButton, SIGNAL(clicked()), this, SLOT(editCondition()));
connect(deleteButton, SIGNAL(clicked()), this, SLOT(deleteCondition()));
connect(upButton, SIGNAL(clicked()), this, SLOT(moveUp()));
connect(downButton, SIGNAL(clicked()), this, SLOT(moveDown()));
finishLayout();
nameBox->setFocus();
}
/**
* Destructor.
*/
FilterEditor::~FilterEditor()
{
if (filter) {
delete filter;
}
}
/**
* Launch this dialog to edit a filter.
*
* @param subject The database being edited
* @param filterName The name of the filter to edit
* @return 1 if the dialog's changes are to be committed, 0 otherwise
*/
int FilterEditor::edit(Database *subject, const QString &filterName)
{
db = subject;
originalName = filterName;
nameBox->setText(filterName);
if (filter) {
delete filter;
}
conditionEditor = new ConditionEditor(db, this);
filter = new Filter(db, filterName);
updateList();
int result = exec();
while (result) {
if (hasValidName()) {
break;
}
else {
result = exec();
}
}
delete conditionEditor;
return result;
}
/**
* Get the last specified name for this filter.
*
* @return The filter's name
*/
QString FilterEditor::getName()
{
return nameBox->text();
}
/**
* Add a new condition to the filter. Triggered by the "Add" button.
*/
void FilterEditor::addCondition()
{
Condition *condition = new Condition(db);
if (conditionEditor->edit(condition)) {
conditionEditor->applyChanges(condition);
filter->addCondition(condition);
updateList();
}
else {
delete condition;
}
}
/**
* Edit one of the filter's existing conditions. Triggered by the "Edit"
* button.
*/
void FilterEditor::editCondition()
{
int selected = listWidget->currentRow();
if (selected == -1) {
return;
}
Condition *condition = filter->getCondition(selected);
if (conditionEditor->edit(condition)) {
conditionEditor->applyChanges(condition);
updateList();
listWidget->setCurrentRow(selected);
}
}
/**
* Delete the currently selected condition. Triggered by the "Delete"
* button.
*/
void FilterEditor::deleteCondition()
{
int selected = listWidget->currentRow();
if (selected == -1) {
return;
}
filter->deleteCondition(selected);
updateList();
}
/**
* Move the currently selected condition up by one in the sequence.
* Triggered by the "Up" button.
*/
void FilterEditor::moveUp()
{
int selected = listWidget->currentRow();
if (selected == -1) {
return;
}
if (filter->moveConditionUp(selected)) {
updateList();
listWidget->setCurrentRow(selected - 1);
}
}
/**
* Move the currently selected condition down by one in the sequence.
* Triggered by the "Down" button.
*/
void FilterEditor::moveDown()
{
int selected = listWidget->currentRow();
if (selected == -1) {
return;
}
if (filter->moveConditionDown(selected)) {
updateList();
listWidget->setCurrentRow(selected + 1);
}
}
/**
* Update the displayed list of conditions.
*/
void FilterEditor::updateList()
{
listWidget->clear();
int count = filter->getConditionCount();
for (int i = 0; i < count; i++) {
listWidget->addItem(filter->getCondition(i)->getDescription());
}
}
/**
* Determine if the currently specified filter name is valid or not.
* Prevents duplicates and names beginning with an underscore.
*
* @return True if the name is valid, false otherwise
*/
bool FilterEditor::hasValidName()
{
return validateName(nameBox->text(), originalName, db->listFilters());
}
/**
* Apply any changes made in this dialog.
*/
void FilterEditor::applyChanges()
{
db->deleteFilter(originalName);
filter->setName(nameBox->text());
db->addFilter(filter);
}
|