Diff of /trunk/src/misc.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 232 by harbaum, Mon Dec 7 16:14:50 2009 UTC revision 233 by harbaum, Wed Dec 9 19:45:36 2009 UTC
# Line 115  gboolean pos_valid(pos_t *pos); Line 115  gboolean pos_valid(pos_t *pos);
115    
116  void misc_init(void);  void misc_init(void);
117    
118    GtkWidget *toggle_button_new_with_label(char *label);
119    void toggle_button_set_active(GtkWidget *button, gboolean active);
120    gboolean toggle_button_get_active(GtkWidget *button);
121    
122    GtkWidget *check_button_new_with_label(char *label);
123    void check_button_set_active(GtkWidget *button, gboolean active);
124    gboolean check_button_get_active(GtkWidget *button);
125    
126    GtkWidget *button_new(void);
127    GtkWidget *button_new_with_label(char *label);
128    
129    GtkWidget *export_file(char *sel_title, char **filename);
130    
131  #endif // MISC_H  #endif // MISC_H

Legend:
Removed from v.232  
changed lines
  Added in v.233