Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Install the GTK+ development environment

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

Windows:

Download https://www.gtk.org/download/index.php and install all-in-one bundle.

Why download 2.x is for codeblocks? codeblocks does not support the creation of 3.x development environment directly, but supports the creation of gtk+ project directly from 2.x.

Or if you don't have access to the above official website, you can download it at chinaunix.

Http://download.chinaunix.net/download/0004000/3823.shtml

Linux gtk is a graphical interface development interface under the linux platform, it is different from qt, it is completely free, Qt is based on C++ commercial development kit, involving copyright and other issues, gtk is based on c is completely free, hehe.

Let's start with the installation of gtk.

Sudo apt-get install build-essential # this will install basic programming tools such as gcc/g++/gdb/make

Sudo apt-get install gnome-core-devel # this will install the development-related library files such as libgtk2.0-dev libglib2.0-dev

Sudo apt-get install pkg-config # is used to automatically find the location of header files and library files when compiling GTK programs

Sudo apt-get install devhelp # this will install the devhelp GTK document viewer

Sudo apt-get install libglib2.0-doc libgtk2.0-doc # this will install gtk/glib 's API reference manual and other help documentation

Sudo apt-get instal glade libglade2-dev # this will install the GTK-based interface constructor

Installed in this way can be used directly.

This is under the condition that you can connect to the Internet, if you cannot connect to the Internet, you need to download glib-2.16.6.tar.bz2 separately.

Atk-1.10.3.tar.gz

Cairo-1.6.0.tar.gz

Pango-1.20.tar.bz2

Gtk+-2.12.10.tar.bz2

I use my own version here. Please choose which one you want. There is a corresponding software package on www.gtk.org.

Installation:

1. Decompress tar xzvf * .tar.gz for gz format and tar xjvf * .tar.bz2 for bz2 format. For us, tar xjvf glib-2.16.6.tar.bz2.

2, configure, enter the glib-2.16.6 folder, enter. / configure-- prefix=/usr

3. Build the installation file, and enter make at the terminal.

4,make install

Complete, enter pkg-config-- modversion glib-2.0 to view the version number

Continue to install ATK,Cairo, as well as gtk, in the right order.

GTK test

/ / test.c write the simplest example

# include

Int main (int argc,char * argv [])

{

GtkWidget * window

Gtk_init & argc,&argv)

Window = gtk_window_new (GTK_WINDOW_TOPLEVEL)

G_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL)

Gtk_window_set_title (GTK_WINDOW (window), "Hello World!")

Gtk_widget_show (window)

Gtk_main ()

Return 0

}

Save exit

Gcc-o test test.c `pkg-config-- cflags-- libs gtk+- 2.0`

After the compilation is correct, it can be executed. Note that the one above is not the one on the top, but the one on the key. Please pay attention.

Gtk can implement a variety of controls, for more information, please see the books I mentioned in the previous article, but I won't say much here.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report