← index
Qt.Projects/source/desktop/002.hello_world_button/main_window.hpp
Source: Qt.Projects/source/desktop/002.hello_world_button/main_window.hpp
#ifndef __HELLO_WORLD_H__
#define __HELLO_WORLD_H__

#include<QMainWindow>
#include<QPushButton>
#include<QMessageBox>

class HelloWorld : public QMainWindow {
    Q_OBJECT
public:
    explicit HelloWorld(QWidget *parent = 0);
    
public slots:
    void sayHello();
    
private:
    QPushButton *say_button;
};


#endif