##// END OF EJS Templates
Implements visit of graph...
Implements visit of graph When a graph is visited, we check if it can contains the variable, and if it's the case, we add an action to the current menu to open the variable in this graph.

File last commit:

r178:274725519804
r198:946a2291304e
Show More
TimeWidget.h
32 lines | 585 B | text/x-c | CLexer
Add the TimeWidget
r126 #ifndef SCIQLOP_TIMEWIDGET_H
#define SCIQLOP_TIMEWIDGET_H
#include <QWidget>
add TimeWidget connection
r178 #include <Data/SqpDateTime.h>
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
void timeUpdated(SqpDateTime time);
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