volmetrics

diff src/mainwin.h @ 36:1df14c5ffa71

conversion to Qt
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 06 Feb 2015 22:39:51 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/mainwin.h	Fri Feb 06 22:39:51 2015 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +#ifndef MAINWIN_H
     1.5 +#define MAINWIN_H
     1.6 +
     1.7 +#include <QMainWindow>
     1.8 +
     1.9 +namespace Ui {
    1.10 +class MainWin;
    1.11 +}
    1.12 +
    1.13 +class MainWin : public QMainWindow
    1.14 +{
    1.15 +	Q_OBJECT
    1.16 +
    1.17 +public:
    1.18 +	explicit MainWin(QWidget *parent = 0);
    1.19 +	~MainWin();
    1.20 +
    1.21 +private slots:
    1.22 +	void on_action_quit_triggered();
    1.23 +
    1.24 +	void on_action_about_triggered();
    1.25 +
    1.26 +	void on_spin_win_low_valueChanged(double arg1);
    1.27 +
    1.28 +	void on_spin_win_high_valueChanged(double arg1);
    1.29 +
    1.30 +private:
    1.31 +	Ui::MainWin *ui;
    1.32 +};
    1.33 +
    1.34 +#endif // MAINWIN_H