Tagged Questions
The scrolledwindow tag has no wiki summary.
4
votes
2answers
652 views
How to auto-scroll a gtk.scrolledwindow?
i have a treeview-widget inside a scrolledwindow, which is populated during runtime. i want the scrolledwindow to auto-scroll to the end of the list. i "solved" the problem, by adjusting the ...
2
votes
1answer
81 views
get mouse position in gtk scrolled window
I have a scrolled window with a viewport, which is some 4000 pixels tall. Is there a way to figure out the mouse position in viewport coordinates? At the moment, what I get for the position is the ...
2
votes
1answer
148 views
How to show Column Headers in a gtk.TreeView inside a gtk.ScrolledWindow?
i have a problem with gtk.Treeview indide a gtk.ScrolledWindow. I have a large amount of data, which doesnt fit inside my normal window geometrics, so i put my Treeview inside a ScrolledWindow, which ...
2
votes
1answer
177 views
how to scroll a Tix ScrolledWindow
Using Python, how can I programmatically scroll (not using the scrollbars) the window in a Tix ScrolledWindow? The normal way would be to call xview / yview, but those calls do not seem to be ...
1
vote
0answers
58 views
GTK: Get pointer position on scroll-event AFTER scrolled_window has scrolled
I've got a drawing area inside a scrolled window (with convenience viewport),
and this drawing area updates itself according to incoming motion-notify-events.
When I scroll the area though obviously ...
1
vote
2answers
132 views
Cannot get scroll bar to work PyGTK treeview
First let me start off by saying I read on here a lot and I have googled around for the answer but have not been able to turn one up.
Basically I am trying to add a scroll bar to add to my vbox ...
1
vote
1answer
150 views
Prevent scrollbars from showing up when placing a drawing area inside a scrolled window
I'm working on a project using Python and pyGTK. I have a window whose only purpose is showing an image. Unless the image is too big to fit the screen, the window should show no scrollbars by default.
...
1
vote
1answer
435 views
wxpython scrolled Panel Not Updating scroll bars
I'm using winxp and wxpython ( wxpython 3.1, python 2.6 ) to make a GUI program which will copy the text from a TextCtrl, into a ScrollablePanel that contains a StaticText. This all works fine, ...
1
vote
2answers
425 views
Flicker-free drawable ScrolledWindow
I'm trying to build a ScrolledWindow that you can draw on using the mouse, and it's working too, but I'm getting a nasty flicker when the user is drawing on the window while the scrollbars aren't in ...
1
vote
1answer
554 views
GTK Scolled Window - Keep Scroll Bar at bottom
I have a GTK/C++ program that uses a ScrolledWindow. I keep adding data to the list within the scrolled window, and I want to keep focus on the newest item.
But I also want to allow the user to ...
1
vote
3answers
3k views
How to construct simple wxWidgets image display
I wrote a wxPython program that I am translating to wxWidgets. The program has a scrolled window that displays an image. Following Rappin, wxPython In Action (Listing 12.1), I used a StaticBitmap ...
1
vote
1answer
357 views
How do I add ScrolledWindow support to a custom Widget in GtkMM?
I am writing a custom widget for Gtkmm that is supposed to display a huge dataset (imagine something like a 4096x256 character datasheet).
Mostly for reasons of elegance, but also for a possible ...
1
vote
1answer
137 views
How do I get the dimensions of the view (not obstructed by scrollbars) in a wx.ScrolledWindow?
Is there an easy way to do this? Alternatively, if I could get the width of the scrollbars, I could just use the dimensions of the ScrolledWindow and subtract them out myself...
0
votes
0answers
18 views
how to make a gtk+ treeview only show fully visible rows
I have a GtkTreeView object in a scroll view:
GtkTreeStore *store = gtk_tree_store_new(...);
GtkWidget *view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store));
GtkWidget *layout = ...
0
votes
1answer
29 views
wxPython: scrollbars interfering with formatting
The following code is intended to demonstrate a problem I'm having with wxPython.
When I substitute a wx.Panel with a wx.ScrolledWindow and then run the program
the window that is opened is about as ...
0
votes
1answer
39 views
Can I make a scrolledwindow in Glade without a child?
I have a scrolledwindow as part of an application I've designed in Glade. I don't want to create the child object in Glade though, I want to create it and add it in the code directly.
When I try to ...
0
votes
1answer
168 views
ScrolledText Scrollbar Color (Python Tkinter)
I'm using the module ScrolledText in a Tkinter GUI.
I wish to change the colour of the Scrollbar encompassed in the ScrolledText widget,
but I'm having some difficulty.
My syntax is correct ...
0
votes
2answers
395 views
GTK Scrolled Window - scroll to the bottom
I'm writing an app using GTK+, and I have a problem. I'm using GTK Scrolled Window and I must scroll the vertical scrollbar to the bottom, but I don't know, how. I was looking in Google, but I found ...
0
votes
1answer
1k views
Python Tkinter Tix: How to use ScrolledWindow with grid in Tix NoteBook
I'm adding several widgets to a Frame which is located in a tix.NoteBook. When there are too much widgets to fit in the window, I want to use a scrollbar, so I put tix.ScrolledWindow inside that Frame ...
0
votes
1answer
2k views
Easiest way to create a scrollable area using wxPython?
Okay, so I want to display a series of windows within windows and have the whole lot scrollable. I've been hunting through the wxWidgets documentation and a load of examples from various sources on ...