##// END OF EJS Templates
Fix the cosinus bug....
Fix the cosinus bug. The provider now works on the variable controller thread instead of the main thread. That means the visu is still usable during zoom operation

File last commit:

r192:274725519804
r298:3a08c66e4df2
Show More
TimeWidget.h
32 lines | 585 B | text/x-c | CLexer
Add the TimeWidget
r134 #ifndef SCIQLOP_TIMEWIDGET_H
#define SCIQLOP_TIMEWIDGET_H
#include <QWidget>
add TimeWidget connection
r192 #include <Data/SqpDateTime.h>
Add the TimeWidget
r134 namespace Ui {
class TimeWidget;
} // Ui
class TimeWidget : public QWidget {
Q_OBJECT
public:
explicit TimeWidget(QWidget *parent = 0);
virtual ~TimeWidget();
add TimeWidget connection
r192 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
r134 private:
Ui::TimeWidget *ui;
};
#endif // SCIQLOP_ SQPSIDEPANE_H