Questions tagged [scrolledwindow]
50 questions
0
votes
1 answer
How to scroll PyGTK ScrolledWindow to a certain row of a nested table?
I have a program in PyGTK which has a ScrolledWindow and a Table nested in it. The table rows can be of a different height. What I'm trying to find is a way to scroll the view so it begins from the selected row. I know how to move the scrollbar to a…
0
votes
1 answer
How to define the height of a ScrollableFrame inside a ScrolledWindow?
I want to put some (~30) CheckButtons inside a BWidget::ScrollableFrame which is located inside a BWidget::ScrolledWindow. For testing purposes I wanted to restrict the size of the ScrollableFrame to 100px by 100px. I expected a ScrollableFrame,…

grandmasterg
- 1
- 2
0
votes
2 answers
Print complete WebKitWebView (not only visible part) into PDF with gtk3 and cairo
I want to save a webpage using webkit, gtk3 and cairo into a pdf.
What works: The visible part (visible in window) gets correctly printed into the pdf
What doesn't work, but should work: The invisible part (the part when you scroll down) should be…

btwotch
- 1
- 1
0
votes
2 answers
gtk+ programmatically scroll back a single line in scrolled_window containing a vte terminal
I'm trying to setup the keypress function to assign the shift+up key combination to scroll back a single line in the vte terminal window. Here is what I have so far:
case GDK_Up:
if (event -> state & GDK_SHIFT_MASK)
{
GtkAdjustment…

nomadicME
- 1,389
- 5
- 15
- 35
0
votes
0 answers
wxPython ScrolledWindow not scrolling right or down
I've got a wx.ScrolledWindow that I'm using to display images in. I have a mouse and keyboard event set so that when the user holds the space bar and drags their mouse, the ScrolledWindow should move with the mouse movement, displaying different…

adchilds
- 963
- 2
- 9
- 22