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
  • Creator: Find out how include paths are misparsed?

    1
    0 Votes
    1 Posts
    442 Views
    No one has replied
  • Qt Installer Framework

    1
    0 Votes
    1 Posts
    779 Views
    No one has replied
  • How do I change the overall font size of QtCreator?

    8
    2 Votes
    8 Posts
    44k Views
    Y
    Thanks for the tip. Can someone here help me use a stylesheet this way to only change the Creator console output and application output panes, without changing anything else? I know you can use stylesheets to target a widget with a certain name. For example: QCheckBox { spacing: 4px; //affects all checkboxes } QCheckBox#checkBox_4 { spacing: 14px; //only changes one with that objectName } I've tried looking at Creator's source, but I'm not skilled enough to navigate a project of that size and complexity.
  • Change font size in output windows?

    22
    0 Votes
    22 Posts
    18k Views
    Y
    I find this really annoying as well. With older versions, circa Qt4.7+Creator 2.0, I had code set to one font, and console output used the system font, and it was much more readable. This new setting where console output and application output use the same font as code editors is really annoying in comparison. This is a basic UI principle: Different function means different typefaces. Is there any way to move the bug tracker issue up to Creator 3.x? Or is it better to create a new one?
  • Mac: Creator won't add versions in /usr/local/Trolltech

    2
    0 Votes
    2 Posts
    874 Views
    SGaistS
    Hi, Can't find my other post about this so here is the short version: in the "Select a qmake Executable" dialog go to your system's root and do "cmd + shit + ." to make the hidden folders appear then you can to the install folder of Qt Happy coding !
  • Gdb stops at "setting breakpoints" in QtCreator when debugging

    18
    0 Votes
    18 Posts
    22k Views
    A
    LTS is overrated :) But I digress! Perhaps you should either re-enable the bug to see if they can help you, or file a new bug and link to my old one. Good luck!
  • Creator: Increate number of recent projects?

    3
    0 Votes
    3 Posts
    990 Views
    A
    I have posted the suggestion as https://bugreports.qt-project.org/browse/QTCREATORBUG-11605
  • String IDs in QtCreator instead of text

    2
    0 Votes
    2 Posts
    753 Views
    martin_kyM
    Qt uses strings (the original source text) as translation keys. But nothing prevents you from using the tr() functions like this: @tr("12345")@ where 12345 is your translation ID. But Qt seems to make it possible to attach an ID to a translation key. Perhaps "this":http://qt-project.org/doc/qt-5.0/qtdoc/i18n-source-translation.html#adding-meta-data-to-strings is what you are looking for?
  • Errors while compiling Qt Creator 3.0.0 on CentOS6.4

    4
    0 Votes
    4 Posts
    2k Views
    T
    hi is there any solution to this? i'm having the same issue thanks
  • Print Widget on Qt Creator

    3
    0 Votes
    3 Posts
    2k Views
    F
    Thank u marstay i finally fix my problem using QPrinter and QPrinterDialog :) here is the code : QPrinter *printer = new QPrinter; QPrintDialog *printDialog = new QPrintDialog(printer, this); if (printDialog->exec() == QDialog::Accepted) { QPainter p(printer); QPixmap pm = QPixmap::grabWidget(this); p.drawPixmap(0, 0, pm); }
  • [Moved] qtcreator and cuda .cu files

    3
    0 Votes
    3 Posts
    6k Views
    S
    this link is damaged i guess http://doc.trolltech.com/4.7/qmake-environment-reference.html#customizing
  • No Qt help

    10
    0 Votes
    10 Posts
    8k Views
    A
    If your problem is solved then Please tag it [Solved]
  • Addin not visible in VS2012

    5
    0 Votes
    5 Posts
    5k Views
    K
    Here is workaround: https://bugreports.qt-project.org/browse/QTVSADDINBUG-141
  • Cannot use a custom widget with Qt Designer

    4
    0 Votes
    4 Posts
    1k Views
    SGaistS
    @SqlWidget(ui->tab); // isn't tab the QTabWidget ?@ You can get the widget with widget(index), removeTab(index) and then insertTab(newIndex, widget, label)
  • [SOLVED]Qt Creator -profile option output

    3
    0 Votes
    3 Posts
    1k Views
    Chris KawaC
    Thanks Tobias, I started it from Visual Studio with debugger attached and there it is. I must say it's a little counter-intuitive to say the least :)
  • 0 Votes
    3 Posts
    899 Views
    A
    Nice trick, thanks! Actually I already use some variations of it in other programs but did not think of trying yesterday. Cheers, Alexandre
  • Qt Creator indexer

    10
    0 Votes
    10 Posts
    8k Views
    T
    osirisgothra: Please do open a new thread and do not post in response to threads that are more than a couple of days old:-) Please also consider to file a bug report at https://bugreports.qt-project.org/ . Those do get developer attention, which is happens here in the forum only by accident;-)
  • Using QDoc does not work at all

    3
    0 Votes
    3 Posts
    2k Views
    sierdzioS
    Doxygen is recommended as a tool to develop documentation of Qt projects. qdoc is an internal tool used by Qt Project.
  • [SOLVED] user settings file and collaborative work

    5
    0 Votes
    5 Posts
    1k Views
    SGaistS
    Nice ! Since you had a working answer, please update the thread title prepending [solved] so other forum users may know that a solution has been found :)
  • Minimizing QT Application

    2
    0 Votes
    2 Posts
    684 Views
    SGaistS
    Hi, Please don't post the same question multiple times "Duplicate":http://qt-project.org/forums/viewthread/38849/