You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
555 B
C
33 lines
555 B
C
9 years ago
|
#ifndef GLOBALSETTINGSFORM_H
|
||
|
#define GLOBALSETTINGSFORM_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "../formbinder.h"
|
||
|
#include "globalsettings.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class GlobalSettingsForm;
|
||
|
}
|
||
|
|
||
|
class GlobalSettingsForm : public FormBinder<GlobalSettings>
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit GlobalSettingsForm(QWidget *parent = 0);
|
||
|
~GlobalSettingsForm();
|
||
|
|
||
|
private:
|
||
|
Ui::GlobalSettingsForm *ui;
|
||
|
|
||
|
// IForm interface
|
||
|
public slots:
|
||
|
bool saveRecord() override;
|
||
|
|
||
|
// IForm interface
|
||
|
public:
|
||
|
void loadEntity() override;
|
||
|
};
|
||
|
|
||
|
#endif // GLOBALSETTINGSFORM_H
|