search for: gtk_tree_view_get_path_at_po

Displaying 7 results from an estimated 7 matches for "gtk_tree_view_get_path_at_po".

2018 Nov 06
1
[PATCH] p2v: use newer GTK APIs if possible
...on == 1) { + if (gdk_event_get_event_type ((const GdkEvent *) event) == GDK_BUTTON_PRESS && + gdk_event_get_button ((const GdkEvent *) event, &button) && + button == 1) { GtkTreePath *path; GtkTreeViewColumn *column; + gdouble event_x, event_y; - if (gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (interfaces_list), - event->x, event->y, - &path, &column, NULL, NULL)) { + if (gdk_event_get_coords ((const GdkEvent *) event, &event_x, &event_y) + && gtk_tree_view_...
2016 Jun 04
2
firewall-config not functional
...ick on the default target dropdown. When I run firewall-config from the command line I see the following: -------------------------- org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files (firewall-config:5079): Gtk-CRITICAL **: gtk_tree_view_get_path_at_pos: assertion 'tree_view != NULL' failed -------------------------- with the second line repeating many times and often while attempting to interact with the GUI. We don't use NetworkManager except on laptops, and so do not install it. Though we do install NetworkManager-glib, if only...
2016 Jun 07
0
firewall-config not functional
...> > When I run firewall-config from the command line I see the following: > > -------------------------- > > org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files > > (firewall-config:5079): Gtk-CRITICAL **: gtk_tree_view_get_path_at_pos: assertion 'tree_view != NULL' failed > > -------------------------- > with the second line repeating many times and often while attempting to interact with the GUI. > > We don't use NetworkManager except on laptops, and so do not install it. Though we do install Network...
2016 Jan 26
1
[PATCH v2] p2v: User can click on an interface name to identify the
v1 -> v2: Added a (now blue) underlined "Identify interface" link. It's not really a link, but it looks like one, so hopefully should resolve the previous UI issue. Rich.
2016 Jan 26
2
[PATCH] p2v: User can click on an interface name to identify the physical interface.
...utton *event, + gpointer data) +{ + gboolean ret = FALSE; /* Did we handle this event? */ + + /* Single left click only. */ + if (event->type == GDK_BUTTON_PRESS && event->button == 1) { + GtkTreePath *path; + GtkTreeViewColumn *column; + + if (gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (interfaces_list), + event->x, event->y, + &path, &column, NULL, NULL)) { + GList *cols; + gint column_index; + + /* Get column index. */ + cols = gtk_tree_view_get_columns...
2016 Jun 07
5
firewall-config not functional
...-config from the command line I see the following: >> >> -------------------------- >> >> org.freedesktop.DBus.Error.ServiceUnknown: The name > org.freedesktop.NetworkManager was not provided by any .service files >> >> (firewall-config:5079): Gtk-CRITICAL **: gtk_tree_view_get_path_at_pos: > assertion 'tree_view != NULL' failed >> >> -------------------------- >> with the second line repeating many times and often while attempting to > interact with the GUI. >> >> We don't use NetworkManager except on laptops, and so do not install it...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am