Diff of /trunk/src/misc.h

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

revision 316 by harbaum, Wed Dec 16 20:07:58 2009 UTC revision 317 by harbaum, Thu Dec 17 16:54:18 2009 UTC
# Line 69  void misc_table_attach(GtkWidget *table, Line 69  void misc_table_attach(GtkWidget *table,
69    
70  /* unified widgets */  /* unified widgets */
71  GtkWidget *entry_new(void);  GtkWidget *entry_new(void);
72    GType entry_type(void);
73    
74  GtkWidget *button_new(void);  GtkWidget *button_new(void);
75  GtkWidget *button_new_with_label(char *label);  GtkWidget *button_new_with_label(char *label);
# Line 76  GtkWidget *button_new_with_label(char *l Line 77  GtkWidget *button_new_with_label(char *l
77  GtkWidget *check_button_new_with_label(char *label);  GtkWidget *check_button_new_with_label(char *label);
78  void check_button_set_active(GtkWidget *button, gboolean active);  void check_button_set_active(GtkWidget *button, gboolean active);
79  gboolean check_button_get_active(GtkWidget *button);  gboolean check_button_get_active(GtkWidget *button);
80    GType check_button_type(void);
81    
82  GtkWidget *notebook_new(void);  GtkWidget *notebook_new(void);
83  void notebook_append_page(GtkWidget *notebook,  void notebook_append_page(GtkWidget *notebook,
84                            GtkWidget *page, char *label);                            GtkWidget *page, char *label);
85  GtkWidget *notebook_get_gtk_notebook(GtkWidget *notebook);  GtkWidget *notebook_get_gtk_notebook(GtkWidget *notebook);
86    
87    GtkWidget *combo_box_new(char *title);
88    GtkWidget *combo_box_entry_new(char *title);
89    void combo_box_append_text(GtkWidget *cbox, char *text);
90    void combo_box_set_active(GtkWidget *cbox, int index);
91    int combo_box_get_active(GtkWidget *cbox);
92    const char *combo_box_get_active_text(GtkWidget *cbox);
93    GType combo_box_type(void);
94    
95    void misc_init(void);
96    
97  #endif // MISC_H  #endif // MISC_H

Legend:
Removed from v.316  
changed lines
  Added in v.317