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 Creator - generation of required includes in sources?

    4
    0 Votes
    4 Posts
    1k Views
    sierdzioS
    As for "it’s almost impossible to track which I don’t use anymore", you can simply use Qt Creator's Find tool (Ctrl+F) and serach the header and source file for the given class name.
  • Qmake, subdirs, libraries

    2
    0 Votes
    2 Posts
    2k Views
    sierdzioS
    Subdirs is just a template that allows you to have several separate .pro files bundled together: you run qmake once for the root .pro file, and the rest is built automatically. For a huge example, simply check out Qt code: all modules are based on qmake SUBDIRS. For a smaller example, take a look at my "QEasyShell":https://github.com/sierdzio/qeasyshell. If you want other projects be rebuilt when you update a dependency, you need to use DEPENDPATH variable.
  • Qt Creator cannot load 'Help'

    3
    0 Votes
    3 Posts
    2k Views
    Y
    I have solved this problem. Execute the command:locate udev.so if you get /lib/i386-linux-gnu/libudev.so.1 /lib/i386-linux-gnu/libudev.so.1.3.5 then sudo ln -s /lib/i386-linux-gnu/libudev.so.1 /lib/i386-linux-gnu/libudev.so.0 so it is ok
  • QBS Defines

    2
    0 Votes
    2 Posts
    2k Views
    B
    Found the solution. It also needs cpp dependency. After adding @Depends { name: 'cpp' }@ it worked.
  • Qt Creator 2.8.1, how to use Designer to create new Signal/Slot

    4
    0 Votes
    4 Posts
    2k Views
    Q
    Ok. I know. In Qt Creator, the build will call "uic" as default to generate header file, which usually stand in diretory "build-xxx-Debug" according to the platform. Thank god! I found it with much time waste.
  • Qt Creator 2.8.0 missing from archive

    2
    0 Votes
    2 Posts
    900 Views
    sierdzioS
    "Here":http://download.qt-project.org/official_releases/qtcreator/2.8/. It's still not copied to the archive.
  • Visual Studio: exclude generated files from search

    3
    0 Votes
    3 Posts
    5k Views
    ?
    Ultra Find is a Find in Files substitute for Visual Studio 2010. http://blog.arainia.com/2010/08/ultra-find.html But I cannot find this extension anywhere.
  • QtCreator shows help in aliased Arial font

    1
    0 Votes
    1 Posts
    706 Views
    No one has replied
  • 0 Votes
    3 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, Thanks for sharing the solution. The current Qt sdks are indeed different from the one provided by Nokia in several aspects. Since you got it working, please update the thread title prepending [solved] so other forum user may know a solution has been found :)
  • Knut resource converter

    1
    0 Votes
    1 Posts
    831 Views
    No one has replied
  • Debugger: Undefined command "bb" trying to use Locals and Expressions

    8
    0 Votes
    8 Posts
    6k Views
    N
    Ok, thanks andrep, works fine for me.
  • Qt creator: target removing/deleting

    2
    0 Votes
    2 Posts
    956 Views
    S
    P.S. in settings "remove" button is disabled "screen":http://gyazo.com/f3ede9c8e6799113c1cd0804839cb9f3.png
  • 0 Votes
    3 Posts
    3k Views
    A
    @kuschky: Quite a few Python commands are different between version 2 and 3 and GDB was built and used all over the place with Python 2 (only). If it had been expected that Ubuntu 13.10 shipped a Python 3 based GDB the problem would not have occured. Qt Creator 3.0 can now handle GDB builds with either Python 2 or Python 3, but one cannot go back in time and change the 2.8.1 release in August to handle distribution changes that will occur several weeks later.
  • Debugging helper missing

    5
    0 Votes
    5 Posts
    3k Views
    SGaistS
    Great you found out and thanks for sharing ! Please update the thread title prepending [solved] so other forum user may know a solution has been found :)
  • Qt Creator LLDB support?

    4
    0 Votes
    4 Posts
    3k Views
    A
    Small update: http://blog.qt.digia.com/blog/2013/11/12/qt-creator-and-lldb/
  • Error in mingw32 -make command [SOLVED]

    9
    0 Votes
    9 Posts
    3k Views
    B
    Ok sir! Thanks again. I will keep in touch with you
  • Debugging in VS2012 very slow

    1
    0 Votes
    1 Posts
    803 Views
    No one has replied
  • [SOLVED] No more debugging on OS X 10.9 with Qt Creator

    8
    0 Votes
    8 Posts
    3k Views
    P
    And the good news go on: macdeployqt works out of the box with no need for hacks! :)
  • Is auto completion support for smart pointers and vector objects planned?

    5
    0 Votes
    5 Posts
    2k Views
    JKSHJ
    You're right, it doesn't work for me either. I think the issue is related to having multiple layers of typedefs and typenames within the standard template (at least that's how MSVC's vector template was implemented; not sure about g++). Qt Creator seems to stop following them after a few layers. In contrast, the QVector header is much cleaner and doesn't have so many layers: https://qt.gitorious.org/qt/qt/source/src/corelib/tools/qvector.h Feel free to file a bug report at http://bugreports.qt-project.org/ -- I'm sure many others are interested in this functionality too.
  • How to increase the text cursor blinking rate in QtCreator code editor?

    1
    0 Votes
    1 Posts
    887 Views
    No one has replied