##// END OF EJS Templates
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
Reset of the drag&drop operations when a drag is started from the datasource or from the variables

File last commit:

r512:d00d6fd96c10
r877:4dce99ba7a36
Show More
TimeWidget.h
32 lines | 579 B | text/x-c | CLexer
#ifndef SCIQLOP_TIMEWIDGET_H
#define SCIQLOP_TIMEWIDGET_H
#include <QWidget>
#include <Data/SqpRange.h>
namespace Ui {
class TimeWidget;
} // Ui
class TimeWidget : public QWidget {
Q_OBJECT
public:
explicit TimeWidget(QWidget *parent = 0);
virtual ~TimeWidget();
signals:
/// Signal emitted when the time parameters has beed updated
void timeUpdated(SqpRange time);
public slots:
/// slot called when time parameters update has ben requested
void onTimeUpdateRequested();
private:
Ui::TimeWidget *ui;
};
#endif // SCIQLOP_ SQPSIDEPANE_H