📄 bronzedialog.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -