mainwindow.h

来自「qt4上运行通过的万年历程序」· C头文件 代码 · 共 31 行

H
31
字号
 #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QDate> #include <QMainWindow> class QTextBrowser; class MainWindow : public QMainWindow {     Q_OBJECT public:     MainWindow(); public slots:     void setFontSize(int size);     void setMonth(int month);     void setYear(QDate date); private:     void insertCalendar();     int fontSize;     QDate selectedDate;     QTextBrowser *editor; }; #endif

⌨️ 快捷键说明

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