blob: 313240b72b9cb530f4068bd1c00a99aacb5491bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef __GLADE_POPUP_H__
#define __GLADE_POPUP_H__
G_BEGIN_DECLS
void glade_popup_widget_pop (GladeWidget *widget,
GdkEventButton *event,
gboolean packing);
void glade_popup_placeholder_pop (GladePlaceholder *placeholder,
GdkEventButton *event);
void glade_popup_clipboard_pop (GladeWidget *widget,
GdkEventButton *event);
gint glade_popup_action_populate_menu (GtkWidget *menu,
GladeWidget *widget,
GladeWidgetAction *action,
gboolean packing);
G_END_DECLS
#endif /* __GLADE_POPUP_H__ */
|