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.
31 lines
493 B
C++
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
|