1、新建文件夾 gotocell。
2、打開qt designer。點擊“應用程序”-“編程”-“Qt Designer”;或者在終端裡輸入命令:designer。
3、選擇“File”--“New”,選擇“Widget”,然後“Create”。
4、拖入“PushButton” 和“Label”。
5、保存為gotocell.ui ,然後關閉 qt designer 。
6、在gotocell文件夾裡右擊打開終端,輸入命令:uic gotocell.ui -o ui_gotocell.h
7、編寫程序,在gotocell文件夾裡:
1) 新建文件main.cpp。輸入程序:
- #include <QtGui/QApplication>
- #include "gotocell.h"
-
- int main(int argc,char *argv[])
- {
- QApplication a(argc,argv);
- gotocell hello;
- hello.show();
- return a.exec();
- }
2) 新建文件gotocell.h。輸入程序:
- #ifndef GOTOCELL_H #define GOTOCELL_H
-
- #include <QWidget>
-
- namespace Ui{
- class Form;
- }
-
- class gotocell:public QWidget
- {
- Q_OBJECT
-
- public:
- gotocell(QWidget *parent=0);
- ~gotocell();
-
- private:
- Ui::Form *ui;
-
- public slots:
- void on_pushButton_clicked();
-
- }; // 不能少分號,否則出錯
-
- #endif
3) 新建文件gotocell.cpp。輸入程序:
- #include "gotocell.h"
- #include "ui_gotocell.h"
-
- gotocell::gotocell(QWidget *parent):
- QWidget(parent),
- ui(new Ui::Form)
- {
- ui->setupUi(this);
- }
-
- gotocell::~gotocell()
- {
- delete ui;
- }
-
- void gotocell::on_pushButton_clicked()
- {
- ui->label->setText("helloQT");
- }
8、生成工程文件,編譯並運行,如下:
root@ www.linuxidc.com:/home/caoyin/gotocell# qmake -project
root@ www.linuxidc.com:/home/caoyin/gotocell# qmake
root@ www.linuxidc.com:/home/caoyin/gotocell# make
/usr/bin/uic-qt4 gotocelldialog.ui -o ui_gotocelldialog.h
g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. -o gotocelldialog.o gotocelldialog.cpp
g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. -o main.o main.cpp
/usr/bin/moc-qt4 -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. gotocelldialog.h -o moc_gotocelldialog.cpp
g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. -o moc_gotocelldialog.o moc_gotocelldialog.cpp
g++ -Wl,-O1 -o gotocell gotocelldialog.o main.o moc_gotocelldialog.o -L/usr/lib -lQtGui -lQtCore -lpthread
root@ www.linuxidc.com:/home/caoyin/gotocell# ./gotocell
就能彈出創建的對話框了