28 lines
386 B
C++
28 lines
386 B
C++
#ifndef USERHELP_H
|
|
#define USERHELP_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class UserHelp;
|
|
}
|
|
|
|
class UserHelp : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit UserHelp(QWidget *parent = nullptr);
|
|
~UserHelp();
|
|
|
|
private slots:
|
|
void on_toolBox_currentChanged(int index);
|
|
|
|
void on_tabWidget_currentChanged(int index);
|
|
|
|
private:
|
|
Ui::UserHelp *ui;
|
|
};
|
|
|
|
#endif // USERHELP_H
|