bronzedialog.h

来自「QT4 gui programming的随书光盘」· C头文件 代码 · 共 44 行

H
44
字号
#ifndef BRONZEDIALOG_H#define BRONZEDIALOG_H#include <QDialog>class QCheckBox;class QDateEdit;class QDialogButtonBox;class QDoubleSpinBox;class QLabel;class QSpinBox;class QTimeEdit;class QTreeWidget;class BronzeDialog : public QDialog{    Q_OBJECTpublic:    BronzeDialog(QWidget *parent = 0);private slots:    void editableStateChanged(bool editable);private:    void populateAgendaTreeWidget();    QLabel *dateLabel;    QLabel *timeLabel;    QLabel *durationLabel;    QLabel *priceLabel;    QLabel *agendaLabel;    QDateEdit *dateEdit;    QTimeEdit *timeEdit;    QSpinBox *durationSpinBox;    QDoubleSpinBox *priceSpinBox;    QCheckBox *reminderCheckBox;    QCheckBox *editableCheckBox;    QTreeWidget *agendaTreeWidget;    QDialogButtonBox *buttonBox;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?