##// END OF EJS Templates
Removed interaction handling in QCP since they are implemented in...
Removed interaction handling in QCP since they are implemented in SciQLop Before the wheel interaction was done multiple times on QCP side first then on SciQLop side. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r95:5eeffba24c85
r1358:48660d9880a2
Show More
SqpSidePane.h
27 lines | 408 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPSIDEPANE_H
#define SCIQLOP_SQPSIDEPANE_H
#include <QWidget>
namespace Ui {
class SqpSidePane;
} // Ui
class QToolBar;
class SqpSidePane : public QWidget {
Q_OBJECT
public:
explicit SqpSidePane(QWidget *parent = 0);
virtual ~SqpSidePane();
QToolBar *sidePane();
private:
Ui::SqpSidePane *ui;
QToolBar *m_SidePaneToolbar;
};
#endif // SCIQLOP_ SQPSIDEPANE_H