GTK+ Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
#include <gtk/gtk.h> struct GtkHandleBox; GtkWidget* gtk_handle_box_new (void); void gtk_handle_box_set_shadow_type (GtkHandleBox *handle_box, GtkShadowType type); void gtk_handle_box_set_handle_position (GtkHandleBox *handle_box, GtkPositionType position); void gtk_handle_box_set_snap_edge (GtkHandleBox *handle_box, GtkPositionType edge); |
"child-attached" void user_function (GtkHandleBox *handlebox, GtkWidget *widget, gpointer user_data); "child-detached" void user_function (GtkHandleBox *handlebox, GtkWidget *widget, gpointer user_data); |
void gtk_handle_box_set_shadow_type (GtkHandleBox *handle_box, GtkShadowType type); |
handle_box : | |
type : |
void gtk_handle_box_set_handle_position (GtkHandleBox *handle_box, GtkPositionType position); |
handle_box : | |
position : |
void gtk_handle_box_set_snap_edge (GtkHandleBox *handle_box, GtkPositionType edge); |
handle_box : | |
edge : |
void user_function (GtkHandleBox *handlebox, GtkWidget *widget, gpointer user_data); |
handlebox : | the object which received the signal. |
widget : | |
user_data : | user data set when the signal handler was connected. |
void user_function (GtkHandleBox *handlebox, GtkWidget *widget, gpointer user_data); |
handlebox : | the object which received the signal. |
widget : | |
user_data : | user data set when the signal handler was connected. |