Changeset 3342 for trunk/jons-gtk2-gui

Show
Ignore:
Timestamp:
03/11/03 06:45:16 (6 years ago)
Author:
bostjanlah
Message:

menu_item_new has a new parameter - sensitive (Matias Aguirre)
menu_item_new_with_pixmap has a new parameter - gpointer data (will be passed to the signal func) (Matias Aguirre)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jons-gtk2-gui/src/licq_gtk.h

    r3324 r3342  
    119119 
    120120/* Functions in menu.cpp */ 
    121 GtkWidget *menu_new_item(GtkWidget *, const char *, GtkSignalFunc); 
     121GtkWidget *menu_new_item(GtkWidget *, const char *, GtkSignalFunc,  
     122        bool sensitive = true); 
    122123GtkWidget *menu_new_item_with_pixmap(GtkWidget *, const char *, 
    123         GtkSignalFunc, GdkPixbuf *); 
     124        GtkSignalFunc, GdkPixbuf *, gpointer data = NULL); 
    124125void menu_create(); 
     126void menu_separator(GtkWidget *_menu); 
    125127 
    126128/* Functions in option_window.cpp */