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
  • Qt Installer "CreateShortcut" Documentation

    1
    0 Votes
    1 Posts
    811 Views
    No one has replied
  • [Moved] QT and data input in ubuntu terminal

    27
    0 Votes
    27 Posts
    14k Views
    D
    mzimmers, I was able to get my QtCreator reading/writing from/to cin/cout thanks to your questions/post. And it's running fine here with GDB on Ubuntu 12.04. Thanks for your help, and hope your's is running fine now.
  • More thorough tutorials/examples for subdirs projects?

    5
    0 Votes
    5 Posts
    3k Views
    sierdzioS
    Ha, I did not know about shadowed() function, it sure looks useful! Thanks :-)
  • "StartMenuDir" in Installer Framework

    4
    0 Votes
    4 Posts
    2k Views
    A
    The posted config.xml file does not create Windows Start menu folder "Cronvision" both on Windos 7 and on Windows 8.1. Any idea what could be a reason of this issue?
  • QtCreator 2.4.1, autocomplete issue with menu actions

    5
    0 Votes
    5 Posts
    1k Views
    G
    I can differentiate between QtCreator and Qt itself. But when I've tried this step I had some issues, so I kept the QtSDK 1.2.1 as it is. Will probably retry using the new IDE with old framework.
  • [VS AddIn] How to embed version info?

    6
    0 Votes
    6 Posts
    3k Views
    Chris KawaC
    Yeah, as I said the resource system seems very fragile. I usually have a separate file just for the icon with a single line in it and don't use the VS editor for it: @ IDI_ICON1 ICON "icon.ico" @ It's curious that Qt won't recognize this for example if you change IDI_ICON1 to IDI_ICON2 or explicitly to something like 101. It also seems the builtin VS resource editor doesn't do a very good job as it sometimes duplicates IDs. For example it's common that it gives ID 101 to icon and other resources. Inspect generated .rc and resource.h files for such oddities. Oh well, another day with Visual Studio I guess ;)
  • Qt Creator 3.1 Popups Misaligned

    2
    0 Votes
    2 Posts
    745 Views
    SGaistS
    Hi, It might be related to this "bug":https://bugreports.qt-project.org/browse/QTBUG-32395
  • Problems Loading Mock Data with qmlscene

    2
    0 Votes
    2 Posts
    2k Views
    T
    Hi, How does your main.qml look like with the mock data? Are you still using this: @ // main.qml import QtQuick 2.2 Rectangle { implicitHeight: 1280 implicitWidth: 1024 ListView { model: runtime.availableScanners } } @ if so, try renaming "runtime.qml" to "Runtime.qml" and change your mail.qml to this: @import QtQuick 2.0 import Minh 1.0 Item { width: 360 height: 360 Runtime { id: runtime } ListView { anchors.fill: parent model: runtime.availableScanners delegate: Rectangle { width: 60 height: 60 Text { anchors.fill: parent text: serialNumber } } } }@
  • Qt Creator: Build C Project on Remote Linux Machine

    4
    0 Votes
    4 Posts
    3k Views
    D
    Doesn't QtCreator/GDB have some sort of remote debugger option? I've never used it, know little if anything about it, have no clue if it would work cross platform, but I have a vague recollection that it exists. It could be worth looking into.
  • [SOLVED]Unable to debug my Application

    10
    0 Votes
    10 Posts
    9k Views
    C
    You are welcome! Happy coding :)
  • QtCreator - cannot add build kit

    25
    0 Votes
    25 Posts
    12k Views
    J
    yeah, way to make me feel stupid! :p just kidding glad i can move on now
  • [Solved] [Linux] Unknown module(s) in QT: webkitwidgets

    7
    0 Votes
    7 Posts
    45k Views
    V
    Ok, I solved the problem with the help of a guy from the #qt IRC channel. It seems that the module qtwebkit isn't built while compiling Qt. To compile qtwebkit change into directory qtwebkit: cd <qt path>/qtwebkit Create/configure Makefile: ../qtbase/bin/qmake Compile qtwebkit: make I don't know whether the missing compilation of qtwebkit is the expected behaviour. PS: Compilation of qtwebkit takes a half hour on i7-4770k.
  • 0 Votes
    5 Posts
    4k Views
    N
    You need to add @<AllowSpaceInPath>true</AllowSpaceInPath>@ in your config.xml
  • [SOLVED]Unable to configure Qt Creator for Android

    13
    0 Votes
    13 Posts
    16k Views
    ?
    [quote author="mbnoimi" date="1398699433"]This issue has been solved in Qt Creator 3.1.0 as shown in this ticket: https://bugreports.qt-project.org/browse/QTCREATORBUG-12021[/quote] Glad to hear that the problem is solved. Sorry for not helping you initially to solve this problem.
  • Qt Creator online help no longer works

    6
    0 Votes
    6 Posts
    2k Views
    T
    I'm still not sure what was going on, but I managed to get the setup working correctly again by changing the On context help setting: temporarily to Always Show Side-by-Side, then back to my old setting, i.e. Always Show Help in External Window.
  • How to check for broken links in Qt documentation

    5
    0 Votes
    5 Posts
    2k Views
    D
    Hi, Someone else does the actual conversion process, so I don't know if they use QDoc or something else do it. However, if that is an important detail I can check it. I find broken links quite regularly, with every release of software, and users don't tend to report them, they will just now and then say things like "Your documentation is no good, there are lots of broken links", but without remembering any specific ones (I can't blame them, I would probably do the same!) I will subscribe to the Interest mailing list as you suggest. Thanks
  • QML files in resources

    3
    0 Votes
    3 Posts
    1k Views
    J
    Ah, I did not know that I have to register the .qml files, too. I tried qmlplugindump, but of course this did not work without registering... Thanks!
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Idea i just got for QtCreator: Record voice while programming.

    2
    0 Votes
    2 Posts
    958 Views
    Q
    It would be a very interesting and original feature. Only minus is huge size of project. Probably same feature but with text messages instead of audio, would be also very helpful.
  • Possible Creator bug in QML designer?

    6
    0 Votes
    6 Posts
    2k Views
    JKSHJ
    I just tried it with the official version of Qt Creator 3.1.0 on Windows 8 x64, and created a Qt Quick 2.2 project. However, Qt Creator put the main.qml in the same folder as main.cpp, and added it to qml.qrc. There is no longer a "qml" subfolder.