Difference between revisions of "Gtk+3"

From Free Pascal wiki
Jump to navigationJump to search
(→‎Info: updated gtk3 version)
Line 2: Line 2:
 
Gtk+3.0 bindings are being developed in the Lazarus-ccr
 
Gtk+3.0 bindings are being developed in the Lazarus-ccr
  
They are based on the headers from gtk+3.4.4 which can be downloaded here:
+
They are based on the headers from gtk+3.8.6 which can be downloaded here:
  
http://ftp.acc.umu.se/pub/gnome/sources/gtk+/3.4/gtk+-3.4.4.tar.xz
+
http://ftp.gnome.org/pub/gnome/sources/gtk+/3.8/gtk+-3.8.6.tar.xz
  
 
=SVN=
 
=SVN=

Revision as of 18:56, 6 January 2014

Info

Gtk+3.0 bindings are being developed in the Lazarus-ccr

They are based on the headers from gtk+3.8.6 which can be downloaded here:

http://ftp.gnome.org/pub/gnome/sources/gtk+/3.8/gtk+-3.8.6.tar.xz

SVN

The current result can be found in the Lazarus-CCR in this svn address:

 svn co https://lazarus-ccr.svn.sourceforge.net/svnroot/lazarus-ccr/bindings/gtk3/ gtk3

Or you can browse the files here

These files were generated with gir2pascal which should be updated to generate correct bindings if errors are found.

FAQ

My simple program crashes immediately

You probably need to include the Math unit and put

 SetExceptionMask([exDenormalized,exInvalidOp,exOverflow,exPrecision,exUnderflow,exZeroDivide]);

before gtk_init.

Where is class X

Some classes have been deprecated in Gtk3 and the generator skips deprecated classes and functions.

Some functions are missing like g_signal_connect

Many functions are actually c macros and are unavaliable in the introspection files. In the case of g_signal_connect it is a macro around g_signal_connect_data.

Where are GtkHbox and GtkVBox

In Gtk 3 GtkHBox and GtkVBox are combined in GtkBox. In gtk_box_new you specifiy an orientation.