refer from
使用標準輸入框作業系統:fedora linux 14
建立資料夾inputdialog,以下是**(三個檔案)
[cpp]view plain
copy
/** object: inputdialog
** desc: 使用標準輸入框
** file: main.cpp
** compile:qmake-qt4 -project;qmake-qt4;make;
** author: lixiujie www.xiujie.cn
** date: 2011-05-12
** note: 編譯說明:
** qmake-qt4 -prject 自動生成程式的專案檔案(*.pro);
** qmake-qt4 用於生成程式的makefile檔案;
** make 編譯 makefile 檔案得到可執行檔案。
** */
#include "inputdialog.h" // 自定義類標頭檔案
int main(int argc, char *argv)
[cpp]view plain
copy
/** object: inputdialog
** desc: 使用標準輸入框
** file: inputdialog.h
** class: inputdialog使用標準輸入框類 標頭檔案
** compile:qmake-qt4 -project;qmake-qt4;make;
** author: lixiujie www.xiujie.cn
** date: 2011-05-12
** note: 編譯說明:
** qmake-qt4 -prject 自動生成程式的專案檔案(*.pro);
** qmake-qt4 用於生成程式的makefile檔案;
** make 編譯 makefile 檔案得到可執行檔案。
** */
#ifndef inputdialog_h
#define inputdialog_h
#include
class inputdialog : public qdialog
; #endif // inputdialog_h
[cpp]view plain
copy
/** object: inputdialog
** desc: 使用標準輸入框
** file: inputdialog.cpp
** class: inputdialog使用標準輸入框類 原始檔
** compile:qmake-qt4 -project;qmake-qt4;make;
** author: lixiujie www.xiujie.cn
** date: 2011-05-12
** note: 編譯說明:
** qmake-qt4 -prject 自動生成程式的專案檔案(*.pro);
** qmake-qt4 用於生成程式的makefile檔案;
** make 編譯 makefile 檔案得到可執行檔案。
** */
#include "inputdialog.h"
inputdialog::inputdialog() : qdialog()
void inputdialog::slotname()
void inputdialog::slot***()
void inputdialog::slotage()
void inputdialog::slotstature()
按鈕圖示:images資料夾下
Qt學習 第一章 什麼是Qt
qt是乙個跨平台的c 圖形使用者介面應用程式框架。它為應用程式開發者提 供建立藝術級圖形使用者介面所需的所有功能。它是完全物件導向的,很容易擴充套件,並且允許真正的元件程式設計。qt支援的平台有 windows xp vista win7 win8 win2008 unix x11 linux su...
第一章 Qt入門
執行結果 建立了乙個顯示 hello qt 的qlabel視窗部件。執行結果 字串中可以支援html樣式 執行結果 巨集signal 和slot 是qt語法中的一部分。執行結果 這個程式有三個視窗部件組成 乙個qspinbox,乙個qslider,乙個qwidget。qwidget是這個應用程式的主...
第一章基本語法
一些容易忘記的語法。1.每條語句末尾盡量加上分號。3.陣列 var array array 4 var array array var array array aaa bbb ccc var array array aaa bbb ccc var array arr 111,1111 aaa 可以包...