python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do I use mouse button events with gtk4-rs?
I'm trying to capture up a right click event on a TreeView I have in my application using Rust and gtk4-rs. I don't see a specific EventController for mouse buttons events. I do see EventControllers f...
Aaron Cirillo
Votes: 0
Answers: 1
Why sources codes c++ in linux compile and does not start?
Source codes c++ gtkmm3 gtk4 linux:
#include <gtkmm.h>
#include <gtk/gtk.h>
#include <glib.h>
int main(int argc, char *argv[])
{
auto app =
Gtk::Application::create(argc, argv...
aleks_yolp
Votes: 0
Answers: 2
.pack_start() not working with gtk-rs Box
In the following code using gtk-rs I continuously get the error "method cannot be called on gtk4::Box due to unsatisfied trait bounds" for "hbox.pack_start". I have seen this metho...

Ricky Kresslein
Votes: 0
Answers: 0
How do I create a close button for notebook tab with GTK/C?
I searching a way to create a small close button for notebook tabs.
Here is a common way to create a big close button for GTK 2.24, GTK 3 and 4:
GtkWidget *head, *content, *image, *btn, *label = gtk_l...

luigifab
Votes: 0
Answers: 1