Files
prodejna/core/settings/seasonnamedialog.h
T
pepaandRokos Josef a89b0381b1 Added settings for seasons and number series. Added static method
ComboData::createComboData for easier combo bindings.
2016-06-24 16:15:19 +02:00

31 lines
493 B
C++

#ifndef SEASONNAMEDIALOG_H
#define SEASONNAMEDIALOG_H
#include <QDialog>
#include "../data/season.h"
#include "../objectbinder.h"
namespace Ui {
class SeasonNameDialog;
}
class SeasonNameDialog : public QDialog
{
Q_OBJECT
public:
explicit SeasonNameDialog(SeasonPtr season, QWidget *parent = 0);
~SeasonNameDialog();
private:
Ui::SeasonNameDialog *ui;
ObjectBinder m_binder;
// QDialog interface
public slots:
void accept();
};
#endif // SEASONNAMEDIALOG_H