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.4k Topics 34.5k Posts
  • 0 Votes
    4 Posts
    12k Views
    A

    Please add "[SOLVED]" prefix, left to the topic subject. Thanks!

  • Creator 2.6.81 looks terrible on F17

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Push Button into a Combo Box

    6
    0 Votes
    6 Posts
    5k Views
    M

    It's in the documentation, and I believe there is a Menus example.

  • Editing modules in visual studio 2010 add-in

    3
    0 Votes
    3 Posts
    3k Views
    A

    thank you =)

  • Qdoc - conditional generation

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    4 Posts
    3k Views
    D

    read "this":http://blog.qt.digia.com/2012/09/11/qt-creator-2-6-0-beta-released/ blog entry. You will find the download link at the bottom

  • Qt SDK Updater

    2
    0 Votes
    2 Posts
    2k Views
    sierdzioS

    Digia has it's own, commercial SDK. I don't think OS version is available at the moment, but they are likely to provide it in the future.

  • Qt Installer Framework tutorial not working

    8
    0 Votes
    8 Posts
    7k Views
    A

    Thanks for the hint to the bug tracker, after some investigation it turned out that this is a general Qt bug, involving static building of the Qt libraries itself: https://bugreports.qt-project.org/browse/QTBUG-5952

  • Disable form translations

    7
    0 Votes
    7 Posts
    5k Views
    Z

    Sorry, I was going to write run lupdate.
    I found the disguide: the strings remain in qt linguist in the form string list if the same strings are also in another form. But the translation is not editable, so for me it is ok.
    Thank you

  • 0 Votes
    4 Posts
    5k Views
    B

    It appears that the problem is indeed a change in XCode4, which perhaps might be rightly called a bug. If I select one of these red folders or files, I see in the File Inspector that the "Location" control is set to "nothing". So, XCode doesn't know how to properly access the file/folder. By setting the "Location" control to "Relative to Group" or "Relative to Project", the file paths are correctly resolved.

    For example, here's a thread of perhaps some relevance: http://www.cocoabuilder.com/archive/xcode/314464-xcode-4-preference-for-children-paths.html

    In lieu of a "bug fix" from Apple on this (if it indeed is a bug), it seems that qmake would need to programatically set this "Location" setting, when it constructs the XCode project. I suspect that someone familiar with the qmake code for XCode generation might be able to provide a workaround/fix on the qmake side rather easily?

  • 0 Votes
    2 Posts
    2k Views
    D

    Hello

    If you create an new project and put all the file, the problem is solved.

    A beer in Bordeaux (France) for the guy which an answers to my questions

    Frederic

  • 0 Votes
    3 Posts
    1k Views
    J

    Hi Tobias,

    Thanks for replying. It work now!

    After playing around with qmake/make from the command line (same problem happened), I took another very careful look at the differences between my .pro file and a .pro file from a newly created QtGui project. Turns out there's a "QT += " clause in there that needs some more stuff when using the new Qt version (5.0 beta1). This makes sense of course, because of the modularization of Qt 5.

    Sorry for not mentioning I was also using a different Qt version :).

    Thanks,

    Jeroen

  • 0 Votes
    3 Posts
    2k Views
    T

    Please "file bug reports":http://bugreports.qt-project.org/, even for feature requests.

    Stuff reported here will be acted upon only if the responsible developer happens to stumble over the post while being idle. Most devs tend to not follow the forums too closely, so the likelihood of them missing something is high.

    I think many of the things you ask for are already possible, the default is just to highlight them with the normal font in black. We have some people here that find all too colorful a display to be too distracting:-)

  • 0 Votes
    3 Posts
    3k Views
    M

    Glad you found the problem! Be sure and edit your initial post to add [Solved] to the title. Thanks!

  • 0 Votes
    3 Posts
    1k Views
    B

    It's strange, it used to work just fine. I'm using python (which I forgot to mention earlier), and normally I wouldn't need to change anything in code, I could just go straight to the widget, right click and style sheets, and the colours would be changed (but not the actual button's style). I'm not sure how to access things like borders and so on within python, but I just wondered why it suddenly needs all this new attention when it worked fine before. Thanks for the quick reply btw.

  • 0 Votes
    4 Posts
    1k Views
    M

    if Andre is true, i vote it too +

  • 0 Votes
    7 Posts
    3k Views
    A

    And then there is people who have a screen like this:
    !http://ic.tweakimg.net/ext/i/imagenormal/1348564808.jpeg(Dell Ultrawide 29" screen)!

    No need for multi-monitor support there, just for the option to just keep the file bar open. There is plenty of space for it anyway :-)

  • QString

    11
    0 Votes
    11 Posts
    5k Views
    L

    [quote author="muin028" date="1348569443"]If you have any easy solution, please share ...[/quote]
    Either use Qt, or the standard library, but don't use both.
    @
    struct Num
    {
    QTime stamp_1;
    QString data_1;
    }:

    First_Gui_Task::Num msg = { QTime::currentTime(),
    QString("hello world.\trequest number=[%1]").arg(m_icounter) };

    m_request_pub.publish(msg);

    plainTextEdit->appendPlainText(QString("Time during send = %1 -> Message:: %2")
    .arg(msg.stamp_1.toString(Qt::ISODate))
    .arg(msg.data_1));
    @
    Brain to terminal. Not tested. Exemplary.

  • 0 Votes
    3 Posts
    2k Views
    A

    Thanks for reply. Actually, problem is solved. I installed windows symbols and it works fine now!

  • 0 Votes
    4 Posts
    2k Views
    F

    Hi Tobias,
    Tx to answer.
    "file/name/of/your/static/lib” say : current ar archive

    Which i guess confirm that it is a static library.

    Frédéric