qt_demoe/third/qwtdemo/examples/refreshtest/mainwindow.h

29 lines
434 B
C
Raw Normal View History

2019-11-07 02:55:57 +00:00
#ifndef _MAIN_WINDOW_H_
#define _MAIN_WINDOW_H_
#include <qmainwindow.h>
class Plot;
class Panel;
class QLabel;
class Settings;
class MainWindow: public QMainWindow
{
Q_OBJECT
public:
MainWindow( QWidget *parent = NULL );
virtual bool eventFilter( QObject *, QEvent * );
private Q_SLOTS:
void applySettings( const Settings & );
private:
Plot *d_plot;
Panel *d_panel;
QLabel *d_frameCount;
};
#endif