You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
526 B

#ifndef FRMSCROLLBAR_H
#define FRMSCROLLBAR_H
#include <QWidget>
#include "qcustomplot.h"
namespace Ui {
class frmScrollBar;
}
class frmScrollBar : public QWidget
{
Q_OBJECT
public:
explicit frmScrollBar(QWidget *parent = 0);
~frmScrollBar();
private:
Ui::frmScrollBar *ui;
private slots:
void initForm();
void horzScrollBarChanged(int value);
void vertScrollBarChanged(int value);
void xAxisChanged(QCPRange range);
void yAxisChanged(QCPRange range);
};
#endif // FRMSCROLLBAR_H