Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
52 views

I have a sample GTK4 application where a list of entries is arranged vertically in a scrolled window. When I test the application using a mouse by continuously scrolling the window, the app does not ...
Smritha's user avatar
1 vote
1 answer
272 views

If I want to make a Gtk.TreeView scrollable, I embed it in a Gtk.ScrolledWindow. Embedding the TreeView produces a cursor which is out of scale (way too large). There are 7 more rows in the TreeView, ...
jcoppens's user avatar
  • 5,472
1 vote
1 answer
830 views

I have a gtk entry right below the scrolled window which has the default focus , left and right keys move the cursor in the entry ,I am able to catch the key press events for up and down arrow keys ...
Archith's user avatar
  • 27
0 votes
2 answers
108 views

I would like to know if there is a way to know if the user scrolled GtkScrolledWindow (containing a GtkTextView) to the bottom or not. Indeed, I automatically scrolled to the end with: ...
lock's user avatar
  • 421
2 votes
1 answer
454 views

I want to wrap a listbox widget into a scrolled widget, then I find the GtkScrolledWindow, however, I could not drag and drop a GtkListBox into GtkScrolledWindow. I also tried right click the ...
Donghua Liu's user avatar
  • 2,348
4 votes
2 answers
730 views

I have the following code,: GdkColor color; color.red = 0x0; color.green = 0x0; color.blue = 0x0; gtk_init (&argc, &argv); window = gtk_dialog_new (); gtk_widget_modify_bg(window, ...
user avatar
0 votes
1 answer
3k views

i've been trying to run a software where i've built the UI by Glade. Glade then transform the UI in an XML file, and then in Python i just load that file. But i've a problem with (maybe) deprecated ...
FrancescoN's user avatar
  • 2,206
2 votes
1 answer
433 views

I have a gtkscrolledwindow and there is a gtk image in it. How can i get current showing area in GtkScrolledWindow? For example my image is 1366x768 pix and 300x400 pix part of image is showing in ...
mnrl's user avatar
  • 1,715
3 votes
3 answers
5k views

I have a form interface with a large number of horizontal drop down and text boxes that are inside a GTKscrolledWindow. The form has to be aligned horizontally because there are an unlimited number ...
David Just's user avatar