Skip to content

Independent Developers

A forum for independent Developers and freelancers
79 Topics 622 Posts
  • Shared qml between plugins

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    Julien BJ

    Hello @Chaimae,

    You can create a third plugin Z containing only your common qml files, then you import it from another qml in plugin X or plugin Y.

  • Modeless & Modal

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    SGaistS

    Hi and welcome to devnet,

    Can you show your code ? That way we might be able to pinpoint why you are getting a crash.

  • How much cost Qt for Indie developers ?

    96
    0 Votes
    96 Posts
    134k Views
    I

    Nothing wrong, much less "vastly inferior" with Qt containers - their performance is on par with std containers, and Qt containers use is actually less verbose and much easier to use. std containers are overly verbose, pretty much all operations require iterators.

    He is right about the pricing though. It needs to be cut at least in half to become reasonable.

  • 0 Votes
    8 Posts
    6k Views
    tekojoT

    To me it sounds like you are pretty much covered (iOS aside).

    The main idea with LGPL is to let the user use and modify the product. Static linking in itself is not bad if the developer is ready to provide the objects and toolchains (and scripts and whatever else is needed for the user to work on the product).

    The deployment tools do have their problems, I agree with that. And when I play with Qt, I use the defaults. But then again, I definitely am not a proper developer.

  • 0 Votes
    3 Posts
    3k Views
    JKSHJ

    Hi,

    @wolfgang959 said:

    Can i use the opensource version of Qt Creator under the LGPL to make closed source software and sell it, as long as the Qt libraries are dynamically linked?

    I presume you mean the LGPL version of Qt (the libraries), not Qt Creator (the IDE)? The Qt Company is happy with what you have described: http://www.qt.io/faq/

    "The LGPL allows you to keep the source code of your application private as long as it is “work that uses” the library. Dynamic linking is usually recommended here."

    Note: Nobody really knows the legal answer to this question from a broad LGPL point of view, because this has never been dealt with by the courts before.

    If i use MinGW is anything i compile with it then restricted to the GPL

    No. The tools are GPL, but your code doesn't have to be GPL.

    If i use LLVM (not tried it yet but seems promising), will i have to compile Qt Creator, and the Qt framework with CLang(++) in order to then compile my Qt projects with CLang?
    You don't have to compile Qt Creator. You might have to compile Qt... I'm not sure, but I think the GCC version of Qt is compatible with clang.

    i can then use the same setup of Qt creator/framework as well as the same compiler, meaning i then don't for instance use MSVC for windows and gcc for linux but can use LLVM for both.

    Frankly, this has zero impact on my development workflow. I use MSVC on Windows and GCC on Linux, but my code can be shared between the two machines without any modifications, and the way I use Qt Creator is exactly the same on both machines.

  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • Mbeaudoin29

    3
    0 Votes
    3 Posts
    2k Views
    SGaistS

    Bonjour et bienvenue sur devnet,

    this ne peut pas être utilisé dans main donc vous devez être en train d'essayer de faire quelque chose d'interdit par le C++.

    Pour ce qui est du prix cela dépendra de comment vous désirez déployer/commercialiser votre travail. Vous trouverez "ici":http://www.qt.io/download/ une liste des prix courants. Pour plus de détails, le plus simple serait de contacter The Qt Company au travers du formulaire accessible en bas de la page.

    Petit détail pratique: la langue officielle de ce forum est l'anglais donc je recommande de l'utiliser pour la suite

  • 0 Votes
    2 Posts
    2k Views
    A

    Wouldn't that depend on your location in the word? What is a decent rate for an engineer in Norway is not the same as the expected pay in India I think...

  • 0 Votes
    11 Posts
    4k Views
    mrdebugM

    Can you send me an email at info@denisgottardello.it?

  • Compiler error

    6
    0 Votes
    6 Posts
    3k Views
    SGaistS

    You're welcome !

    All downloads are available on the same page you got yours. Just click on the "Show All Downloads" button

    Since you have it working now, please update the thread title prepending [solved] so other forum users may know a solution has been found :)

  • 0 Votes
    6 Posts
    4k Views
    SGaistS

    Are you sure you have that module installed ?

  • 0 Votes
    3 Posts
    3k Views
    J

    Great!!

    Thanks Sierdzio. I already thought so, but the different types of licensing options made me doubt.

  • 0 Votes
    4 Posts
    3k Views
    A

    Hi,
    I'm updating right now the post.

    Thanks

  • Clean source of Qt Quick 1.0

    3
    0 Votes
    3 Posts
    2k Views
    N

    Thanks JKSH, I'll pick up Qt5.2.1 and go from there.

  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • Can I use QT in a Freeware (Not Open Source) ?

    7
    0 Votes
    7 Posts
    4k Views
    C

    Hmm..i see.that's the problem when someone becomes very successful..
    thanks sierdzio for answering my questions.

  • [SOLVED] Lisence for open source Qt application?

    14
    0 Votes
    14 Posts
    8k Views
    C

    Really thanks!!

  • 0 Votes
    2 Posts
    3k Views
    SGaistS

    Hi,

    Please don't post the same question in multiple sub-forums, one is enough

    "Duplicate":http://qt-project.org/forums/viewthread/36823/

  • Promoting QtCustomWidgets in PyQt

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Connect two windows

    4
    0 Votes
    4 Posts
    4k Views
    Q

    Well then then just create the method in second dialog end call it after dialog closed:
    @void on_showdialog_action()
    {
    uSecondDialog *usrDlg = new uSecondDialog(this);
    if(usrDlg->exec() == QDialog::Accepted)
    {
    uCalcResultStruct result = usrDlg->getCalcResult();
    }
    }@

    Something like that.
    uCalcResultStruct is some your struct which can store all data you need.