Search Results

0
votes

Using Win32 API in Qt OSE project

You could use win32 scopes in your .pro file; win32:HEADERS+=mywinheader.h or with .pri (pro include) files to compartmentalize it even more; win32 …
2
votes

Using KDE4 localization mechanisms in pure QT4 application

Starting version 4.5, Qt will support both .po and .xliff; http://doc.trolltech.com/4.5/qt4-5 …
4
votes

Qt & double buffering - are there any neat tricks to capture pixels or manipulate the back buffer?

Drawing on top of the graph area you should be able to use composition modes to invert. Draw white using the Difference composition mode. The following example is a subclass of a QLabel showing a p …
1
vote

How to compile Qt 4.5.1 on Windows XP for WinCE?

Have you set up the environment variables correctly? I.e. it's often nice to have a .bat with the respective INCLUDE and LIB definitions. If you've installed Qt, there's a Qt command shell install …
0
votes

New Qt Directory is not valid

Some tips; Install into a path that doesn't contain spaces Use -prefix $PWD from the current path, and set the PATH, INCLUDE and LIB env variables appropriately - this makes …
0
votes

How to hide handles in QSplitter widget?

The inability to set a zero-width handle seems odd and might be considered a bug - but then again why would you want to? You won't be able to grab a zero-width handle so it seems to be that you rea …