File: sorteditor.h

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 (60 lines) | stat: -rw-r--r-- 1,639 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
/*
 * sorteditor.h
 *
 * (c) 2002-2004,2009 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.h
 * Header file for SortEditor
 */

#ifndef SORTEDITOR_H
#define SORTEDITOR_H

#include <QModelIndex>
#include <QStringList>
#include "pbdialog.h"

class Database;
class QLineEdit;
class QTreeWidget;
class QTreeWidgetItem;

/**
 * Dialog for editing a sorting.
 */
class SortEditor: public PBDialog
{
    Q_OBJECT
public:
    SortEditor(QWidget *parent = 0);

    int edit(Database *subject, const QString &sortingName);
    void applyChanges();
    QString getName();

private:
    void updateTable(const QStringList &colNames);

private slots:
    void tableClicked(QTreeWidgetItem *item, int column);
    void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
    void moveUp();
    void moveDown();

private:
    QLineEdit *nameBox; /**< Entry field for the sorting's name */
    QTreeWidget *table; /**< Display of the list of database columns */
    Database *db; /**< The database being edited */
    QString originalName; /**< The initial name of the filter being edited */
    QStringList sortCols; /**< Names of columns which are being sorted on */
    QStringList descCols; /**< Names of columns which are being sorted in descending order */
    bool updating; /** Indicator that model changes should be temporarily ignored */
};

#endif