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
|
/*
* vieweditor.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 vieweditor.h
* Header file for ViewEditor
*/
#ifndef VIEWEDITOR_H
#define VIEWEDITOR_H
#include <QStringList>
#include "pbdialog.h"
class Database;
class QComboBox;
class QLineEdit;
class QTreeWidget;
class QTreeWidgetItem;
/**
* Dialog for editing a database view.
*/
class ViewEditor: public PBDialog
{
Q_OBJECT
public:
ViewEditor(QWidget *parent = 0);
int edit(Database *subject, const QString &viewName,
const QStringList ¤tCols, const QString &defaultSort,
const QString &defaultFilter);
void applyChanges();
QString getName();
private:
void updateTable();
private slots:
void moveUp();
void moveDown();
private:
QLineEdit *nameBox; /**< Entry field for the view's name */
QComboBox *sortingBox; /**< Default sorting name selection list */
QComboBox *filterBox; /**< Default filter name selection list */
QTreeWidget *table; /**< Display of the list of database columns */
Database *db; /**< The database being edited */
QString originalName; /**< The initial name of the view being edited */
QStringList oldNames; /**< The initial ordered list of columns in the view */
};
#endif
|