Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. animations
    Log in to post

    • SOLVED Animated GIF in QGraphicsScene/QGraphicsView
      General and Desktop • qgraphicsview qgraphicsscene animations gif qmovie • • artwaw  

      8
      0
      Votes
      8
      Posts
      1083
      Views

      @Chris-Kawa Noted thank you. Now it compiles without errors. I think I need to read a bit about newer c++...
    • UNSOLVED ListView - The add and remove animations remains sometimes stuck in the middle and leaves artifacts
      QML and Qt Quick • listview animations remove stuck add • • jeanmilost  

      1
      0
      Votes
      1
      Posts
      193
      Views

      No one has replied

    • SOLVED How to catch c++ model signals in qml&
      QML and Qt Quick • animations model view prog c++ model model signals • • T_e_d_d_y  

      4
      0
      Votes
      4
      Posts
      180
      Views

      @T_e_d_d_y nice, Actually you don't even need the Connections object model:GameBoardModel{ onPlacementChanged : {} }
    • SOLVED How to animate a QGraphicsItem without using QGraphicsItemAnimation?
      General and Desktop • qgraphicsview qgraphicsitem animation animations • • incam  

      2
      0
      Votes
      2
      Posts
      274
      Views

      @incam https://doc.qt.io/qt-5/qpropertyanimation.html
    • UNSOLVED How to tell when QchartView series animation on zoom is finished
      General and Desktop • qchart qchartview animations • • clayton_tx  

      2
      0
      Votes
      2
      Posts
      169
      Views

      To do this what can be done put a QtTimer in onMouseRelease ( when left mouse is released the zoom is done ). Set the timer for the chart.animationDuration() and then when timer is finished have the callback so chart.setSeriesAnimation( NoAnimation) The animation on qtchart really slows things down even if chart is not updating. It looks good when doing zoom so keep it for that but turn off when zoom finished.
    • UNSOLVED Sharing behavior's animations docs ambiguity
      QML and Qt Quick • qml example animations behavior sharing • • Kyeiv  

      1
      0
      Votes
      1
      Posts
      131
      Views

      No one has replied

    • UNSOLVED Transition in child component binded to parent's animated property
      QML and Qt Quick • states animations nested transi parent and chil • • podkiva  

      1
      0
      Votes
      1
      Posts
      570
      Views

      No one has replied

    • UNSOLVED Can we provide animation for Window Redirection in Qt C++?
      Mobile and Embedded • qtcreator qt5.6 widgets animations main window • • Akshay Kashyap  

      2
      0
      Votes
      2
      Posts
      731
      Views

      Hi and welcome to devnet, You have to give more information about your setup. What device are you going to use ? What version of Qt ? What Linux distribution ? What graphical backend ?
    • SOLVED Animations with dynamic content
      QML and Qt Quick • qml quick states animations • • dv__  

      5
      0
      Votes
      5
      Posts
      1985
      Views

      @dv__ said in QML animations with dynamic content: Also, just out of curiosity, in a more generic case (say, some arbitrary, non-grid arrangement), would my approach make sense? I suppose I could still use ListModel in this case, but the arrangement would have to be done manually, not with an existing view. To do this I'd use a raw Item container with a Repeater and manual positioning in the delegates.
    • UNSOLVED Help on states and transitions
      QML and Qt Quick • states animations transition • • Mark81  

      4
      0
      Votes
      4
      Posts
      1069
      Views

      @Mark81 forget what i said, this wasn't correct. sorry. In the Transition object you should fill the "from" and "to" porperties with names of the states. So you need a transition from state to state.
    • UNSOLVED Qt Animated gif not working properly in raspberry pi
      QtonPi • qt 5.4.1 raspberry pi 2 animations • • scorpion  

      4
      0
      Votes
      4
      Posts
      1596
      Views

      https://forum.qt.io/post/561514 Please Solve this bug also related to this
    • GridLayout Animation
      QML and Qt Quick • gridlayout animations • • roigallego  

      3
      0
      Votes
      3
      Posts
      2257
      Views

      Hi @p3c0 , thank you tor you trick!! I tried, and it works!!!
    • [SOLVED]Execute different Transitions for the same State
      QML and Qt Quick • animations • • ealione  

      3
      0
      Votes
      3
      Posts
      780
      Views

      Hi Buttnik, Thanks for the help, it does exactly what I was looking for.