User Henrik Hartz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:23:56Z http://stackoverflow.com/feeds/user/50830 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1767816/qt-creator-qt-embedded-widget-demo-problem/1813000#1813000 0 Answer by Henrik Hartz for QT creator/qt embedded widget demo problem Henrik Hartz 2009-11-28T16:47:41Z 2009-11-28T16:47:41Z <p>QtGui is a meta-include file that includes all header files of the QtGui module, you should find it in the include/ folder of your Qt installation. If this isn't created, something went amiss in your install. Alternatively, you might want to check that you are using the correct qmake; qmake --version should tell you which qmake is being used.</p> http://stackoverflow.com/questions/1784338/settabchangesfocusbool-has-no-effect-qt/1812871#1812871 1 Answer by Henrik Hartz for setTabChangesFocus(bool) has no effect Qt Henrik Hartz 2009-11-28T16:03:59Z 2009-11-28T16:03:59Z <p>The correct solution to this is to use a focus proxy widget. See:</p> <p><a href="http://doc.qt.nokia.com/4.5/qwidget.html#setFocusProxy" rel="nofollow">http://doc.qt.nokia.com/4.5/qwidget.html#setFocusProxy</a></p> http://stackoverflow.com/questions/1800754/can-you-implement-lazy-array-access-in-qtscript/1812867#1812867 0 Answer by Henrik Hartz for Can you implement lazy array access in QtScript? Henrik Hartz 2009-11-28T16:01:43Z 2009-11-28T16:01:43Z <p>Have you tried to implement operator[] in the QObject that you expose to QtScript? Easier to answer if you also include some code.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/408842#408842 7 Answer by Henrik Hartz for C++ IDE for Linux? Henrik Hartz 2009-01-03T10:10:41Z 2009-11-22T23:58:21Z <p>At least for Qt specific projects, the <a href="http://trolltech.com/developer/qt-creator" rel="nofollow">Qt Creator</a> (from Nokia/Trolltech) shows great promise.</p> http://stackoverflow.com/questions/1355446/get-visible-rectangle-of-qgraphicsview/1385258#1385258 1 Answer by Henrik Hartz for Get visible rectangle of QGraphicsView? Henrik Hartz 2009-09-06T09:02:09Z 2009-09-06T09:02:09Z <p>It sounds like what you want is the scene rectangle. The ::rect() method is inherited from QWidget. See:</p> <p><a href="http://doc.qt.nokia.com/4.6-snapshot/qgraphicsview.html#sceneRect-prop" rel="nofollow">http://doc.qt.nokia.com/4.6-snapshot/qgraphicsview.html#sceneRect-prop</a></p> http://stackoverflow.com/questions/1377679/problem-with-event-handling-on-qtoolbutton-in-linux/1385245#1385245 0 Answer by Henrik Hartz for Problem with event handling on QToolButton in Linux Henrik Hartz 2009-09-06T08:53:42Z 2009-09-06T08:53:42Z <p>As jordenysp indirectly explains, the API is QAction centric</p> http://stackoverflow.com/questions/1378263/adding-external-library-into-qt-creator-project/1385241#1385241 1 Answer by Henrik Hartz for Adding external library into Qt Creator project Henrik Hartz 2009-09-06T08:50:50Z 2009-09-06T08:50:50Z <p>Remember to export the symbol in your library, then using it's header and lib file should work just fine;</p> <p><a href="http://doc.qt.nokia.com/4.6-snapshot/sharedlibrary.html" rel="nofollow">http://doc.qt.nokia.com/4.6-snapshot/sharedlibrary.html</a></p> http://stackoverflow.com/questions/1381093/which-window-toolkit-to-use-for-embedded-linux/1385237#1385237 2 Answer by Henrik Hartz for Which window-toolkit to use for embedded linux? Henrik Hartz 2009-09-06T08:49:15Z 2009-09-06T08:49:15Z <p>IIRC Qt should work well with these specs. It has a configuration cabapility where you define out parts of the framework you might not want (e.g. copy/paste), and should fit in just under 3Mb on an uncompressed filesystem with the most basic of feature set. It's canvas API has a BSP index traversal algorithm, but the latest approach (recursive) is much faster. With 32Mb RAM you might find it a bit limiting but again this depends on what you are intending to do. Qt has it's own windowing system that alleviates the need to run an operating system + windowing system; QWS. For more info, check out </p> <p><a href="http://doc.qt.nokia.com/4.6-snapshot/qt-embedded-linux.html" rel="nofollow">http://doc.qt.nokia.com/4.6-snapshot/qt-embedded-linux.html</a></p> http://stackoverflow.com/questions/1385202/how-to-hide-handles-in-qsplitter-widget/1385228#1385228 0 Answer by Henrik Hartz for How to hide handles in QSplitter widget? Henrik Hartz 2009-09-06T08:44:46Z 2009-09-06T08:44:46Z <p>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 really want to use a vertical/horizontal layout.</p> http://stackoverflow.com/questions/1003449/qt-must-read/1005856#1005856 7 Answer by Henrik Hartz for Qt must-read Henrik Hartz 2009-06-17T08:44:12Z 2009-06-17T08:44:12Z <p>A hidden gem in the Qt docs is also the <a href="http://doc.trolltech.com/4.5/overviews.html" rel="nofollow">All Overviews and HOWTOs</a></p> http://stackoverflow.com/questions/1002667/experience-building-and-using-qt-embedded/1005849#1005849 0 Answer by Henrik Hartz for Experience building and using Qt Embedded Henrik Hartz 2009-06-17T08:42:42Z 2009-06-17T08:42:42Z <p>Suggest you follow the installation instructions at</p> <p><a href="http://doc.trolltech.com/4.5/qt-embedded-install.html" rel="nofollow">http://doc.trolltech.com/4.5/qt-embedded-install.html</a></p> http://stackoverflow.com/questions/967224/new-qt-directory-is-not-valid/985509#985509 0 Answer by Henrik Hartz for New Qt Directory is not valid Henrik Hartz 2009-06-12T07:50:33Z 2009-06-12T07:50:33Z <p>Some tips; </p> <ul> <li>Install into a path that doesn't contain spaces</li> <li>Use -prefix $PWD from the current path, and set the PATH, INCLUDE and LIB env variables appropriately - this makes it possible to have multiple Qt builds, e.g. multiple shadow builds from one source directory</li> <li>Don't do static configure - it makes using plugins difficult, and assuming you use LGPL you have to ship the .o files.</li> </ul> http://stackoverflow.com/questions/955005/thread-id-in-qt/955047#955047 0 Answer by Henrik Hartz for Thread id in QT Henrik Hartz 2009-06-05T09:38:17Z 2009-06-05T09:38:17Z <p>On windows, applications normally "detatch" from the command line when you execute them. If you add</p> <pre><code>win32:CONFIG+=console </code></pre> <p>your applications will block the command prompt, and print the qDebug statements.</p> http://stackoverflow.com/questions/943554/how-to-get-javascript-in-a-qwebview-to-create-new-instances-of-c-based-classes/951080#951080 1 Answer by Henrik Hartz for How to get Javascript in a QWebView to create new instances of C++ based classes? Henrik Hartz 2009-06-04T14:51:04Z 2009-06-04T14:51:04Z <p>QtScript has the notion of prototypes - which allows you to create a C++ prototype for a script value. We are investigating wether we can bridge QtScript with JavaScriptCore - which <em>should</em> result in the possibility of using prototypes from WebKit's JavaScript environment as well; <a href="http://doc.trolltech.com/4.5/qtscript.html#making-use-of-prototype-based-inheritance" rel="nofollow">http://doc.trolltech.com/4.5/qtscript.html#making-use-of-prototype-based-inheritance</a></p> http://stackoverflow.com/questions/938780/how-to-i-authenticate-with-a-isa-proxy-from-my-application-seemlessly/943715#943715 0 Answer by Henrik Hartz for How to I authenticate with a ISA proxy from my application seemlessly? Henrik Hartz 2009-06-03T08:48:35Z 2009-06-03T08:48:35Z <p>What type of proxy are you running? See </p> <pre><code>http://doc.trolltech.com/4.5/qnetworkproxy.html </code></pre> <p>to find what proxies Qt support.</p> http://stackoverflow.com/questions/816291/can-phonon-be-used-for-capture-or-transcoding/921212#921212 2 Answer by Henrik Hartz for Can Phonon be used for capture or transcoding? Henrik Hartz 2009-05-28T14:43:27Z 2009-05-28T14:43:27Z <p>There is no API's in Phonon for capture or transcoding yet. Effects and capture is on KDE's Phonon roadmap which can be viewed here;</p> <p><a href="http://phonon.kde.org/cms/1007" rel="nofollow">http://phonon.kde.org/cms/1007</a></p> http://stackoverflow.com/questions/915352/why-does-qt-add-more-than-three-columns-when-i-use-restorestate-on-a-qtablewidg/921195#921195 1 Answer by Henrik Hartz for Why does Qt add more than three columns when I use restoreState() on a QTableWidget? Henrik Hartz 2009-05-28T14:39:47Z 2009-05-28T14:39:47Z <p>Which platform and what Qt version is this? <a href="http://chaos.troll.no/~hhartz/tablecolumns.tar" rel="nofollow">http://chaos.troll.no/~hhartz/tablecolumns.tar</a> seems to work fine using latest Qt 4.5</p> http://stackoverflow.com/questions/918280/how-to-compile-qt-4-5-1-on-windows-xp-for-wince/921128#921128 1 Answer by Henrik Hartz for How to compile Qt 4.5.1 on Windows XP for WinCE? Henrik Hartz 2009-05-28T14:27:04Z 2009-05-28T14:27:04Z <p>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 installed that can serve as a nice template, giving you command prompt that has the correct environment variables depending on which Qt version you want to use.</p> http://stackoverflow.com/questions/919095/problem-in-displaying-sequence-of-dicom-images-using-qt/921084#921084 1 Answer by Henrik Hartz for Problem in displaying sequence of DICOM images using QT Henrik Hartz 2009-05-28T14:19:25Z 2009-05-28T14:19:25Z <p>You should be able to easily display images by simply using QGLWidget as your painting device which - depending on your specific usecase - might simplify your implementation. This will draw the image using the OpenGL paint engine in Qt. Something like the following should allow you to display an image;</p> <pre><code>class CustomWidget : public QGLWidget { public: CustomWidget(QWidget* parent=0) : QGLWidget(parent), pix("foo.jpg") { } protected: void paintEvent(QPaintEvent *pe) { QPainter p(this); // maybe update the pixmap p.drawPixmap(this-&gt;rect(),pix); } private: QPixmap pix; }; </code></pre> <p>If you need to put it in a 3D scene, you probably need to load the image as a texture. Some of the Qt OpenGL demos should be able to give you a starting point, e.g. the 'Boxes' demo;</p> <p><a href="http://doc.trolltech.com/4.6-snapshot/demos-boxes.html" rel="nofollow">http://doc.trolltech.com/4.6-snapshot/demos-boxes.html</a></p> http://stackoverflow.com/questions/875934/embed-external-application-under-windows/920137#920137 1 Answer by Henrik Hartz for Embed external application under Windows Henrik Hartz 2009-05-28T10:10:53Z 2009-05-28T10:10:53Z <p>You can use ActiveQt for this - which allows both embedding Qt components inside ActiveX clients as well as hosting ActiveX components inside Qt applications. See also</p> <p><a href="http://doc.trolltech.com/4.5/activeqt.html" rel="nofollow">http://doc.trolltech.com/4.5/activeqt.html</a></p> http://stackoverflow.com/questions/918668/how-can-i-redefine-a-built-in-keyboard-shortcuts-behavior/920128#920128 3 Answer by Henrik Hartz for How can I redefine a built in keyboard shortcut's behavior? Henrik Hartz 2009-05-28T10:08:09Z 2009-05-28T10:08:09Z <p>Copy is not virtual so this might be problematic. Copying is handled via the private text control API, and is not easily accessible. The best approach is probably to install an event handler for the text edit and intercept the copy key event before it's delivered to the text control processEvent handler - which should allow your own action to correctly trigger.</p> http://stackoverflow.com/questions/913642/qmake-and-qtinstallprefix-how-can-i-select-a-new-location-for-qt-library/914225#914225 4 Answer by Henrik Hartz for qmake and QT_INSTALL_PREFIX. How can I select a new location for Qt library? Henrik Hartz 2009-05-27T06:16:57Z 2009-05-27T06:16:57Z <p>This is a 'builtin' compiled into qmake from qconfig.cpp. The best way is to reconfigure Qt with another -prefix and rebuild unfortunately. For most other variables, you can use a .qmake.cache file. See</p> <p><a href="http://doc.trolltech.com/4.5/qmake-environment-reference.html" rel="nofollow">http://doc.trolltech.com/4.5/qmake-environment-reference.html</a></p> <p>for more info</p> http://stackoverflow.com/questions/910230/possible-program-executing-qt3-and-qt4-code/910558#910558 2 Answer by Henrik Hartz for Possible: Program executing Qt3 and Qt4 code? Henrik Hartz 2009-05-26T13:02:07Z 2009-05-26T13:02:07Z <p>This might be possible by namespacing Qt. From <code>configure --help</code>;</p> <pre><code>-qtnamespace &lt;name&gt; Wraps all Qt library code in 'namespace &lt;name&gt; {...}'. </code></pre> <p>Theoretically this should prevent the symbol clashes which is likely making your current approach fail.</p> http://stackoverflow.com/questions/893490/qt-double-buffering-are-there-any-neat-tricks-to-capture-pixels-or-manipulate/897722#897722 4 Answer by Henrik Hartz for Qt & double buffering - are there any neat tricks to capture pixels or manipulate the back buffer? Henrik Hartz 2009-05-22T13:02:54Z 2009-05-22T13:02:54Z <p>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 pixmap:</p> <pre><code>void Widget::paintEvent(QPaintEvent *pe) { // make sure we paint background QLabel::paintEvent(pe); // paint the overlay if (!selectionRect.isNull()) { QPainter p(this); p.setCompositionMode(QPainter::CompositionMode_Difference); p.fillRect(selectionRect,QColor("#FFFFFF")); } } </code></pre> <p><img src="http://chaos.troll.no/~hhartz/yesManInverted.png" alt="alt text" /></p> http://stackoverflow.com/questions/878791/is-porting-qt-to-another-os-as-simple-as-this/897468#897468 2 Answer by Henrik Hartz for Is porting qt to another OS as simple as this? Henrik Hartz 2009-05-22T11:47:31Z 2009-05-22T11:47:31Z <p>Another important component to port would be QAtomic, to ensure that you can have atomic operations and implicit sharing working well. See also</p> <p><a href="http://labs.trolltech.com/blogs/2007/08/28/say-hello-to-qatomicint-and-qatomicpointer/" rel="nofollow">http://labs.trolltech.com/blogs/2007/08/28/say-hello-to-qatomicint-and-qatomicpointer/</a></p> http://stackoverflow.com/questions/880109/qtcreators-integrated-form-editor-wont-load-custom-widget-plugins-designer-doe/897457#897457 1 Answer by Henrik Hartz for QTCreator's integrated form editor won't load custom widget plugins (Designer does) Henrik Hartz 2009-05-22T11:43:59Z 2009-05-22T11:43:59Z <p>Have you made the linker references for the plugin correct? Try</p> <pre><code>otool -L /path/to/plugin/dylib </code></pre> <p>on the plugin binary and see if it's able to reference the Qt libs correctly assuming @executable_path is the designer binary</p> http://stackoverflow.com/questions/896968/decrease-qt-gui-application-size/897427#897427 4 Answer by Henrik Hartz for Decrease Qt GUI application size Henrik Hartz 2009-05-22T11:32:25Z 2009-05-22T11:32:25Z <p>The best way is to manually configure the Qt library with configure. By issuing</p> <pre><code>configure --help </code></pre> <p>you'll see a number of options that might help reduce both disk and memory footprint. E.g.</p> <pre><code>--no-stl --no-exceptions </code></pre> <p>can both reduce the footprint of your application. You can also modify the mkspec to use more aggressive optimization flags for your compiler.</p> http://stackoverflow.com/questions/846015/how-modern-is-c-language-used-in-qt/851474#851474 10 Answer by Henrik Hartz for How modern is C++ language used in Qt? Henrik Hartz 2009-05-12T06:51:07Z 2009-05-12T06:51:07Z <p>Qt uses modern variants of the C++ language - currently C++98, and yes Templates are also used where it's appropritate. Qt has some support for STL. See e.g. <a href="http://doc.trolltech.com/4.5/containers.html" rel="nofollow">http://doc.trolltech.com/4.5/containers.html</a> - and convenience functions for e.g. std::string. It's all in the docs: <a href="http://doc.trolltech.com/4.5/" rel="nofollow">http://doc.trolltech.com/4.5/</a> ;) The question about templates vs moc is one we get so often we have added it to our documentation; <a href="http://doc.trolltech.com/4.5/templates.html" rel="nofollow">http://doc.trolltech.com/4.5/templates.html</a></p> http://stackoverflow.com/questions/450455/minimal-qt-executable-size/480086#480086 1 Answer by Henrik Hartz for Minimal Qt executable-size Henrik Hartz 2009-01-26T15:09:50Z 2009-01-26T15:09:50Z <p>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 which will make memory and disk footprint even smaller. And finally, whether you are using a compressed file system like squashfs, cramf or jffs2. Try</p> <pre><code>configure --help </code></pre> <p>for lots of options. With the embedded ports of Qt for Embedded Linux and Windows CE you can also use qconfig to load configuration files which allow you to strip out many feature groups. See <a href="http://doc.trolltech.com/main-snapshot/fine-tuning-features.html" rel="nofollow">http://doc.trolltech.com/main-snapshot/fine-tuning-features.html</a> for more info.</p> http://stackoverflow.com/questions/443546/qt-goes-lgpl-on-windows-is-it-good-enough-to-use-instead-of-mfc/444687#444687 13 Answer by Henrik Hartz for Qt goes LGPL! On Windows, is it good enough to use instead of MFC? Henrik Hartz 2009-01-14T21:08:47Z 2009-01-25T14:55:19Z <p>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, so each time you fly through Germany your plane is being guided using a Qt application. See <a href="http://www.qtsoftware.com/qt-in-use" rel="nofollow">http://www.qtsoftware.com/qt-in-use</a> for a pretty extensive list.</p> http://stackoverflow.com/questions/1804728/how-to-receive-drag-and-drop-from-apple-address-book-in-qt-4-4-on-mac-os-x-10-5-1 Comment by Henrik Hartz on How to receive drag and drop from Apple Address book in Qt 4.4 on Mac OS X 10.5/10.6 Henrik Hartz 2009-11-28T15:39:55Z 2009-11-28T15:39:55Z Did you report this bug in <a href="http://bugreports.qt.nokia.com" rel="nofollow">bugreports.qt.nokia.com</a> ? http://stackoverflow.com/questions/1385202/how-to-hide-handles-in-qsplitter-widget/1385228#1385228 Comment by Henrik Hartz on How to hide handles in QSplitter widget? Henrik Hartz 2009-09-07T07:55:17Z 2009-09-07T07:55:17Z Try; handle-&gt;splitter(num)-&gt;setEnabled(false) http://stackoverflow.com/questions/1355446/get-visible-rectangle-of-qgraphicsview/1385258#1385258 Comment by Henrik Hartz on Get visible rectangle of QGraphicsView? Henrik Hartz 2009-09-07T07:31:03Z 2009-09-07T07:31:03Z Lifted straight from the docs; &quot;This property holds the area of the scene visualized by this view.&quot;. This is what you want right? You can also use mapTo and mapFrom to convert between coordinate systems. http://stackoverflow.com/questions/918668/how-can-i-redefine-a-built-in-keyboard-shortcuts-behavior/922404#922404 Comment by Henrik Hartz on How can I redefine a built in keyboard shortcut's behavior? Henrik Hartz 2009-05-29T07:20:51Z 2009-05-29T07:20:51Z Just what I said - except you actually need to &quot;capture&quot; it or it will be delivered to the text control and handled as a normal copy http://stackoverflow.com/questions/915352/why-does-qt-add-more-than-three-columns-when-i-use-restorestate-on-a-qtablewidg/921195#921195 Comment by Henrik Hartz on Why does Qt add more than three columns when I use restoreState() on a QTableWidget? Henrik Hartz 2009-05-28T15:58:09Z 2009-05-28T15:58:09Z In that case it appears that this problem is fixed in a later version than the one you're using. You might want to try the PyQt 4.5 snapshot to see if this is fixed. http://stackoverflow.com/questions/909928/qt-mousemoveevent-and-interfer-with-hoverenterevent-of-child-object Comment by Henrik Hartz on Qt: mouseMoveEvent and interfer with hoverEnterEvent of child object Henrik Hartz 2009-05-26T10:36:17Z 2009-05-26T10:36:17Z Can you post sources / stripped down version to prevent others from having to (possibly erroneously) recreate your environment? You might have to call QApplication::processEvents() or turn on mouse tracking for this to work. http://stackoverflow.com/questions/893490/qt-double-buffering-are-there-any-neat-tricks-to-capture-pixels-or-manipulate/897722#897722 Comment by Henrik Hartz on Qt & double buffering - are there any neat tricks to capture pixels or manipulate the back buffer? Henrik Hartz 2009-05-22T13:07:06Z 2009-05-22T13:07:06Z <a href="http://chaos.troll.no/~hhartz/yesManInverted.tar" rel="nofollow">chaos.troll.no/~hhartz/yesManInverted.tar</a> for the source.. http://stackoverflow.com/questions/846015/how-modern-is-c-language-used-in-qt/851474#851474 Comment by Henrik Hartz on How modern is C++ language used in Qt? Henrik Hartz 2009-05-22T11:35:53Z 2009-05-22T11:35:53Z @Piotr there are now three people active on SO, let's hope the popularity spreads inside Qt Software ;) http://stackoverflow.com/questions/846015/how-modern-is-c-language-used-in-qt/851474#851474 Comment by Henrik Hartz on How modern is C++ language used in Qt? Henrik Hartz 2009-05-22T11:35:28Z 2009-05-22T11:35:28Z @Piotr There are a number of various sources that you will find by googling, but it's a consistent complaint that we have chosen to document in that article :) http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/450908#450908 Comment by Henrik Hartz on What non-programming books should programmers read? Henrik Hartz 2009-02-24T15:32:06Z 2009-02-24T15:32:06Z Keith - it's not about programming patters and techiques or language semantics/syntax but rather ideas and visions IMO rp - what a wonderful display of rhetorical prowess http://stackoverflow.com/questions/443546/qt-goes-lgpl-on-windows-is-it-good-enough-to-use-instead-of-mfc/444693#444693 Comment by Henrik Hartz on Qt goes LGPL! On Windows, is it good enough to use instead of MFC? Henrik Hartz 2009-01-15T08:55:04Z 2009-01-15T08:55:04Z Sounds like you might have done something wrong if you had to ifdef all over.. Qt's designed to be cross platform, and as long as you stay with the Qt API you don't need to refactor when migrating to another platform http://stackoverflow.com/questions/443546/qt-goes-lgpl-on-windows-is-it-good-enough-to-use-instead-of-mfc/444410#444410 Comment by Henrik Hartz on Qt goes LGPL! On Windows, is it good enough to use instead of MFC? Henrik Hartz 2009-01-14T21:09:56Z 2009-01-14T21:09:56Z There's also a MFC migration framework where you can host MFC controls in QWidgets and vice versa http://stackoverflow.com/questions/304386/how-do-i-develop-a-plug-in-for-qtwebkit Comment by Henrik Hartz on How do I develop a plug-in for QtWebKit? Henrik Hartz 2009-01-14T20:39:32Z 2009-01-14T20:39:32Z Was my comment helpful at all? http://stackoverflow.com/questions/420185/how-to-get-the-version-info-of-a-dll-in-c/420217#420217 Comment by Henrik Hartz on How to get the version info of a dll in C++ Henrik Hartz 2009-01-14T16:40:27Z 2009-01-14T16:40:27Z Haha, I should change my icon.. http://stackoverflow.com/questions/420065/best-crossplatform-c-qt4-development-environment/420135#420135 Comment by Henrik Hartz on Best crossplatform C++/QT4 development environment Henrik Hartz 2009-01-07T12:46:32Z 2009-01-07T12:46:32Z Code completion works quite well IMO - even with Signals &amp; Slots