用qt SDK 構建meego touch 開發環境
說明:
也許有不少朋友會問到,網上有不少構建meego touch環境的文章了,你又何必多此一舉呢?細心的朋友可能會發現,我這里不用編譯QT4.7 而是用QT4.7的SDK來搭建環境的。編譯QT4.7一般都需要大概一下午的時間,而是用SDK則最多不超過20分鐘就搞定了。這也是希望能有更快的方法讓大家來玩meego。
下載 qt-sdk-linux-x86-opensource-2010.05-rc1.bin:
- 安裝 qt-sdk-linux-x86-opensource-2010.05-rc1.bin
chmod 777 qt-sdk-linux-x86-opensource-2010.05-rc1.bin
./qt-sdk-linux-x86-opensource-2010.05-rc1.bin - 下載編譯好的dbus庫文件(附件里),放到QT 2010.05的庫里。
- 安裝g++
- 安裝依賴庫文件:
- 安裝依賴庫
sudo apt-get install libfontconfig1-dev libfreetype6-dev libx11-dev libxcursor-dev libxext-dev libxfixes-dev libxft-dev libxi-dev libxrandr-dev libxrender-dev
- 安裝dbus庫
sudo apt-get install libgconf2-dev libdbus-qt-1-dev
- 修改libmeegotouch/configure,將HAVE_DBUS=no改為yes
- 安裝依賴庫
- 安裝meegotouch-theme(這個主要是一些主題css文件等.
- 下載meegotouch-theme 代碼
git clone git://gitorious.org/meegotouch/meegotouch-theme.git
- 進入目錄meegotouch-theme
cd meegotouch-theme/
- 執行qmake 生成makefile :
qmake
- 安裝
sudo make install
文章末尾有解決方案 - 下載meegotouch-theme 代碼
- 安裝libmeegotouch
- 下載源代碼
git clone git://gitorious.org/meegotouch/libmeegotouch.git
- 安裝一些依賴的庫。(根據個人PC的配置情況,以及后面2.4的配置結果,可能還需要安裝其他的一些依賴庫)
sudo apt-get install libicu-dev graphviz
- 進入目錄libmeegotouch
cd libmeegotouch
- 進入目錄,生成makefile :
qmake
- 執行make 編譯
make
- 安裝
sudo make install
- 下載源代碼
在/usr/local/lib下的目錄,發現已經生成的meego 庫文件
實踐:
- 寫一個hello world代碼
main.cpp代碼HelloWorld.pro#include <MApplication>
#include <MApplicationWindow>
#include <MApplicationPage>
#include <MLabel>
int main(int argc, char **argv)
{
MApplication app(argc, argv);
MApplicationWindow window;
MApplicationPage page;
page.setTitle("My First Page");
page.setCentralWidget(new MLabel("Hello World!"));
page.appear(&window);
window.show();
return app.exec();
}代碼######################################################################
# Automatically generated by qmake (2.01a) ?? 9? 12 21:36:22 2010
######################################################################
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += meegotouch
# Input
SOURCES += main.cpp
生成makefile文件qmakemakesudo ./helloWorld
- 編譯一個編譯example目錄里面的 tutorial_music_catalogue 例子
- tutorial_music_catalogue這個例子程序,有詳細的介紹文檔,在libmeegotouch的文檔主頁上,有個介紹 Your first MeeGo Touch application ,適合做為入門文檔
- 由于libmeegotouch沒有安裝到標準路徑下,因此需要修改它的pro工程文件,打開文件 tutorial_music_catalogue.pro,在里面添加如下一段(如果meegotouch的安裝路徑不一樣,請自行對應修改):
代碼unix {
INCLUDEPATH += /usr/local/include/meegotouch
LIBS += -L/usr/local/lib -lmeegotouchcore -lmeegotouchextensions -lmeegotouchsettings -lmeegotouchviews
QMAKE_LFLAGS += -Wl,-rpath,/usr/local/lib
}
- 執行qmake
- 執行make,如果出現問題,可能是由于這個Makefile中需要調用mmoc。
PATH=/usr/local/bin/:$PATH make
- 運行tutorial_music_catalogue
sudo ./tutorial_music_catalogue
(并非所有的電腦都會黑屏或者花屏,所以運行程序的時候,可以自行嘗試一下不同的情況)sudo ./tutorial_music_catalogue -software
第一頁
第二頁
第三頁
- libmeegotouch程序通用的命令行參數
代碼MComponentData: Usage: ./tutorial_music_catalogue
[-software] Enable software rendering
[-fullscreen] Make the application fullscreen
[-show-br] Show the bounding rectangle for all scene items
[-show-fps] Show the FPS for the view (only with OpenGL rendering)
[-log-fps] Log the FPS for the application
[-show-size] Show widget sizes in the scene
[-show-object-names] Show the names of the objects in the scene
[-show-position] Show widget positions in the scene
[-show-cursor] Force the cursor to be visible
[-reverse] Change the layout direction to right-to-left direction
[-dev] Enable development visualization mode
[-genimglist filename] Generate list of requested images to filename
[-remote-theme] Wait until remote theme daemon is available
[-local-theme] Force usage of local theme processing instead of remote theme daemon
[-output-level debug|warning|critical] Only show messages of given output level or above
[-output-prefix <prefix>] Only show debug messages that start with the given prefix
[-no-output-prefix <prefix>] Only show debug messages that do not start with the given prefix
[-target <name>] Use the target device profile
[-prestart] Prestart the application (if supported)
[-fixed-orientation 0|90|180|270] Start application in fixed orientation.
This overrides keyboard state, as well as a device profile - tutorial_music_catalogue這個示例程序很新,它依賴的qt版本和libmeegotouch版本,都高于目前meego鏡像中對應的qt和libmeegotouch版本,因此在開發板上或虛擬機里并不能運行。但是,不妨礙我們用它來學習入門。example目錄里面的其他示例程序,在開發板上基本上都可以運行。
補充一些描述。
- libmeegotouch是圖形開發工具箱,從它的功能上來說,它相當于qt,gtk,clutter等這一類圖形界面庫。
- libmeegotouch是基于qt的,準確點說是基于qt的graphicsview框架的,但是,它在graphicsview的基礎上,又封裝出一層widget。在使用方法上和設計模式上,和原始的graphicsview或qwidget,并沒有太多的交集。
- 開發meego應用程序,如果沒有qt開發經驗,建議直接從libmeegotouch學起,在使用過程中,如果碰到了原始的qt中的class,再查閱對應的手冊。這種學習路線,消耗的時間應該是最少的。
- 另外,雖然在PC上可以安裝libmeegotouch,但是這畢竟不是meego的完整開發環境,它只負責meego的GUI部分,因此這篇文檔介紹的方法,不能替代meego的完整開發環境。之所以在PC上安裝libmeegotouch,一方面是讓許多沒有硬件開發環境的朋友也可以在PC上體驗一下 meego的界面操作方式,另一方面,也是想說明一下meego程序在開發上的靈活性,比如前端UI設計的時候,就可以先在PC上做一些原型設計。
最后非常感謝小輝,阿虎,給予的幫助,也希望更多的朋友來關注meego 關注meegoq。
附:qmake與qt4的連接問題解決方案
可以敲下面命令測試
qmake -v
出現下面情況:
$Qmake version: 1.07a (Qt 3.3.8b)
$Qmake is free software from Trolltech ASA.
怎么qmake的版本變成了qt3了,進入/usr/bin目錄下
root@ubuntu:/home/yyy# cd /usr/bin
root@ubuntu:/usr/bin# ls -l qmake
lrwxrwxrwx 1 root root 23 2009-10-09 09:35 qmake -> /etc/alternatives/qmake
root@ubuntu:/usr/bin# ls -l qmake
lrwxrwxrwx 1 root root 23 2009-10-09 09:35 qmake -> /etc/alternatives/qmake
查看qmake的信息,它是一個鏈接指向的是/etc/alternatives/qmake
root@ubuntu:/usr/bin# ls -l /etc/alternatives/qmake
lrwxrwxrwx 1 root root 18 2009-12-08 12:46 /etc/alternatives/qmake -> /usr/bin/qmake-qt3
lrwxrwxrwx 1 root root 18 2009-12-08 12:46 /etc/alternatives/qmake -> /usr/bin/qmake-qt3
終于找到的根源,原來qmake被設置成了qmake-qt3
強行修改
代碼
root@ubuntu:/usr/bin# rm /etc/alternatives/qmake
root@ubuntu:/usr/bin# ln -s /usr/bin/qmake /etc/alternatives/qmake
root@ubuntu:/usr/bin# qmake -v
QMake version 2.01a
Using Qt version 4.5.0 in /usr/lib
root@ubuntu:/usr/bin# ln -s /usr/bin/qmake /etc/alternatives/qmake
root@ubuntu:/usr/bin# qmake -v
QMake version 2.01a
Using Qt version 4.5.0 in /usr/lib
附件: dbus.rar
全站熱搜
留言列表