File: sorteditor.cpp

package info (click to toggle)
portabase 2.0%2Bgit20110117-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,692 kB
  • sloc: cpp: 32,047; sh: 2,675; ansic: 2,320; makefile: 343; xml: 20; python: 16; asm: 10
file content (261 lines) | stat: -rw-r--r-- 7,763 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
 * sorteditor.cpp
 *
 * (c) 2002-2004,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 sorteditor.cpp
 * Source file for SortEditor
 */

#include <QIcon>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QTreeWidget>
#include <QTreeWidgetItem>
#include "database.h"
#include "factory.h"
#include "portabase.h"
#include "sorteditor.h"

/**
 * Constructor.
 *
 * @param parent This dialog's parent widget
 */
SortEditor::SortEditor(QWidget *parent)
    : PBDialog(tr("Sorting Editor"), parent), db(0), updating(false)
{
    QHBoxLayout *hbox = Factory::hBoxLayout(vbox);
    hbox->addWidget(new QLabel(tr("Sorting Name") + " ", this));
    nameBox = new QLineEdit(this);
    hbox->addWidget(nameBox);

    QStringList headers;
    headers << tr("Sort") << tr("Column Name") << tr("Direction");
    table = Factory::treeWidget(this, headers);
    vbox->addWidget(table);
    connect(table, SIGNAL(itemClicked(QTreeWidgetItem*, int)),
            this, SLOT(tableClicked(QTreeWidgetItem*, int)));
    connect(table->model(), SIGNAL(dataChanged(QModelIndex, QModelIndex)),
            this, SLOT(dataChanged(QModelIndex, QModelIndex)));

    addEditButtons(true);
    connect(upButton, SIGNAL(clicked()), this, SLOT(moveUp()));
    connect(downButton, SIGNAL(clicked()), this, SLOT(moveDown()));

    finishLayout();
    nameBox->setFocus();
}

/**
 * Launch this dialog to edit the specified sorting.
 *
 * @param subject The database being edited
 * @param sortingName The current name of the sorting to edit
 */
int SortEditor::edit(Database *subject, const QString &sortingName)
{
    updating = true;
    db = subject;
    originalName = sortingName;
    nameBox->setText(sortingName);
    QStringList colNames = db->listColumns();
    db->getSortingInfo(sortingName, &sortCols, &descCols);
    // move currently sorted columns to the top of the list, in correct order
    int count = sortCols.count();
    for (int i = count - 1; i > -1; i--) {
        QString name = sortCols[i];
        colNames.removeAll(name);
        colNames.prepend(name);
    }
    updateTable(colNames);
    updating = false;
    int result = exec();
    while (result) {
        if (validateName(nameBox->text(), originalName, db->listSortings())) {
            break;
        }
        else {
            result = exec();
        }
    }
    return result;
}

/**
 * Get the name for the sorting as currently shown in the dialog.
 *
 * @return The (possibly changed) sorting name
 */
QString SortEditor::getName()
{
    return nameBox->text();
}

/**
 * Move the selected row higher in the table, which has the effect of sorting
 * on the field it represents before those of any other rows it moves above.
 * Called when the "Up" button is clicked.
 */
void SortEditor::moveUp()
{
    QTreeWidgetItem *item = table->currentItem();
    if (item == 0) {
        return;
    }
    int index = table->indexOfTopLevelItem(item);
    if (index > 0) {
        updating = true;
        item = table->takeTopLevelItem(index);
        table->insertTopLevelItem(index - 1, item);
        table->setCurrentItem(item);
        updating = false;
    }
}

/**
 * Move the selected row lower in the table, which has the effect of sorting
 * on the field it represents after those of any other rows it moves below.
 * Called when the "Down" button is clicked.
 */
void SortEditor::moveDown()
{
    QTreeWidgetItem *item = table->currentItem();
    if (item == 0) {
        return;
    }
    int index = table->indexOfTopLevelItem(item);
    if (index < table->topLevelItemCount() - 1) {
        updating = true;
        item = table->takeTopLevelItem(index);
        table->insertTopLevelItem(index + 1, item);
        table->setCurrentItem(item);
        updating = false;
    }
}

/**
 * Update the displayed table to match the current information in sortCols
 * and descCols.
 *
 * @param colNames The field names in the order in which they are appear in
 *                 the table
 */
void SortEditor::updateTable(const QStringList &colNames)
{
    table->clear();
    int count = colNames.count();
    QTreeWidgetItem *item = 0;
    for (int i = 0; i < count; i++) {
        if (i == 0) {
            item = new QTreeWidgetItem(table);
        }
        else {
            item = new QTreeWidgetItem(table, item);
        }
        item->setTextAlignment(0, Qt::AlignHCenter);
        QString name = colNames[i];
        QString direction = "";
        if (sortCols.contains(name)) {
            if (descCols.contains(name)) {
                direction = tr("Descending");
            }
            else {
                direction = tr("Ascending");
            }
            item->setCheckState(0, Qt::Checked);
        }
        else {
            item->setCheckState(0, Qt::Unchecked);
        }
        item->setText(1, name);
        item->setText(2, direction);
    }
}

/**
 * Handler for clicks on the information table.  A click in the third column
 * toggles the sorting order for the appropriate field (if it's being sorted
 * on).  Clicks in the first column trigger a data change in the model and
 * are handled by dataChanged() instead.
 *
 * @param item The row of the table in which the click occurred
 * @param column The index of the column in which the click occurred
 */
void SortEditor::tableClicked(QTreeWidgetItem *item, int column)
{
    if (item == 0) {
        // no row selected
        return;
    }
    if (column == 2) {
        QString name = item->text(1);
        if (sortCols.contains(name)) {
            if (!descCols.contains(name)) {
                descCols.append(name);
                item->setText(2, tr("Descending"));
            }
            else {
                descCols.removeAll(name);
                item->setText(2, tr("Ascending"));
            }
        }
    }
}

/**
 * Handler for information table model data changes.  Used to detect when the
 * user clicks a field selection checkbox (because the kinetic scrolling
 * on Maemo Fremantle sometimes prevents the itemClicked() signal from
 * being emitted when the checkbox is toggled).
 *
 * @param topLeft The top left position of the changed data region
 * @param bottomRight The bottom right position of the changed data region
 */
void SortEditor::dataChanged(const QModelIndex &topLeft, const QModelIndex &)
{
    if (updating || topLeft.column() != 0) {
        return;
    }
    QTreeWidgetItem *item = table->topLevelItem(topLeft.row());
    Qt::CheckState state = item->checkState(0);
    QString name = item->text(1);
    if (state == Qt::Unchecked && sortCols.contains(name)) {
        sortCols.removeAll(name);
        descCols.removeAll(name);
        item->setText(2, "");
    }
    else if (state == Qt::Checked && !sortCols.contains(name)) {
        sortCols.append(name);
        item->setText(2, tr("Ascending"));
    }
}

/**
 * Apply to the database any changes made the last time this dialog was shown.
 */
void SortEditor::applyChanges()
{
    QString sortingName = nameBox->text();
    QStringList orderedSort;
    QStringList orderedDesc;
    int count = table->topLevelItemCount();
    for (int i = 0; i < count; i++) {
        QString name = table->topLevelItem(i)->text(1);
        if (sortCols.contains(name)) {
            orderedSort.append(name);
            if (descCols.contains(name)) {
                orderedDesc.append(name);
            }
        }
    }
    db->deleteSorting(originalName);
    db->addSorting(sortingName, orderedSort, orderedDesc);
}