master
p54670231 5 years ago
parent ab94f65cc4
commit 8645e3748e

@ -0,0 +1,40 @@
#ifndef HOME_H
#define HOME_H
#include <QMainWindow>
#include "communication.h"
namespace Ui {
class Home;
}
class Home : public QMainWindow
{
Q_OBJECT
public:
explicit Home(QWidget *parent = 0);
~Home();
void set_background();
bool eventFilter(QObject *obj, QEvent *event);
private slots:
void on_button_to_log_clicked();
void on_button_to_book_clicked();
void on_button_to_recommdend_clicked();
void on_button_to_person_clicked();
void on_to_communication_clicked();
private:
Ui::Home *ui;
};
#endif // HOME_H
Loading…
Cancel
Save