Skip to content

Qt Creator and other tools

Have a question about Qt Creator, our cross-platform IDE, or any of the other tools? Ask here!
7.6k Topics 35.3k Posts
  • Qt Project date error in articles

    6
    0 Votes
    6 Posts
    2k Views
    sierdzioS
    This has not been fixed by Tero :)
  • Set up Qt creator for Tizen on Ubuntu

    15
    0 Votes
    15 Posts
    5k Views
    T
    It is described here, http://qt-project.org/wiki/Creating-Hello-World-Application
  • 0 Votes
    7 Posts
    4k Views
    E
    This looks like it has been fixed in 3.1: https://bugreports.qt-project.org/browse/QTCREATORBUG-11305
  • Browsing

    5
    0 Votes
    5 Posts
    1k Views
    M
    thanks... I correct my errors. My application is Log Analysis,developing a log analyzer tool for analysing the different types of log file .In fist step how to extract the fields from the log file?If any algorithm or any parsing methods?
  • Analogue of Mylyn

    2
    0 Votes
    2 Posts
    794 Views
    sierdzioS
    I don't think there is anything like it available in Qt Creator.
  • QT Installer Framework Offline Update - how?

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Qt Creator segfaults when screensaver comes up

    5
    0 Votes
    5 Posts
    2k Views
    A
    Qt Creator 3.0.0 Based on Qt 5.2.0 (GCC 4.6.1, 64 bit) Built on Dec 10 2013 at 11:45:55 From revision 27d10d8dcd works fine on Mageia 3. Thanks.
  • Qt Creator for windows 64 bit

    13
    0 Votes
    13 Posts
    37k Views
    P
    Hi, George, me again. You have forgotten the cdb extensions for 64 and 32 Bit. These folder must exist in $creator/lib/qtcreatorcdbext32 and $creator/lib/qtcreatorcdbext64. Both folders must contain qtcreatorcdbext.dll and .lib, compiled with the correct compiler (win32 or X64).. I would it upload here, but I cannot find any upload button.... Regards, Peter
  • GUI application

    2
    0 Votes
    2 Posts
    1k Views
    p3c0P
    Hi, Qt Gui is now "Qt Widgets ":http://qt-project.org/doc/qt-5.0/qtdoc/qt5-intro.html#widgets-in-qt-5 since Qt 5.0. You probably must have seen older ( < Qt 5.0 version) tutorial. Go ahead by selecting the Qt Widgets Application.
  • Wrong QT_VERSION define dedected within Qt Creator

    12
    0 Votes
    12 Posts
    12k Views
    C
    I know now why Qt Creator is adding this statement, there is a checkbox under Settings->Designer->Class Generation In the groupbox Code Generation the checkbox ( Add Qt Version #ifdef for module names) was checked. But it still adds the wrong include of QMainWindow! Should be: @#include <QtWidgets/QMainWindow>@ when using Qt version > 5 Instead of: @#include <QtGui/QMainWindow>@
  • 0 Votes
    5 Posts
    4k Views
    JKSHJ
    Hi, I'm surprised that it compiles in the first place. <QtGui/QApplication> exists in Qt 4, but has been changed to <QtWidgets/QApplication> in Qt 5. The previous header no longer works. The recommended approach is to do this, which will work on both Qt 4 and Qt 5: @ #include <QApplication> @
  • Qt Creator 3.0.0 (Qt 5.2.0) &nbsp; parsing issue

    3
    0 Votes
    3 Posts
    2k Views
    D
    confirmed on linux (official arch package) and windows (built from source)
  • Force Qt Creator to use a syntax highlighting for a file

    9
    0 Votes
    9 Posts
    18k Views
    SGaistS
    Hi, It's because of time: the original post is 3 years old and you're question is related but not the same so it deserves its own thread :)
  • How to I add files to the output directory? (qmake)

    2
    0 Votes
    2 Posts
    2k Views
    M
    Hi, you can try defining custom targets "here":http://qt-project.org/doc/qt-5/qmake-advanced-usage.html#adding-custom-targets or installing files "here":http://qt-project.org/doc/qt-5/qmake-advanced-usage.html#installing-files
  • Dumpcpp and .NET dll

    2
    0 Votes
    2 Posts
    1k Views
    _
    No way! It leads to 1908 errors.... any idea?
  • Using Qt Designer but changes don't show up when I run.

    9
    0 Votes
    9 Posts
    5k Views
    F
    Hi, i just tried setting UI_DIR to another directory and appending that directory to PATH, if i understood you correctly. Still the same behavior shows up and i have to do what i posted above. cheers
  • QtCreator suddenly freezes

    8
    0 Votes
    8 Posts
    5k Views
    K
    The Qt-creator editor freezes frequently (and unfreezes in about 5-6 seconds) when typing, using "Follow symbol under cursor", "Find Usages" and scrolling. I am on Fedora Linux 18. I tried both Qt-creator 2.8.0 and 3.0.0. Two CPUs usage goes to 100% when Qt-creator freezes. Is anyone else having this problem?
  • [Solved] "qmake does not specify a valid Qt installation"

    Locked
    7
    0 Votes
    7 Posts
    13k Views
    T
    a) Please do not post in reply to articles that are old. b) Please use a up to date Qt Creator. This one is severly outdated. I'll close this topic now.
  • Qt debugger and pointers to arrays

    11
    0 Votes
    11 Posts
    12k Views
    S
    [quote author="Duck" date="1305323195"]In Locals and Watchers, context menu of your pointer's entry, select "Watch Expression". This creates a new watched expression below. There, double click on the entry in the "Names" column, and add "@10" to display 10 entries. [/quote] As Duck say, you must specify the size of array when you inspect it as MyArr@Size for one dimensional array, MyArr@Size2@Size1 for two dimensional array and so on. In there the Size parameter can be a value and the variable from the current scope. Then you can easily collaps and expand your array elements in your whatch list. You can also spesify the Size parameter as SizeN x...x Size2 x Size1, where Size1, Size2,...SizeN are sizes of dimensions of your array. In this case you will see all elements of your array in one column.
  • QtCreator extremely slow with many includepaths

    2
    0 Votes
    2 Posts
    1k Views
    A
    It seems that i have the similar behavior... I wanted to create a bugreport but there is already one about similar things: https://bugreports.qt-project.org/browse/QTCREATORBUG-11037 You can vote for it.