Michaël Lemaire
1539c75d6d
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@365 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
38 lines
897 B
C++
38 lines
897 B
C++
#ifndef _PAYSAGES_QT_DIALOGCURVE_H_
|
|
#define _PAYSAGES_QT_DIALOGCURVE_H_
|
|
|
|
#include <QDialog>
|
|
#include <QPushButton>
|
|
#include "widgetcurveeditor.h"
|
|
|
|
#include "../lib_paysages/curve.h"
|
|
|
|
class DialogCurve : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DialogCurve(QWidget* parent, Curve* curve, double xmin, double xmax, double ymin, double ymax, QString xlabel, QString ylabel);
|
|
~DialogCurve();
|
|
|
|
static bool getCurve(QWidget* parent, Curve* curve, double xmin, double xmax, double ymin, double ymax, QString xlabel, QString ylabel);
|
|
|
|
public slots:
|
|
virtual void accept();
|
|
void revert();
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent* e);
|
|
|
|
private:
|
|
void revertToCurrent();
|
|
|
|
private:
|
|
Curve* _base;
|
|
Curve* _current;
|
|
WidgetCurveEditor* _curve_editor;
|
|
QPushButton* _button_accept;
|
|
QPushButton* _button_revert;
|
|
QPushButton* _button_cancel;
|
|
};
|
|
|
|
#endif
|