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: Search and replace in whole project

    8
    0 Votes
    8 Posts
    22k Views
    T
    chetankjain: Thanks:-)
  • Using CMake to Build Qt Projects

    11
    0 Votes
    11 Posts
    7k Views
    I
    [quote author="Smar" date="1281084862"]CMake's syntax is a bit unintuitive and if you need to do anything besides declarations, it gets pretty messy unless you want to put quite a bit time to write modules... Or that's how I think about it. [/quote] Ok, Smar, this is an option form in CMake for build/update translations. @option (UPDATE_TRANSLATIONS "Update source translation *.ts files (WARNING: make clean will delete the source .ts files! Danger!)") if (UPDATE_TRANSLATIONS) QT4_CREATE_TRANSLATION(QM_FILES ${TRANSLATIONS}) else (UPDATE_TRANSLATIONS) QT4_ADD_TRANSLATION(QM_FILES ${TRANSLATIONS}) endif (UPDATE_TRANSLATIONS) @ What replacement for it will be in QtScript as buldsystem or other stuff?
  • Qt auto intelligent tools

    7
    0 Votes
    7 Posts
    5k Views
    A
    Can we try to have QML based CSS editor with declarative formatting ON / OFF . The editor should be smart enough to recognize tag values for formatting as some piece of code may need time to time formatting some may not.
  • Qt Creator documentation

    5
    0 Votes
    5 Posts
    9k Views
    K
    I've added some stuff to the plugin last few days, it's probably worth doing a checkout :) (documentation in implementation files, generate documentation for a whole file)
  • Any obvious reason why this "connect" fails

    12
    0 Votes
    12 Posts
    7k Views
    D
    MariusG, oops, this undocumented tag slightly crashed design ;) DrGreg, yeah you should use "a" tag to make it working.
  • [Moved] 4.7 beta2 and Eclipse integration

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Qt creator with Nokia Qt SDK does not have option to set proxy

    16
    0 Votes
    16 Posts
    13k Views
    ?
    Showing external pages still doesn't work for me .. related thread here: http://developer.symbian.org/forum/showthread.php?t=6340
  • Will Creator allow me to connect a QspinBox signal to a private slot?

    3
    0 Votes
    3 Posts
    3k Views
    D
    Antonio - Thanks for the reply... and bloody clever on the Qt developer's part. again, thanks - greg
  • Widgets created in Creator no in header file???

    3
    0 Votes
    3 Posts
    3k Views
    D
    Thanks.
  • List of 3rd party Qt Creator plugins

    15
    0 Votes
    15 Posts
    29k Views
    T
    Try running master: That has a great class browser contributed by Denis Mingulov:-) Unfortunately I do not think that this code can be backported to 2.0/2.1 since it uses the C++ engine which had quite some improvements since the 2.0/2.1 branch was made. I think that is not the same class browser shown at the link you provided though. So maybe that one was ported to 2.0? I do not know who wrote that plugin, so I can't tell, sorry.
  • Visual Studio Shell

    5
    0 Votes
    5 Posts
    4k Views
    H
    Thank you. I have issued a wishlist bug.
  • Qt Creator 2.0.0 and self made Qt 4.6.3 libraries

    3
    0 Votes
    3 Posts
    3k Views
    U
    Bingo!!! That was the solution. Thank you very much for your help :O)
  • QT Creator 2.0.0 and Perforce

    2
    0 Votes
    2 Posts
    4k Views
    T
    Creator 2.0 should only show those version control entries that are relevant for the current project. So the perforce entry should show up once you have a project open which is managed by perforce. Is that is not the case then you "should report a bug":http://bugreports.qt.nokia.com/.
  • Qt-Creator and VS2010

    5
    0 Votes
    5 Posts
    6k Views
    F
    thank you for your help, in the "bugreport" if everything written thats importen for this problem. solved
  • Syntax highlighting for template files

    3
    0 Votes
    3 Posts
    3k Views
    J
    "Bugreport added":http://bugreports.qt.nokia.com/browse/QTCREATORBUG-1896
  • QObject* parent instead of QObject *parent

    12
    0 Votes
    12 Posts
    8k Views
    P
    [quote author="DrMaboule" date="1279318875"]I fact you could declare more than one variable using this code: QObject *pParent = NULL, *pParent2 = NULL; // Two pointer But is différent from QObject *pParent = NULL, pParent; // One pointer and a none pointer object. This is something I don't do anyway. I would call this a code smell on its own. [/quote] [quote] QObject pParent : The variable is a pointer on a objet of type QObject. QObject is not a class but a pointer on a class. The variable is a pointer, so * should be next the variable. [/quote] You are right, QObject* is not a class, but a pointer to a class. But it is atype. [quote] Don't you agreed? [/quote] Obviously no, but it is a matter of taste. I'll agree to Tobias Hunger that you should be consistent to the code at hand and for my code it's T* name lyuts thank you for the info.
  • Building QtMobility docs

    7
    0 Votes
    7 Posts
    5k Views
    T
    ONe of the big disadvantages of IRC is that both the questions and the answers get lost. Forums and mailing-lists however archive both and can be searched. It depends on the issue of course but building a knowledge base over time makes a lot of sense to me...
  • QtService & RegisterDeviceNotification

    1
    0 Votes
    1 Posts
    5k Views
    No one has replied
  • Step by step instruction to build Qt 4.7 Windows from git

    4
    0 Votes
    4 Posts
    8k Views
    D
    [quote author="anselmolsm" date="1278623614"]AFAIK all you need to build Qt on Windows is listed at: http://doc.qt.nokia.com/4.7-snapshot/requirements-win.html If you have any specific problem, post here so we can help you =)[/quote] Yeah, I forgot perl.
  • Translations for Qt Creator 2.0

    6
    0 Votes
    6 Posts
    6k Views
    T
    Thanks for the link. I added a comment asking whether they considered having their translation merger back into creator. At least I hope I did... since I could not really read anything on that page:-)