在Linux下GTK+3的安裝筆記
下面介紹下Ubuntu 環境下具體的安裝過程:1、配置安裝gcc/g++/gdb/make 等基本程式設計工具(必須裝好)
剛裝好的Ubuntu系統中已經有GCC了,但是這個GCC幾乎什麼檔案都不能編譯,因為缺少一些必須的標頭檔案,所以要安裝build-essential這個軟體包。 可以在新立得裡面搜尋build-essential或輸入下面命令:
- apt-get install build-essential 或者 sudo apt-get install build-essential
安裝完成之後,可以寫一個簡單的C程式來驗證一下是否已經裝好了GCC環境。
2、安裝GTK/GNOME開發環境
安裝 libgtk3.0-dev libglib3.0-dev 等開發相關的庫檔案
- sudo apt-get install gnome-devel gnome-devel-docs
需要下載一系列的安裝包,時間比較長,網速不行的童鞋可以粗去玩會:D
3、用於在編譯GTK程式時自動找出標頭檔案及庫檔案位置
- $sudo apt-get install pkg-config
4、安裝 devhelp GTK文件檢視程式
- $sudo apt-get install devhelp
5、安裝 gtk/glib 的API參考手冊及其它幫助文件
- $sudo apt-get install libglib2.0-doc libgtk2.0-doc
6、安裝基於GTK的介面GTK是開發Gnome視窗的c/c++語言圖形庫
- $sudo apt-get install glade libglade2-dev 或者
- $sudo apt-get install glade-gnome glade-common glade-doc
7、安裝gtk3.0 或者 將gtk+3.0所需的所有檔案統通下載安裝完畢
- $sudo apt-get install libgtk3-dev 或者 $sudo apt-get install libgtk3*
8、安裝完成後檢視GTK庫版本
1)檢視1.2.x版本
- $pkg-config --modversion gtk+
2)檢視 2.x 版本
- $pkg-config --modversion gtk+-3.0
3)檢視pkg-config的版本
- $pkg-config -version
4)檢視是否安裝了gtk
- $pkg-config --list-all | grep gtk
9、見證奇蹟的時刻到了
- <font color="Black"> //Helloworld.c
- #include <gtk/gtk.h>
- int main(int argc,char *argv[])
- {
- GtkWidget *window;
- GtkWidget *label;
- gtk_init(&argc,&argv);
- /* create the main, top level, window */
- window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
- /* give it the title */
- gtk_window_set_title(GTK_WINDOW(window),"Hello World");
- /* connect the destroy signal of the window to gtk_main_quit
- * when the window is about to be destroyed we get a notification and
- * stop the main GTK+ loop
- */
- g_signal_connect(window,"destroy",G_CALLBACK(gtk_main_quit),NULL);
- /* create the "Hello, World" label */
- label = gtk_label_new("C語言也能幹大事!");
- /* and insert it into the main window */
- gtk_container_add(GTK_CONTAINER(window),label);
- /* make sure that everything, window and label, are visible */
- gtk_widget_show_all(window);
- /* start the main loop, and let it rest until the application is closed */
- gtk_main();
- return 0;
- }</font>
編譯
$gcc-o Helloworld Helloworld.c `pkg-config--cflags--libs gtk+-3.0`
執行$./Helloworld
使用其他linux發行版本的童鞋請看這個教程吧 !這種配置方法需要下載多個原始碼包,並自行編譯,稍微麻煩些:http://blog.csdn.net/kasagawa/article/details/6824871 官方全英文教程:https://developer.gnome.org/gtk3/stable/gtk-building.html