mkdir hello
cd hello
./designer-qt4
/*************************************************************************
> File Name: hello.h
> Author: gatieme
> Mail: gatieme@163.com
> Created Time: 2014年06月17日 星期二 02时25分22秒
************************************************************************/
#include
// 引入UI的窗体
namespace Ui
{
class Hello;
}
class Hello : public QDialog
{
Q_OBJECT
public:
Hello(QDialog *parent = NULL);
~Hello( );
protected:
Ui::Hello *ui;
};
/*************************************************************************
> File Name: hello.cpp
> Author: gatieme
> Mail: gatieme@163.com
> Created Time: 2014年06月17日 星期二 02时27分55秒
************************************************************************/
#include "hello.h"
#include "ui_hello.h"
Hello::Hello(QDialog *parent) :
QDialog(parent),
ui(new Ui::Hello)
{
ui->setupUi(this);
}
Hello::~Hello()
{
delete ui;
}
#include
#include "hello.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Hello helloDialog;
helloDialog.show( );
return a.exec( );
}