📄 messagebox.h
字号:
#ifndef MESSAGEBOX_H
#define MESSAGEBOX_H
#include <QDialog>
class QLabel;
class MessageBox : public QDialog
{
Q_OBJECT
public:
MessageBox(QWidget *parent=0);
public slots:
void slotQuestion();
void slotInformation();
void slotWarning();
void slotCritical();
void slotAbout();
void slotAboutQt();
void slotCustom();
private:
QLabel *label;
};
#endif // MESSAGEBOX_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -