qscrollarea Questions

5

I'm developing a Qt Application and I'm trying to find a way to use QTextEdit as a label with long text without the scroll bar. In my ui I have a QScrollArea and inside of it I want to place a coup...
Noenoel asked 8/12, 2017 at 8:24

4

Solved

I think it should be much easier to create a scrollable window in PyQt. I have a list of labels that goes out of the window and I would like to scroll down to view them. At the moment the code doe...
Roadability asked 3/9, 2017 at 15:0

4

Solved

I have a QScrollArea Widget, which starts empty; It has a vertical layout, with a QGridLayout, and a vertical spacer to keep it at the top, and prevent it from stretching over the whole scroll are...
Enough asked 8/10, 2012 at 12:6

7

Solved

I have a control with several QSpinBox objects inside a QScrollArea. All works fine when scrolling in the scroll area unless the mouse happens to be over one of the QSpinBoxes. Then the QSpinBox st...
Meister asked 28/4, 2011 at 16:19

1

I have a QScrollArea containing a widget with a QVBoxLayout. Inside this layout are several other widgets. I want the user to be able to drag the lower borders of those widgets to resize them in th...
Erlina asked 12/5, 2016 at 19:31

6

My setup looks like this: Main Window |- QHBoxLayout |- Some Widgets |- QScrollArea | |- QHBoxLayout | |- QGridLayout | |- Widgets dynamically loaded in at runtime | |- QVBoxLayout |- Some...
Feat asked 7/11, 2013 at 12:47

3

Solved

I have a QHBoxLayout on my form with 3 layouts added to it. The second one has the items concerning my question. I have a QVBoxLayout on the second pane of the main layout (the QHBoxLayout). This ...
Aficionado asked 25/12, 2012 at 20:48

2

Solved

I am developing an app for memorizing text using PyQt4. I want to show all the words in bubbles so that you see how long the word is. But when I have all the bubbles in my QScrollArea, they are ali...
Redcoat asked 12/1, 2017 at 19:27

1

Solved

I have created a preview that shows a rendered image. I used the Image Viewer Example for zooming functionality - so I have a class inheriting QScrollArea, capable of showing an image, in a QLabel,...
Boondocks asked 18/11, 2016 at 18:31

1

Solved

I'm implementing a python application using PyQt5 and I encountered some problems when making use of a QScrollArea. This is the layout of my application: It's composed of 2 QScrollArea (left and...
Vastah asked 31/8, 2015 at 18:36

1

Solved

So I have this QFrame which is the parent widget (represented by this in the code). In this widget, I want to place a QWidget at 10 px from top (and 10 px from bottom, as a result of which it will ...
Census asked 2/3, 2015 at 19:51

1

Someone suggested that I re-implement the QWheelEvent handler and check each child widgets' visibleRegion is 0 or not. Are there any better suggestions?
Krystakrystal asked 24/2, 2015 at 15:50

1

Solved

I have a QScrollArea with some buttons in it, like shown on the picture. The idea of the layout is: 1. The left and right button should be used for scrolling the buttons when they are too wide ...
Krysta asked 21/1, 2014 at 9:17

1

Solved

I am trying to make my QGroupBox scrollable once it grows higher than 400px. The contents in the QGroupBox are generated using a for-loop. Here is an example of how it is done: mygroupbox = QtGui.Q...
Kulp asked 18/11, 2013 at 6:23

1

Solved

I think it is the same problem as : QScrollArea resizing QWidget but there are not solution. so let me expose the problem. test 2 inherited from QWidget: composed : vector of QSpinBox QScrol...
Murcia asked 9/9, 2013 at 16:59

4

How can one hide the scrollbars in a QScrollArea? Currently I use the hide() method on the scrollbars returned by QScrollArea::horizontalScrollBar() and QScrollArea::verticalScrollBar() but the spa...
Decamp asked 1/8, 2010 at 18:44

1

Solved

I am trying to create a label where I can write the current status of the program - e.g.: "Reading data..." "Processing data..." "Complete." If the text reaches the bottom of the label, then it...
Faustinafaustine asked 17/6, 2013 at 6:32

1

Solved

I am creating a window dimanica to the downloads list. But the scrollbar does not work and the "widgets children" are "cut". Where can I be wrong? Thanks. Source: QWidget *central = new QWidget...
Portis asked 28/5, 2013 at 15:10

2

I have a ui with a QScrollArea Widget. The QScrollArea uses a Flowlayout. My problem is when I add widgets to my layout the scroll area begins to scroll and does not expand when it has room to expa...
Tupper asked 31/1, 2013 at 20:56

1

Solved

The structure of my widgets is : QWidget customized to be a panel with rounded borders. To contain an area with scrollbar inside the borders with a margin, then I put this inside: QScrollArea wi...
Volva asked 10/1, 2013 at 9:19

1

Solved

Since I didn't get an answer for this question I tried solving it with PyQt. Apparently, it's not that easy, when QScrollArea is involved... I wrote a small test that basically does what I'm looki...
Contracted asked 2/9, 2012 at 9:45

2

I've successfully implemented a Image Viewer (for DICOM) in Qt. I can see the image and I can zoom in and out correctly. Now, I want to see scroll bars if the image is too big to show when I zoom ...
Esoterica asked 11/6, 2012 at 14:2

2

Solved

How can I auto scroll for the scroll area? For example, when there is a new update instead of the view of the scroll area staying the same, I want to go down with the new text. Think of it as in a ...
Iinden asked 9/8, 2012 at 15:37
1

© 2022 - 2024 — McMap. All rights reserved.