Navigation

    Qt Forum

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

    • UNSOLVED QML ListView on prepend items to QAbstractListModel, ListView jumps to first element
      QML and Qt Quick • qml listview mobile scrolling qlistmodel • • blacky_i  

      1
      0
      Votes
      1
      Posts
      454
      Views

      No one has replied

    • SOLVED How to add scroll bar action
      General and Desktop • qt 5.7 scrolling qt5.8.0 scroll bar • • Kinesis  

      12
      0
      Votes
      12
      Posts
      3013
      Views

      Did you try to determine why they don't appear ?
    • UNSOLVED Vertical ListView inside horizontal SwipeView buggy scrolling
      QML and Qt Quick • listview flickable scrolling • • daljit97  

      2
      0
      Votes
      2
      Posts
      593
      Views

      Hi , you can use the SwipeView property interactive, to look when ListView are scrolling and enable in ListView when SwipeView scrolling
    • UNSOLVED What are the ways to implement very smooth auto scroll for three list views at a time in QML?
      QML and Qt Quick • qml listview animation scrolling • • Rohn  

      1
      0
      Votes
      1
      Posts
      376
      Views

      No one has replied

    • UNSOLVED QWebEngineView freezes while autoscrolling a web page
      QtWebEngine • c++ qwebengineview qt5.9 scrolling web page • • lmofallis  

      1
      0
      Votes
      1
      Posts
      946
      Views

      No one has replied

    • UNSOLVED Draw a large scrollable plot
      General and Desktop • scrolling plot • • dridk2  

      2
      0
      Votes
      2
      Posts
      797
      Views

      I suggest looking into QCustomPlot.
    • SOLVED [SOLVED] Is there anyway to create a scrollable version of Layouts?
      QML and Qt Quick • qml mobile flickable scrolling layouts • • eLim  

      7
      0
      Votes
      7
      Posts
      7257
      Views

      @vladstelmahovsky Thanks. This solves the issue! Shame on me for not reading the documentation more thoroughly.
    • UNSOLVED QML WebKit TableView Lazy Load Data (which signal to handle scroll changed)
      General and Desktop • qml tableview signal webkit scrolling • • Dong  

      1
      0
      Votes
      1
      Posts
      625
      Views

      No one has replied

    • UNSOLVED Autoscroll not triggered when I drag outside a list widget
      General and Desktop • scrolling dragging auto • • Franz Amador  

      1
      0
      Votes
      1
      Posts
      554
      Views

      No one has replied

    • UNSOLVED Smooth automatic scrolling in QScrollArea (or something else?)
      General and Desktop • animation scrolling lag cpugpu • • kryptur  

      4
      0
      Votes
      4
      Posts
      2695
      Views

      The rendering part of the QTableView is optimized for that kind of data. After a quick look at your code, it seems you are generating lots of widgets to show your data, here you would only have one.
    • Setting Focus on Button and let verticalScrollbar to Top does not work
      Mobile and Embedded • qt5.5 embedded focus scrolling stackedwidget issue verticalscrollb • • BluTiGeS  

      1
      0
      Votes
      1
      Posts
      731
      Views

      No one has replied

    • [Solved] Scroll to item in TreeView
      QML and Qt Quick • qml treeview scrolling • • Precitec  

      2
      0
      Votes
      2
      Posts
      2889
      Views

      @Precitec Managed it myself. Found code in TableView source i could use for TreeView: function positionViewAtRow(row, mode) { __listView.positionViewAtIndex(row, mode) }
    • pyqt scrollarea not resized after dragndrop
      Language Bindings • pyqt5 scrolling scrollarea • • freeaks  

      2
      0
      Votes
      2
      Posts
      1677
      Views

      found out! dropEvent() method of DragWidget() class needed to be modfied to get X and Y of dropped icon and pass those value to self.minimumSize() if newIcon.y()+32 > self.minimumHeight(): self.setMinimumHeight(newIcon.y()+32) if newIcon.x()+32 > self.minimumWidth(): self.setMinimumWidth(newIcon.x()+32)
    • Control of QTreeView to create impression that all items are loaded, but actually only load them as needed to display.
      General and Desktop • model scrolling • • Moschops  

      2
      0
      Votes
      2
      Posts
      1087
      Views

      Hi, I don't know of an example to do that but basically your model should "lie" to your view so you need get the amount of data you have from your server and tell your view that you have e.g. 100'000 items in rowCount. Then in data you would probably have to do something like a detection of when you get "serial" calls to update the view and once it stops, check what indexes should be shown and only then fetch the data from your server. But that would also mean that your underlying that structure should be able to handle "holes" like for example if your user jumps from the top to the bottom of your view. Hope it helps
    • [SOLVED] Scroll and Zoom on Android and iOS platform ?
      Mobile and Embedded • android qwidget ios mobile zoom scrolling scrollarea • • NGV1  

      4
      0
      Votes
      4
      Posts
      1712
      Views

      So, finally I used a QGraphicsView and a QGraphicsScene in which I add my QWidget and now I can use the scroll (with the dragMode). I didn't implemented the zoom yet, but it I'm working on. Thanks a lot for your help
    • Scroll and Zoom on Android and iOS platform ?
      Mobile and Embedded • android qwidget ios qmainwindow zoom touch scrolling • • NGV1  

      1
      0
      Votes
      1
      Posts
      584
      Views

      No one has replied

    • ListView Scrolling Behavior
      QML and Qt Quick • flickable scrolling • • emppu  

      1
      0
      Votes
      1
      Posts
      895
      Views

      No one has replied

    • [SOLVED] ListView painting outside of parent on scroll.
      QML and Qt Quick • listview scrolling • • grheard  

      4
      0
      Votes
      4
      Posts
      1872
      Views

      @grheard It didn't work because the requirement is to clip beyond the ListView's boundary and not the delegate's one. And so setting clip for ListView did the trick.