Difference between revisions of "Qt Interface"

From Lazarus wiki
Jump to navigationJump to search
Line 11: Line 11:
 
== Quick start guide for Linux ==
 
== Quick start guide for Linux ==
  
 +
'''As of lazarus 0.9.29 svn rev. 23858 2.1 bindings are needed, also bindings name is changed from libqt4intf to libQt4Pas ! ''' <br>
 
The first thing to do is go to the [http://users.pandora.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html official website] of the bindings and download the binary Qt bindings.
 
The first thing to do is go to the [http://users.pandora.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html official website] of the bindings and download the binary Qt bindings.
 
Copy the file libqt4intf.so to the directory /usr/lib/ or /usr/local/lib
 
Copy the file libqt4intf.so to the directory /usr/lib/ or /usr/local/lib

Revision as of 12:02, 7 March 2010

English (en) español (es) 日本語 (ja)

Introduction

The Qt 4 widgetset is under of development.

This interface is based on Qt 4 and it's corresponding documentation here.

Other Interfaces

Platform specific Tips

Interface Development Articles

Quick start guide for Linux

As of lazarus 0.9.29 svn rev. 23858 2.1 bindings are needed, also bindings name is changed from libqt4intf to libQt4Pas !
The first thing to do is go to the official website of the bindings and download the binary Qt bindings. Copy the file libqt4intf.so to the directory /usr/lib/ or /usr/local/lib Now run "ldconfig" to update the linker cache. You can verify its success by running:

ldconfig -p | grep libqt4intf

It must say something like:

       libqt4intf.so (libc6) => /usr/local/lib/libqt4intf.so

If it didn't work, you have to check the config files in /etc/ld.so.conf.d/ or the config file /etc/ld.so.conf, depending on your distro - it must include the path where you copied the libqt4intf.so file.

Hint: If you use a Debian based distribution, you can add the following repositories to your sources.list 
 deb http://ppa.launchpad.net/ximion/ppa/ubuntu karmic main 
 deb-src http://ppa.launchpad.net/ximion/ppa/ubuntu karmic main
 (For the keys use: gpg --recv-keys 4BF17E057EC6E8C3 --keyserver hkp://wwwkeys.eu.pgp.net ) 
The repositories contain the libqt4intf.

Now compile the LCL for Qt. First open your normal gtk compiled Lazarus. Then go on the menu "Tools" --> "Configure Build Lazarus". Set LCL to "clean+build" and everything else to "None". Now select "Qt" and click on the "Ok" button. Next go to the menu "Tools" --> "Build Lazarus". Now the LCL is compiled for Qt.

To compile a project for Qt just select it as the target widgetset on the Compiler Options dialog.


Installing Qt 4

Most distributions now have packages for Qt 4. If your distribution is RPM-based you can search for a qt4 package here: http://rpm.pbone.net/index.php3/stat/2/simple/2
The supported Qt version is 4.5.0 or superior

Known problems on linux

  • glibc < 2.4 (older distros eg. FC3) users must compile qt-x11 with -no-sse or you have immediate segfaults.
  • Qt-4.4.1 if x11 < 7.0 & glibc < 2.4 (older distros) QPalette doesn't return good results for some palettes eg. QToolTip_palette().

Quick start guide for Mac OS X

Instructions on the Qt Interface Mac wiki page.

Quick start guide for PDAs and Smartphones

please write me

Quick start guide for Windows

There's nothing special to say for windows, it works just like on Linux, and seem less buggy than win32 interface with some controls (TListView). Just rebuild Lazarus as it is mentioned for Linux , change to qt in compiler options and that's it.

Installing Qt 4

Download qt4 opensource edition from official website (http://www.qtsoftware.com/downloads/), and you can download libqt4intf.dll from FPC Qt4 Binding.

Qt 4 Bindings

This interface utilizes Qt 4 bindings created by Den Jean. The bindings are a c++ library which exports the methods of the Qt objects as procedures. The library (around 800kb in Linux) consists of a single .so file that needs to be distributed with your LCL program.

You can find more information about those bindings on the official website and on FreePascal Qt4 binding.

Is is being reported that it may be possible to link to Qt 4 directly, using some tricks. Many think it is not. This is yet to be tested. It is expected that any such binding will be compatible with the currently utilized one, so the interface code won´t have to be changed.

Compiling the bindings

It is not necessary to compile the bindings yourself if you plan to release a GPL software. GPL Binaries are available on Den Jean website. If you want to release non-GPL code, then you must compile the bindings yourself using the Commercial Edition of Qt.

Step 1 - To start with download all the files needed to compile the bindings.

  • Download the source code of the bindings. Go to the offical website of the bindings. Link above.
  • Also Download Qt 4.5.2(3) source code for the desired platform. This is the download page: [1]

Step 2 - Unpack all the files you downloaded. Enter the directory where you downloaded Qt 4.5.2(3) source code and use this command:

./configure
make

Step 3 - Go to the directory where you downloaded and extracted qt4pas sources and edit the file compile_lib.bash. Change the path for the Qt 4.5.2(3) source code.

Step 4 - Run the script called compile_lib.bash. Now you should have a file called libqt4intf.so.5.XXXX where XXXX is version of qt bindings, and it's symbolic links libqt4intf.so.5 and libqt4intf.so

Road map for the Qt 4 interface

Moved here: Roadmap#Widgetset_dependent_components

Conditional defines accepted by the Qt Interface

Moved here: LCL_Defines#Qt_defines

Screenshots

Much qt progress.png

More screenshoots
Qt Lazarus IDE running under linux (kernel 2.6.12, XOrg-6.8.2, KDE-3.4.0)
Qt Lazarus IDE running under Mac OS X 10.4.10

Contributing

How to add a new control

For example TButton.

TButton is defined in lcl/buttons.pp. This is the platform independent part of the LCL, which is used by the normal LCL programmer.

Its widgetset class is in lcl/widgetset/wsbuttons.pp. This is the platform independent base for all widgetsets (qt, carbon, gtk, win32, ...).

Its qt interface class is in lcl/interfaces/qt/qtwsbuttons.pp:

 TQtWSButton = class(TWSButton)
 private
 protected
 public
   class function  CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle; override;
 end;

Every WS class, that actually implements something must be registered. See the initialization section at the end of the qtwsXXX.pp unit:

 RegisterWSComponent(TQtButton, TQtWSButton);

TQtWSButton overrides CreateHandle to create a qt QPushButton. The code is short and should be easily adaptable for other controls like TCheckBox. Remember that all controls on the Qt widgetset have a helper class on qtprivate.pp, and it is also necessary to add a class for the new control. This isn´t difficult.

Also notice that DestroyHandle should be implemented to clean up memory utilized by the control.

Mailling List

There is a Lazarus - Qt mailling list for support and talk about the development of this interface here: http://lists.lazarus.freepascal.org/mailman/listinfo/qt