Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6620833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:09:26+00:00 2026-05-25T21:09:26+00:00

Is there a way to make the window of a qml application transparent? I’m

  • 0

Is there a way to make the window of a qml application transparent?

I’m looking for a detailed description on how to draw simple shapes with qml while making the window of the application transparent, as well as the background. A working source code demo would be awesome.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:09:26+00:00Added an answer on May 25, 2026 at 9:09 pm

    I finally found a simple way to draw a couple of red/blue rectangles while leaving the window transparent.

    enter image description here

    draw_rectangles.qml

    import Qt 4.7
    
    Item {
         Rectangle {
             opacity: 0.5
             color: "red"
             width: 100; height: 100
             Rectangle {
                 color: "blue"
                 x: 50; y: 50; width: 100; height: 100
             }
         }
     }
    

    win.cpp:

    #include <QApplication>
    #include <QDeclarativeView>
    #include <QMainWindow>
    
    int main(int argc, char *argv[])
    {
        QApplication app(argc, argv);
        QMainWindow window;
    
        QDeclarativeView* v = new QDeclarativeView;
        window.setCentralWidget(v);
    
        v->setSource(QUrl::fromLocalFile(("draw_rectangles.qml")));   
    
        window.setStyleSheet("background:transparent;");
        window.setAttribute(Qt::WA_TranslucentBackground);
        window.setWindowFlags(Qt::FramelessWindowHint);
        window.show();
    
        return app.exec();
    }
    

    win.pro:

    TEMPLATE += app
    QT += gui declarative
    SOURCES += win.cpp
    

    Save these files to the same directory and execute qmake followed by make to compile the application.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to make my Python console application's window flash in the
I wonder, if there is a way to make VS C++ Express console window
Is there any way to make a window completely unaffected by Expose, just like
I know php is server-side, but is there a way to make this window
Is there any way to make a window fixed so that the user can't
Is there a way to make input pass through a child window and reach
Is there a way to make a link open a new browser window (not
Is there a way to make a Child Window in Silverlight 3 non-draggable?
Is there a way to make the Developer Tools window open Maximized automatically again?
Is there a way to make the window.onload function ignore a pages google ads?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.