##// END OF EJS Templates
Adds method to get all variables from model...
Adds method to get all variables from model This method will be used to generate forbidden names when renaming a variable (i.e. names of existing variables)

File last commit:

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