sbutton

sbutton

Synopsis




#define             SBUTTON                             (x)
                    SButton;
SButton*            create_sbutton                      (GList **wlist,
                                                         GdkPixmap *parent,
                                                         GdkGC *gc,
                                                         gint x,
                                                         gint y,
                                                         gint w,
                                                         gint h,
                                                         void (*cb) (void));
void                free_sbutton                        (SButton *b);

Description

Details

SBUTTON()

#define SBUTTON(x)  ((SButton *)(x))

x :


SButton

typedef struct {
    Widget sb_widget;
    gint sb_pressed, sb_inside;
    void (*sb_push_cb) (void);
} SButton;


create_sbutton ()

SButton*            create_sbutton                      (GList **wlist,
                                                         GdkPixmap *parent,
                                                         GdkGC *gc,
                                                         gint x,
                                                         gint y,
                                                         gint w,
                                                         gint h,
                                                         void (*cb) (void));

wlist :

parent :

gc :

x :

y :

w :

h :

cb :

Returns :


free_sbutton ()

void                free_sbutton                        (SButton *b);

b :