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.5k Posts
  • QtCreator 3.0.0 not showing files from included *.PRI files

    17
    0 Votes
    17 Posts
    7k Views
    A
    Bump! Same problem here! Project structure: project.pro (main pro file) tools.pri (in tools subfolder) gui.pri (in gui subfolder) project.pro ( http://paste.ubuntu.com/9279754/ ) tools.pri ( http://paste.ubuntu.com/9279756/ ) gui.pri ( http://paste.ubuntu.com/9279762/ ) All the files specified inside the .pri files are inside the respective folders. Only with the $$PWD prefix the files are shown inside QtCreator (so in the above pasted files, only the gui/about.h file is shown, screenshot: http://i.imgur.com/V6fnGwL.png ). An interesting note: The invisible files can be accessed using the Ctrl+Click technique when viewing the .pri file from inside the QtCreator, so something is fishy.
  • 0 Votes
    6 Posts
    4k Views
    G
    Up! any solutions for this ? could'nt find a way to do it yet..
  • Qt Assistant. "Open Pages" window with alternatingRowColors

    1
    0 Votes
    1 Posts
    494 Views
    No one has replied
  • 0 Votes
    10 Posts
    4k Views
    SGaistS
    Gremlins ! Sometimes they're nasty… Happy coding !
  • QTCreator doesn't stop in my breakpoints in one project but not in others

    2
    0 Votes
    2 Posts
    1k Views
    A
    Do you use second project as a shared library? Try to put break point immediately before calling a function from project2 and then create breakpoint in that function. Does it work?
  • [SOLVED] Qt Creator and CMake on Windows

    4
    0 Votes
    4 Posts
    5k Views
    A
    SOOOO I got it. I had CMAKE_PREFIX_PATH set to C:\Qt\Qt5.3.1\5.3\msvc2013_64_opengl I simply deleted that environment variable and now it works. I don't think this is intended behavior. It should be possible to set all variables in CMake and override whatever is in CMAKE_PREFIX_PATH. My problem that I don't see what exactly the makefile is doing. SO far I do not like QtCreator.
  • Qdbus tools don't compile on windows

    2
    0 Votes
    2 Posts
    832 Views
    S
    you can #undef a few declarations, but some symbols are actually already used as typedef'ed types in windows headers, e.g. CHAR, so the issue remains
  • Changing variables on *.pro file don't affect the code

    9
    0 Votes
    9 Posts
    2k Views
    SGaistS
    You could also use the find command to automate that a bit
  • Qt Creator ANSI colors

    2
    0 Votes
    2 Posts
    2k Views
    SGaistS
    Hi, You might have found a bug/misbehavior. You should consider preparing an example that shows that and open a new report.
  • Can I filter out qDebug() messages in Qt Creator's Application Output?

    3
    0 Votes
    3 Posts
    4k Views
    A
    I mistakenly assumed that you need a filter messages in your application. Then "qInstallMessageHandler":http://qt-project.org/doc/qt-5/qtglobal.html#qInstallMessageHandler would be useful. But it does not help to filter the application messages in QtCreator. In QtCreator project setting, run configuration you can select custom executable. On Linux development host you can create a script that will start your app and then filter out all unnecessary messages. I have not tried to use QtCreator for android development yet so don't know if start app through a script will work for android.
  • QT Creator Forces Screen Resolution Change In Red Hat

    2
    0 Votes
    2 Posts
    1k Views
    Y
    So this is not the ideal way to correct the issue but here is my workaround: open up the offending applications at a "safer" resolution--one much smaller than the maximum available. Start the offending applications, and you should observe no issues. Uping the resolution should then be possible without problems. I used 1024x768 as my safe resolution to get up to 1920x1080. For multi-virtual monitor setups, you may also need to reorder the monitors in Display Preferences so that display 2 is on the left and display 1 is on the right--the opposite of default. At this point, upping both displays to the correct resolution was possible without the cycle spasms described in the original post.
  • Creator Design mode doesn't show the QML components coming from a plugin

    12
    0 Votes
    12 Posts
    12k Views
    F
    Yep, it works now. I unchecked "Always use the QML emulation layer provided by Qt Creator". After that, QtDesigner built a new and working qml2puppet layer. Thank you very much, again! Greetings to Berlin, Frime
  • 0 Votes
    10 Posts
    13k Views
    E
    The problem can be solved building GDB with a Python 2.7 or 3 in path. Python 2.6 from Centos 6.X lacks some feature which breaks the debugger integration for Qt Creator 3.1.2. Python 2.6 could also break the debugger pretty printers for Qt Creator > 2.8.1 and < 3.2, but I haven't tested any other version than 2.8.1 and 3.1.2. More info in can be found in QTCREATORBUG-13462.
  • QMAKE_MKDIR_CMD How To ?

    3
    0 Votes
    3 Posts
    5k Views
    Z
    $$sprintf($$QMAKE_MKDIR_CMD, "mydir")
  • Qt Creator 3.2.1 Linux template issues - Solved

    1
    0 Votes
    1 Posts
    628 Views
    No one has replied
  • Can not create plain C++ project with CMake

    1
    0 Votes
    1 Posts
    759 Views
    No one has replied
  • VS plugin: Avoid auto-re-moc of all files

    1
    0 Votes
    1 Posts
    456 Views
    No one has replied
  • How to run a ui converted python file in Qt-Creator

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Installer Framework auto & silent update

    1
    0 Votes
    1 Posts
    842 Views
    No one has replied
  • 0 Votes
    7 Posts
    2k Views
    V
    thank you. I suppose this is what I was missing all along. I must compile libs first, and not just try to include them as source.