Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Unsolved QT program only background

    General and Desktop
    2
    2
    151
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • G
      Gianfranco Facchini last edited by

      Good morning,
      I'm self-taught about QT and I've only been exploring for two weeks. I would have a simple question. Is it possible to create programs without windows support? Without QML and without QWidget? A simple background program?
      Thanks in advance

      1 Reply Last reply Reply Quote 0
      • mrjj
        mrjj Lifetime Qt Champion last edited by

        Hi
        Without QWidget at all, its just a plain c++ console app.
        However, using only non visible Qt is also possible so that would be
        a QT console app.

        You can use the wizard to make both types.

        int main(int argc, char *argv[])
        {
        QCoreApplication a(argc, argv);
        return a.exec();
        }

        1 Reply Last reply Reply Quote 3
        • First post
          Last post