(这些软件可以免费从trolltech的WEB或FTP服务器上下载)
◆ tmake 1.11 或更高版本; (生成Qt/Embedded应用工程的Makefile文件)
◆ Qt/Embedded 2.3.7 (Qt/Embedded 安装包)
◆ Qt 2.3.2 for X11; (Qt的X11版的安装包, 它将产生x11开发环境所需要的两个工具)
1、安装tmake
在Linux 命令模式下运行以下命令:
tar xfz tmake-1.11.tar.gz
export TMAKEDIR=$PWD/tmake-1.11
export TMAKEPATH=$TMAKEDIR/lib/qws/linux-x86-g++
export PATH=$TMAKEDIR/bin:$PATH
2. 安装Qt/Embedded 2.3.7
在Linux 命令模式下运行以下命令:
tar xfz qt-embedded-2.3.7.tar.gz
cd qt-2.3.7
export QTDIR=$PWD
export QTEDIR=$QTDIR
export PATH=$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
./configure -qconfig -qvfb -depths 4,8,16,32
make sub-src
cd ..
上述命令 ./configure -qconfig -qvfb -depths 4,8,16,32 指定Qt 嵌入式开发包生
成虚拟缓冲帧工具qvfb,并支持4,8,16,32 位的显示颜色深度。另外我们也可以在
configure 的参数中添加-system-jpeg 和gif,使Qt/Embedded 平台能支持jpeg、gif
格式的图形。
上述命令 make sub-src 指定按精简方式编译开发包,也就是说有些Qt 类未被编
译。Qt 嵌入式开发包有5 种编译范围的选项,使用这些选项,可控制Qt 生成的库文件的大
小,但是您的应用所使用到的一些Qt 类将可能因此在Qt 的库中找不到链接。编译选项的具
体用法可运行./configure -help 命令查看。
3. 安装Qt/X11 2.3.2
在Linux 命令模式下运行以下命令:
tar xfz qt-x11-2.3.2.tar.gz
cd qt-2.3.2
export QTDIR=$PWD
export PATH=$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
./configure -no-opengl
make
make -C tools/qvfb
mv tools/qvfb/qvfb bin
cp bin/uic $QTEDIR/bin
cd ..
根据开发者本身的开发环境,也可以在configure 的参数中添加别的参数,比如
-no-opengl 或-no-xfs,可以键入./configure -help 来获得一些帮助信息。
如果Qt/Embedded 的应用是在UNIX 平台下开发的话,那么它就可以在开发的机器
上以一个独立的控制台或者虚拟缓冲帧的方式来运行,对于后者来说,其实是有一个X11
的应用程序虚拟了一个缓冲帧。通过指定显示设备的宽度,高度和颜色深度,虚拟出来
的缓冲帧将和物理的显示设备在每个像素上保持一致。这样每次调试应用时开发人员就
不用总是刷新嵌入式设备的FLASH 存储空间,从而加速了应用的编译、链接和运行周期。
运行Qt 的虚拟缓冲帧工具的方法是:在Linux 的图形模式下运行命令:
qvfb (回车)
当Qt 嵌入式的应用程序要把显示结果输出到虚拟缓冲帧时,我们在命令行运行这
个程序时,在程序名后加上-qws 的选项。例如: $> hello -qws
一,QT/E的安装。
在本机中安装了包括QT4.0.1(WINDOWS版本)以及QT/E2。3。7(LINUX版本)。
QT/E我安装在我的虚拟机中。因为QT/E2.3.7的版本问题,其适宜在REDHAT9。0版本(或更低版本)下安装,否则安装不成功。
QT/E安装过程复杂,具体细节可以参考下面这篇文章。《Qt/Embedded开发环境建立的过程》
此文在网上可搜索到。
本机下虚拟机中QT/E安装路径为:/home/wangxl/QTE/qt-2.3.7
QT/X11安装路径为:/home/wangxl/QTE/qt-2.3.2
Tmake安装路径为:/home/wangxl/QTE/Tmake-1.8
QT/E下载地址为:ftp://ftp.rediris.es/mirror/Qt/source/
Tmake下载地址为:ftp://ftp.trolltech.com/freebies/tmake/
二.QT与QT/E以及QT3与QT4之间的区别
相对来说QT与QT/E的语法一样,所不同之处在库类大小或者库类函数大小不同而已。QT/E相对于QT来说,不具有少数类或者少数函数的支持。具体QT/E是否包含某个类或者包含某个类中的函数,我的方法是在QT/E安装目录下的include文件夹中去查找。
QT3和QT4有很多不同点,主要不同也是在于库类以及支持函数有所变化,比如,有些QT3中的函数,在QT4中被其他函数名所代替,因此很多QT4程序在QT3环境下无法执行。QT/E2.3.7与QT3基本相同,除了我前面提到的QT与QT/E的差别。
三.QT/E编译与执行。
1.在QT/E编译与执行前要先设置TMAKE与QT/E LIB环境,具体方法如下:
[root@localhost tmake-1.8]# export TMAKEDIR=$PWD
[root@localhost tmake-1.8]# export TMAKEPATH=$TMAKEDIR/lib/qws/linux-x86-g++
[root@localhost tmake-1.8]# export PATH=$TMAKEDIR/bin:$PATH
[root@localhost qt-2.3.7]# export QTDIR=$PWD
[root@localhost qt-2.3.7]#export QTEDIR=$QTDIR
[root@localhost qt-2.3.7]#export PATH=$QTDIR/bin:$PATH
[root@localhost qt-2.3.7]#export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
2.如果你是用DESIGNER工具设计的界面(后面有讲),则要将*.ui文件转换成*.h文件和*.cpp文件。转换方法如下:
uic -o test.h test.ui
uic -o test.cpp -i test.h test.ui
3.编写一个*.pro文件(用来生成Makefile文件用),该文件格式比较固定。
如test.pro文件基本格式如下(以test.cpp ,test.h main.cpp为例子):
EMPLATE = app
CONFIG += qt warn_on release
HEADERS = test.h
SOURCES = test.cpp \
main.cpp
TARGET = hello
DEPENDPATH=/home/wangxl/QTE/qt-2.3.7/include
REQUIRES=
4.生成Makefile文件
方法为:tmake -o Makefile test.pro
5 编译生成可执行文件
make
6 打开QVFB
进入安装QT/X11所在目录, 在BIN目录下执行程序qvfb。
有时候需要修改qvfb执行时的deptb参数才能够执行QT/E程序。可以直接在QVFB打开窗口的Configure彩单项中选择,也可以用如下命令执行QVFB。
./qvfb -width ** -height ** -depth **
7.执行QT/E程序
如 。/TEST
在QVFB程序打开的窗口中将出现TEST程序的显示 。
四.Qt/e与QT/X11
安装QT/E的同时还需要安装QT/X11与Tmake,Tmake 是用来帮助生成Makefile文件的。安装QT/X11主要是向QT/E提供designer工具和qvfb工具的。
Designer可以用来设计图形界面,最后生成.ui文件,可通过UIC命令转换为相应的C++文件。
QVFB模拟帧缓冲,提供QT/E程序的显示平台。
五.QT/E 程序ARM 板上执行
在我虚拟机上可以执行的QT/E程序不能在ARM板上执行,需要对QT/E进行重新编译,并需要设置响对于ARM板系统的编译环境,具体方法可以参考我另外的一文《QT/E开发记录》
六.QT/E支持中文显示问题
QT/E需要字体转换才能显示中文。具体方法可以参考我另外的一文《QT/E开发记录》
但是由于缺少UNICODE的QPF文件的字体,中文字大小不均匀问题尚没解决。
61.22.39.* 于 2007-05-23 15:54:38发表:
6f3c3ae222bfa463bf4c86e8f668e803 2005 10 08.html http://harrod.qhrtwn.net/2005-08-15.html http://apowerwash.udxpzb.net/2005-08-31.html http://ricksfasteners.udxpzb.net/2005-07-27.html http://jacksonholebnb.qsogkn.net/2005-09-25.html http://pearlonline.iuwexi.net/2005-08-25.html http://saudi-plastic-factory.pbcqvd.net/2005-10-07.html 2005 08 31.html http://ehurricaneshelter.pbcqvd.net/2005-07-13.html http://mohie.udxpzb.net/2005-07-16.html e7000c4d06986984b665ec9d15ae719a
201.243.210.* 于 2007-05-21 20:51:13发表:
555ab8f2355559d87734e2e69f87680b http://giornale-quarto-potere-trapani-it.nofnhx.org/ http://samarcanda-corso-buenos-aires-milano.vzlvrv.org/ http://sito-x-bambino-gioco-babbo-natale.ynoxmw.org/ http://dolore-and-vescica-and-bruciore.vzlvrv.org/ http://costituzione-repubblica-socialista-federativa-jugoslava.shqsxs.org/ http://software-gratis-creare-base-musicale.csapok.org/ http://programma-manifestazione-natalizia-2006-roma.shqsxs.org/ http://art-128-revisione-patente-guida.nofnhx.org/ http://lettore-video-divx-amstrad-all-one.vzlvrv.org/ http://alimenti-che-contengono-lo-zinco.weejwl.org/ 417a8203d1b04948a6eb96aa4fb99866
80.109.97.* 于 2007-05-21 03:33:03发表:
4971ccbe910f9a93d5a9df5e5efdcbc6 http://jinlan-cpinfo.qhrtwn.net/2005-08-31.html 2005 07 14.html 2005 08 17.html http://mpeweb.zikpwk.net/2005-08-07.html http://hyatt-villas.iuwexi.net/2005-09-02.html http://hyatt-villas.iuwexi.net/2005-07-08.html 2005 07 27.html http://colgadero.pbcqvd.net/2005-10-01.html http://bioscreen-ms.iuwexi.net/2005-07-14.html http://fobook.utwikd.net/2005-07-07.html b242eb585f2503f10c8eb79a53604d31
190.30.132.* 于 2007-05-18 07:26:50发表:
347340d635910eec49e87e659add355d http://sant-andrew-s-club-perugia.osjckd.org/ http://convertire-file-rm-file-wave.shqsxs.org/ http://archivio-film-porno-vecchia-data-inculata.csapok.org/ http://copertina-vhs-cartone-animato-walt-disney.nofnhx.org/ http://programma-matematica-scuola-secondaria-primo-grado.ynoxmw.org/ http://little-taver-kingo-radio-freccia.weejwl.org/ http://scarica-gratis-programma-dvd-divx.vzlvrv.org/ http://online-webcam-borgo-tossignano-imola.vzlvrv.org/ http://assicurazione-auto-moto-online-italia.osjckd.org/ http://gioco-erotico-gratis-x-nokia-6630.osjckd.org/ af5e5529e610c2f14667e2377e4b1e8c
190.39.45.* 于 2007-05-16 21:56:45发表:
388542400307fb06475eec457f5669d4 http://cambio-residenza-cose-fare-milano.znuawz.net/ http://la-vita-di-robert-louis-stevenson.hfnghd.co.in/ http://materiale-imballaggio-regge-ed-accessorio-imballaggio.znuawz.biz/ http://spiegazione-capitolo-26-principe-machiavelli.hfnghd.name/ http://losanna-collection-de-art-brut.hfnghd.co.in/ http://hotel-diamant-san-martino-badia.hfnghd.name/ http://atto-citazione-azione-riduzione-lesione-legittima.hfnghd.name/ http://modificare-indirizzo-posta-elettronica-msn.hfnghd.name/ http://film-porno-gay-vedere-micropagamenti.znuawz.name/ http://piani-formativi-scienza-infermieristiche-pediatriche.znuawz.biz/ c5b410f967c066628d7832ce0ac5b28e
201.248.90.* 于 2007-05-16 07:01:02发表:
a3e11a54e2c464b2a39ee499e64b6ff8 http://dato-tecnico-mercedes-c200.fflnuc.biz/ http://fidanzata-cole-dylan-sprouse.fflnuc.name/ http://g-raspini-argento.hzqpsj.net/ http://opinioni-scheda-madre-i965.fflnuc.com/ http://driver-sheda-video-radeon-7000.fflnuc.biz/ http://configuratore-megane-berlina-4-porta.fflnuc.co.in/ http://ib-cim-italia-it-bpel.hzqpsj.net/ http://dsl-g624t-portata-metro.hzqpsj.net/ http://radiatore-newline.hzqpsj.net/ http://vendita-immobile-torretta-granitola.fflnuc.biz/ e1c77cc030a7259f186177a086fb8a83
83.57.88.* 于 2007-05-14 22:56:30发表:
f1dd444705bf347f19c1375c8a184ef3 http://l-addio-di-beppe-fenoglio.nvdset.name/ http://non-dimenticare-lo-spazzolino-da-denti.nvdset.biz/ http://iscrizione-all-albo-degli-psicologi.nvdset.com/ http://madonna-nera-chiesa-madonna-salute.nvdset.biz/ http://di-notte-gigi-d-alessio.nvdset.name/ http://riserva-pesca-localita-acqua-fredda.xjpled.name/ http://poesia-di-carducci-san-martino.nvdset.com/ http://er-medico-prima-linea-stagione-7.xjpled.co.in/ http://elenco-graduatoria-20-07-06.nvdset.biz/ http://auto-speciale-persona-speciale-privitera.xjpled.name/ 8115d97afce6272748d3203e407b2c31
74.56.55.* 于 2007-05-14 11:34:29发表:
c16460b4bbdc7cdfa7034bfd96965a91 http://parco-dell-adige-sud-verona.klkhba.name/ http://gioco-linea-golf-gioco-libero-mini.ujttwc.com/ http://la-liceale-seduce-i-professori.ujttwc.biz/ http://l-enciclopedia-della-cucina-italiana.ujttwc.biz/ http://s-a-b-a-srl.klkhba.co.in/ http://piattaforma-integrativa-aziendale-upim-rinascente.klkhba.co.in/ http://trucco-soluzione-kingdom-heart-ps2.ujttwc.name/ http://sacra-bibbia-1965-monsignor-martini-prezzo.ujttwc.net/ http://modello-cambio-destinazione-d-uso-opera.ujttwc.name/ http://scuola-di-ballo-nel-lazio.ujttwc.biz/ b0aa8b27a8ec12b02be4055d7baf88c7
190.73.116.* 于 2007-05-13 22:45:39发表:
270e8553ffe8e983dff661c1a9057202 http://foto-annuncio-singolo-coppia-sesso.ctvbxm.biz/ http://cassa-di-risparmio-di-spoleto.obuvie.name/ http://navette-da-linate-a-malpensa.ctvbxm.net/ http://dizionario-italiano-ungherese-on-line.ctvbxm.com/ http://cartina-geografica-dei-caraibi-it.ctvbxm.biz/ http://giudizio-ottemperanza-esecuzione-decreto-ingiuntivo.ctvbxm.biz/ http://comune-di-gradisca-d-isonzo.ctvbxm.com/ http://capodanno-2007-piazza-salotto-pescara.ctvbxm.name/ http://esempio-operazioni-fra-numero-interi.ctvbxm.com/ http://contratto-nazionale-servizio-pulizia-quadro-retribuzione.ctvbxm.biz/ a647f0935ac9b246ffd2471206f1cc7e
200.86.61.* 于 2007-05-13 10:32:58发表:
20363ee2f31c25b67b9c45cd820ae4e6 http://hotel-club-regina-fassa-mazzin-fassa.klkhba.co.in/ http://vacanza-capodanno-valle-d-aosta.ujttwc.name/ http://definizione-famiglia-punto-vista-sociologico.ujttwc.net/ http://rai-isola-dei-famosi-4.klkhba.biz/ http://samsung-multifunzione-scx-4200-laser.klkhba.co.in/ http://grand-hotel-rocche-rocca-mezzo.ujttwc.name/ http://accessorio-and-eten-and-g500.klkhba.biz/ http://centro-assistenza-agli-anziano-bologna.ujttwc.name/ http://radioamatore-download-internet-ricezione-audio.klkhba.co.in/ http://piazza-del-plebiscito-di-notte.ujttwc.name/ 784faf42bbc6bc8e3eef9ef627ced6bc
190.48.87.* 于 2007-05-12 18:45:12发表:
8ce7cd7552d7b1427a683c467a15045a http://operazioni-con-i-numeri-complessi.jnonib.net/ http://nuotando-aria-marlene-kuntz-testo.aqnfrs.net/ http://foto-camera-originale-motorola-t720i.uqqaqa.info/ http://motore-fuoribordo-yamaha-25-hp-4t.ycfrzc.net/ http://mutuo-prima-casa-friuli-venezia-giulia.uqqaqa.info/ http://giornale-vicenza-it-tutta-settimana.jnonib.net/ http://pic-indolor-siringa-sterile-5-ml.sjuvcf.net/ http://porto-san-giorgio-ap-climatizzazione.sjrmzh.info/ http://eugenio-finardi-la-forza-dell-amore.sjrmzh.info/ http://arte-certose-dell-italia-meridionale.ycfrzc.net/ d9a31e90dfa815b241581cfa56f7d9b0
88.161.132.* 于 2007-05-12 04:16:58发表:
333d68d5394c5facd1119cfdb63a9a72 http://suoneria-con-versi-di-animali.wpktse.info/ http://cartina-geografica-dell-italia-fisica.jiqgyr.net/ http://convertire-file-pdf-in-txt.wpktse.info/ http://dennis-fantina-mi-manchi-da-morire.uwvdff.net/ http://utet-grande-dizionario-lingua-italiana.xhzpsl.info/ http://mettere-sfondo-personalizzato-blog-msn.wsgcxb.info/ http://dpcm-30-dicembre-1993-n-593.ycfrzc.info/ http://migliore-programma-scaricare-musica-gratis.nxlnkr.net/ http://festa-paesane-friuli-venezia-giulia-dicembre.xhzpsl.info/ http://appartamenti-in-affitto-estate-2006.nxlnkr.net/ e851160535cf163ca98e2cabd77393d9
84.38.90.* 于 2007-05-10 14:37:27发表:
34811c924bd02721db834f36bc600d0f http://teoria-generale-dei-sistema-omeopatia.jnonib.net/ http://supporto-software-tecnologia-mount-rainer.uaaxsj.info/ http://universita-degli-studi-di-teramo.aqnfrs.net/ http://cerco-gattino-regalo-citta-pistoia.unhbej.info/ http://foto-camera-carica-batteria-nikon.cbcmld.net/ http://ff7-dirge-of-cerberus-guida.aqnfrs.net/ http://allevamento-amatoriale-cane-razza-lazio.sjrmzh.info/ http://bora-bora-albergo-e-hotel.tpuskc.info/ http://niente-piu-politica-oramai-in-rai.unhbej.info/ http://agenzia-interinale-piano-d-impresa.cbcmld.net/ 6ea61d011241fc97c6cd95e85f270196
190.51.24.* 于 2007-05-09 04:48:29发表:
e8f12b98cb38e88771f824d9a099e7fb http://ww3-atlanteitaliano-it-atlante-default2-htm.aqnfrs.info/ http://temporanea-importazione-stabile-organizzazione-panama.xhzpsl.net/ http://testo-canzone-because-you-live.esitxq.info/ http://tutto-partita-nazionale-italiana-calcio-storia.zqxhac.net/ http://nuovo-codice-appalto-pubblico-ottobre-2006.vuulyy.net/ http://informazione-lettera-mensa-scolastica-aumentata.aqnfrs.info/ http://farina-pasta-fatta-casa-pasta-flour.aphvga.info/ http://sintonizzatore-tv-digitale-terrestre-sony-200.xhzpsl.net/ http://gioielleria-vendita-lingotto-oro-iva.aphvga.info/ http://ruolo-della-famiglia-nella-societa.cbcmld.info/ c30356c496a34fc36d31054e2275bbe2
190.73.228.* 于 2007-05-08 18:09:47发表:
92c161add73aadcb13e17504b893d8f9 http://spiaggia-janna-de-mare-sardegna.uyabmw.net/ http://centro-per-lo-studio-della-menopausa.vsytef.net/ http://chiesa-di-santa-francesca-romana.uqqaqa.net/ http://ipermercato-aperto-venerdi-8-dicembre-torino.vsytef.net/ http://carcinoma-polmonare-non-piccola-cellula.oovbhv.info/ http://direttiva-comunitaria-1999-70-ce.lvrsgc.info/ http://messaggio-click-here-to-enter.jnonib.info/ http://proteina-c-reattiva-fosfatasi-alcalina-ves.lvrsgc.info/ http://mercatino-natale-milano-via-dei-mercanti.vkzzwe.net/ http://biglietto-invito-festa-bambino-compleanno.uaaxsj.net/ ad9883469ac620e72a2c30c2417cb4d3
200.90.123.* 于 2007-05-08 04:13:53发表:
f87263f9ceeafa4a4b4d18fa1fb27e0c http://auricolare-boom-filo-hs-4w.xhzpsl.net/ http://con-fotocamera-e-radio-cellulare.qncqss.net/ http://augurio-amico-vero-cuore-poesia.vuulyy.net/ http://nonviolenti-org-danilo-dolce-vita-opera.tpuskc.net/ http://foto-amatoriale-sesso-marito-moglie-italiano.drlrmm.info/ http://compito-esame-ingegneria-fisica-ferrara-guidi.zqxhac.net/ http://donna-incontro-sesso-mail-udine.aqnfrs.info/ http://popolazione-straniera-residente-in-italia.cbcmld.info/ http://intel-p4-2-2-scheda-madri.drlrmm.info/ http://funzione-polizia-stradale-segnaletica-non-conforme.xhzpsl.net/ 26ebd8669f82ff2d680fe0e97ba7427c
84.121.216.* 于 2007-04-17 20:34:58发表:
http://825cfdae7879e634f4dbe11b15c2c63d-t.ghoiou0.info 825cfdae7879e634f4dbe11b15c2c63d http://825cfdae7879e634f4dbe11b15c2c63d-b1.ghoiou0.info 825cfdae7879e634f4dbe11b15c2c63d http://825cfdae7879e634f4dbe11b15c2c63d-b3.ghoiou0.info 196c3da0ce3e9a23267e7eab02ad2b11