diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-07-28 16:51:16 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-07-28 16:51:16 (GMT) |
commit | 16ce1225f1faf51d7cb8eba4f7fb8b5ec2fac2a2 (patch) | |
tree | bd21d3b992f694c6402bda0864be37a1fc71668a /src/gtkext | |
parent | e0dac33fc96a338e13547af3edfc5d4e914b67a2 (diff) |
Replaced all calls to the deprecated gtk_menu_popup() function.
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/easygtk.c | 77 | ||||
-rw-r--r-- | src/gtkext/easygtk.h | 3 |
2 files changed, 0 insertions, 80 deletions
diff --git a/src/gtkext/easygtk.c b/src/gtkext/easygtk.c index 4543934..05e93b2 100644 --- a/src/gtkext/easygtk.c +++ b/src/gtkext/easygtk.c @@ -1263,83 +1263,6 @@ gint qck_show_question(GtkWindow *parent, const char *title, const char *questio /****************************************************************************** * * -* Paramètres : menu = menu GTK à placer à l'écran. * -* x = abscisse absolue du coin supérieur du menu. [OUT] * -* y = ordonnée absolue du coin supérieur du menu. [OUT] * -* push = indique les relations avec les bordures. [OUT] * -* widget = composant auquel le menu doit être attaché. * -* * -* Description : Détermine la position d'un menu associé à un composant. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -void attach_popup_menu_to_widget(GtkMenu *menu, gint *x, gint *y, gboolean *push, GtkWidget *widget) -{ - GtkTextDirection dir; /* Direction de l'affichage */ - GtkAllocation alloc; /* Emplacement alloué */ - GtkStyleContext *context; /* Style associé pour le rendu */ - GtkStateFlags state; /* Etat courant du composant */ - GtkBorder border; /* Bordure #1 à considérer */ - GtkBorder padding; /* Bordure #2 à considérer */ - GtkRequisition req; /* Taille requis */ - - *x = 0; - *y = 0; - - dir = gtk_widget_get_direction(widget); - - /* Emplacement du composant */ - - gtk_widget_get_allocation(widget, &alloc); - - if (!gtk_widget_get_has_window(widget)) - { - *x += alloc.x; - *y += alloc.y; - } - - gdk_window_get_root_coords(gtk_widget_get_window(widget), *x, *y, x, y); - - /* Extension supplémentaire */ - - context = gtk_widget_get_style_context(widget); - state = gtk_style_context_get_state(context); - - gtk_style_context_get_border(context, state, &border); - gtk_style_context_get_padding(context, state, &padding); - - if (dir == GTK_TEXT_DIR_RTL) - *x += border.left + padding.left; - else - *x -= (border.left + padding.left); - - *y += border.top + padding.top; - - /* Sens de lecture */ - - if (dir == GTK_TEXT_DIR_RTL) - { - gtk_widget_get_preferred_size(GTK_WIDGET(menu), NULL, &req); - - *x += alloc.width - req.width; - - } - - /* Finalisation... */ - - *y += alloc.height; - - *push = TRUE; - -} - - -/****************************************************************************** -* * * Paramètres : treeview = représentation graphique d'une liste à traiter. * * model = gestionnaire des données de la liste. * * iter = point à considérer pour l'opération. * diff --git a/src/gtkext/easygtk.h b/src/gtkext/easygtk.h index fee45db..f274301 100644 --- a/src/gtkext/easygtk.h +++ b/src/gtkext/easygtk.h @@ -127,9 +127,6 @@ GtkWidget *qck_create_tool_separator(GObject *, const char *); /* Affiche une boîte de dialogue offrant un choix "Oui/Non". */ gint qck_show_question(GtkWindow *, const char *, const char *); -/* Détermine la position d'un menu associé à un composant. */ -void attach_popup_menu_to_widget(GtkMenu *, gint *, gint *, gboolean *, GtkWidget *); - /* Fait défiler une liste jusqu'à un point donné. */ void scroll_to_treeview_iter(GtkTreeView *, GtkTreeModel *, GtkTreeIter *); |