32 lines
452 B
C
32 lines
452 B
C
|
#ifndef METEOSRED_H
|
||
|
#define METEOSRED_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "widget.h"
|
||
|
namespace Ui {
|
||
|
class meteosred;
|
||
|
}
|
||
|
|
||
|
class meteosred : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit meteosred(QWidget *parent = 0);
|
||
|
~meteosred();
|
||
|
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_2_clicked();
|
||
|
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
void changeItems();
|
||
|
|
||
|
void closeEvent(QCloseEvent *event);
|
||
|
private:
|
||
|
Ui::meteosred *ui;
|
||
|
};
|
||
|
|
||
|
#endif // METEOSRED_H
|