Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. This plugin does not support setting window opacity
QtWS25 Last Chance

This plugin does not support setting window opacity

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
embeddedanimationpluginmissingopacity
6 Posts 3 Posters 4.1k Views
  • 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.
  • I Offline
    I Offline
    IL
    wrote on 22 Mar 2016, 06:43 last edited by
    #1

    Hi all,
    I am trying to use opacity animation on my beagle bone like target, when I am running the code I am getting the above message
    "This plugin does not support setting window opacity"
    I have tried to search that on the WEB but I didn’t find any related issue.
    Can anyone tell me what the missing plugin for my target is? (On my fedora it's working great!)

    Best regards,
    IL

    //Summery of my code is
    MainWindow::MainWindow(QWidget *parent)
    {
        QPropertyAnimation *animation;
        animation = new QPropertyAnimation (myWidgetPage, "windowOpacity", this);
        animation->setStartValue(0.0);
        animation->setEndValue(1.0);
        animation->setDuration(2000);
       ...
    }
    
    void MainWindow::startAnimation()
    {
        animation->start();
    }
    
    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 22 Mar 2016, 23:24 last edited by
      #2

      Hi,

      It's not a problem of missing plugin. This message just tells you that the plugin you are using doesn't provide that feature.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • I Offline
        I Offline
        IL
        wrote on 23 Mar 2016, 08:44 last edited by
        #3

        Hi and thanks for replaying,
        Anything I can do to change it and support opacity?

        1 Reply Last reply
        0
        • Z Offline
          Z Offline
          Zola
          wrote on 23 Mar 2016, 10:54 last edited by
          #4

          @IL

          I am not sure if you can apply stylesheet to your animation object, but in my app i applied opacity with background:rgba(0-256, 0-256, 0-256, 0-1 (opacity))

          1 Reply Last reply
          0
          • I Offline
            I Offline
            IL
            wrote on 23 Mar 2016, 13:24 last edited by
            #5

            Hello,
            I want my window to appear after action and disappear slowly using window opacity, actually currently I am implement volume bar window that when changing the volume the volume bar appear and after 3 seconds it start to disappear.
            I assume that if you are using stylesheet opacity so you probably holding fix window opacity, am I correct?

            Thanks,
            IL

            1 Reply Last reply
            0
            • S Offline
              S Offline
              SGaist
              Lifetime Qt Champion
              wrote on 23 Mar 2016, 21:39 last edited by
              #6

              You should give more details about the device and Qt backend you are using.

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • J JonB referenced this topic on 6 Sept 2024, 10:27

              6/6

              23 Mar 2016, 21:39

              • Login

              • Login or register to search.
              6 out of 6
              • First post
                6/6
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • Users
              • Groups
              • Search
              • Get Qt Extensions
              • Unsolved