File: columneditor.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 (83 lines) | stat: -rw-r--r-- 2,727 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
/*
 * columneditor.h
 *
 * (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 columneditor.h
 * Header file for ColumnEditor
 */

#ifndef COLUMNEDITOR_H
#define COLUMNEDITOR_H

#include "pbdialog.h"

class CalcNode;
class DBEditor;
class Database;
class NoteButton;
class NumberWidget;
class QCheckBox;
class QComboBox;
class QLabel;
class QLineEdit;
class QPushButton;
class QStackedWidget;

/**
 * A dialog for setting the properties of a database column.  Used by
 * DBEditor.
 */
class ColumnEditor: public PBDialog
{
    Q_OBJECT
public:
    ColumnEditor(Database *dbase, DBEditor *parent = 0);

    QString name();
    void setName(const QString &newName);
    int type();
    void setType(int newType);
    QString defaultValue();
    void setDefaultValue(const QString &newDefault);
    CalcNode *calculation(int *decimals);
    void setCalculation(CalcNode *root, int decimals);
    void setTypeEditable(bool flag);

public slots:
    int exec();

private slots:
    void updateDefaultWidget(int newType);
    void editCalculation();

private:
    Database *db; /**< The database in use */
    DBEditor *dbEditor; /**< The database format editor dialog */
    QLineEdit *nameBox; /**< Column name entry field */
    QComboBox *typeBox; /**< Column type selection list */
    QLabel *defaultLabel; /**< Default value UI label (sometimes vanishes) */
    QStackedWidget *defaultStack; /**< Stack of default value entry widgets */
    QCheckBox *defaultCheck; /**< Default value checkbox for booleans */
    QLineEdit *defaultLine; /**< Default value field for strings */
    NoteButton *defaultNote; /**< Default value field for notes */
    NumberWidget *defaultInteger; /**< Default value field for integers */
    NumberWidget *defaultFloat; /**< Default value field for floats */
    QComboBox *defaultDate; /**< Default value list for dates */
    QComboBox *defaultTime; /**< Default value list for times */
    QComboBox *defaultEnum; /**< Default value list for enums */
    QPushButton *calcButton; /**< Button for defining calculated columns */
    NumberWidget *defaultSequence; /**< Next value field for sequences */
    QWidget *defaultBlank; /**< Placeholder shown for images (no default) */
    CalcNode *calcRoot; /**< Root node of a calculated column definition */
    int calcDecimals; /**< Number of decimal places to show for a calculated column */
    int lastType; /**< The last selected column type */
};

#endif