##// END OF EJS Templates
New features like chart type to the test app
New features like chart type to the test app

File last commit:

r5:99c4c9176ee1
r5:99c4c9176ee1
Show More
mainwidget.h
29 lines | 567 B | text/x-c | CLexer
#ifndef MAINWIDGET_H
#define MAINWIDGET_H
#include <QWidget>
class ChartWidget;
class MainWidget : public QWidget
{
Q_OBJECT
public:
explicit MainWidget(QWidget *parent = 0);
signals:
private slots:
void chartTypeChanged(int itemIndex);
void dataChanged(QString itemText);
void backgroundChanged(int itemIndex);
void xMinChanged(int value);
void xMaxChanged(int value);
void yMinChanged(int value);
void yMaxChanged(int value);
private:
ChartWidget *m_chartWidget;
};
#endif // MAINWIDGET_H