📄 hello.h
字号:
#ifndef HELLO_H#define HELLO_H#include <qwidget.h>#include<qlayout.h>#include<qpushbutton.h>#include <qmenubar.h>#include <qlabel.h>class Hello : public QWidget{ Q_OBJECTpublic: Hello( const char *text, QWidget *parent=0, const char *name=0 ); QPushButton *sysName;signals: void clicked();protected: QVBoxLayout *optionsFormLayout; QHBoxLayout *chartTypeLayout; QHBoxLayout *fontLayout ; void mouseReleaseEvent( QMouseEvent * ); void paintEvent( QPaintEvent * );private slots: void animate();private: QString t; int b;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -