mirror of
https://github.com/chengyangkj/Ros_Qt5_Gui_App.git
synced 2025-09-15 12:58:58 +08:00
26 lines
387 B
C++
26 lines
387 B
C++
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <QWidget>
|
|
#include <QSettings>
|
|
#include <QMessageBox>
|
|
namespace Ui {
|
|
class Settings;
|
|
}
|
|
|
|
class Settings : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Settings(QWidget *parent = 0);
|
|
~Settings();
|
|
public slots:
|
|
void slot_ok_btn_click();
|
|
void slot_cancel_btn_click();
|
|
private:
|
|
Ui::Settings *ui;
|
|
};
|
|
|
|
#endif // SETTINGS_H
|