GtkItem

Name

GtkItem —

Synopsis


#include <gtk/gtk.h>


struct      GtkItem;
void        gtk_item_select                 (GtkItem *item);
void        gtk_item_deselect               (GtkItem *item);
void        gtk_item_toggle                 (GtkItem *item);

Object Hierarchy


  GtkObject
   +----GtkWidget
         +----GtkContainer
               +----GtkBin
                     +----GtkItem

Signal Prototypes


"select"    void        user_function      (GtkItem *item,
                                            gpointer user_data);
"deselect"  void        user_function      (GtkItem *item,
                                            gpointer user_data);
"toggle"    void        user_function      (GtkItem *item,
                                            gpointer user_data);

Description

Details

struct GtkItem

struct GtkItem;


gtk_item_select ()

void        gtk_item_select                 (GtkItem *item);

item : 


gtk_item_deselect ()

void        gtk_item_deselect               (GtkItem *item);

item : 


gtk_item_toggle ()

void        gtk_item_toggle                 (GtkItem *item);

item : 

Signals

The "select" signal

void        user_function                  (GtkItem *item,
                                            gpointer user_data);

item :the object which received the signal.
user_data :user data set when the signal handler was connected.


The "deselect" signal

void        user_function                  (GtkItem *item,
                                            gpointer user_data);

item :the object which received the signal.
user_data :user data set when the signal handler was connected.


The "toggle" signal

void        user_function                  (GtkItem *item,
                                            gpointer user_data);

item :the object which received the signal.
user_data :user data set when the signal handler was connected.