Search Results

0
votes

In a QTableWidget, changing the text color of the selected row

You could use e.g. a proxy model for this where you return a different color if you have an error for the specif …
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 …
1
vote

Ruby’s subclassing and Qt’s signals/slots don’t work together as expected

To be able to utilize signals and slots - or more importantly the meta object system in Qt, the class has to inherit from QObject - and it has to inherit QObject first in multiple inheritance. See …
3
votes

Animations with full alpha in QT?

Qt supports SVG 1.2 Tiny as well as GIF and MNG. On a side-note, an animation API is being worked on which might be interesting for you; …
0
votes

How to set an initial size of a QScrollArea?

Is the scroll area the top level widget? If so, simply call area->resize(300,300); If it's inside a hierarchy you need to resize the toplevel appropriately (co …
2
votes

How do I develop a plug-in for QtWebKit?

The simple answer is to write a subclass of QWebPage and set this on your webview. Then you can show your own HTML page and react to the appropriate object tag in the …
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 …
2
votes

Java Swing or Java Qt?

To correct Adeel's comments; You can ship your software commercially - you just have to include the source. There are thousands of developers with Qt experience (KDE). Qt is standard (used by KDE, …
1
vote

Numbers of ways of Rendering in Qt

Qt is double buffered. So, you would use update() to request a screen redraw. Another perspective would be to enumerate the backends in Qt - and this varies on different platforms. E.g. for Windows …
1
vote

Porting Windows library using Qt to MacOSX, event loops

This should happen automatically with Qt Mac 4.5 (both Carbon and Cocoa ports) - since Qt's registered as a CFRunLoopSource in CFRunLoop and the callback will invoke sendPostedEvents. See also qeve …
2
votes

Java Swing or Java Qt?

And now Qt will become LGPL as of Qt 4.5, Qt Jambi too ;-) http://www.qtsoftware.com/about/news …
0
votes

How do I get a selection model to work with a proxy model?

Not quite sure how your model subclass is implemented - but the selection depends on persistent model indexes being correct. Can you provide some source code? Are you using the same selection model …
0
votes

How do I create a custom slot in qt4 designer?

you can use the magic slot format of void on_objectName_signal() { // slot code here, where objectname is the Qt Designer object name // and the signal is the emission } …
13
votes

Qt goes LGPL! On Windows, is it good enough to use instead of MFC?

Google Earth is written in Qt, and KDE, Adobe Album, Skype on Linux, the Roku Netflix player, Opera and a number of other commercial uses. The German Air Traffic Control (DFS) has a Qt-based system …
1
vote

Minimal Qt executable-size

This depends largely on your configuration and deployment method. You can of course compile as static which will exclude code which isn't used. You can also strip out things like exceptions and STL …

1 2 3 next
15 30 50 per page