📄 dialog.h
字号:
#ifndef DIALOG_H
#define DIALOG_H
class QTimer;
class QPushButton;
#include <qwidget.h>
#include <qlabel.h>
class ShowJpeg : public QWidget
{
Q_OBJECT
public:
ShowJpeg( QWidget *parent=0, const char *name=0 );
QPushButton* pushButton1;
QPushButton* pushButton2;
QPushButton* pushButton3;
QPushButton* pushButton4;
protected slots:
void update();
void timerstop();
void forward();
void backward();
void timerlink();
private:
QTimer *autoShowTimer;
/*QWidget *widgetJpeg;*/
QLabel *l;
int count;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -