28 lines
404 B
C++
28 lines
404 B
C++
|
#include "userhelp.h"
|
||
|
#include "ui_userhelp.h"
|
||
|
|
||
|
UserHelp::UserHelp(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::UserHelp)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
}
|
||
|
|
||
|
UserHelp::~UserHelp()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
void UserHelp::on_toolBox_currentChanged(int index)
|
||
|
{
|
||
|
ui->tabWidget->setCurrentIndex(index);
|
||
|
}
|
||
|
|
||
|
|
||
|
void UserHelp::on_tabWidget_currentChanged(int index)
|
||
|
{
|
||
|
ui->toolBox->setCurrentIndex(index);
|
||
|
}
|
||
|
|