Diff of /trunk/src/misc.h

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

revision 314 by harbaum, Thu Jul 30 07:57:48 2009 UTC revision 315 by harbaum, Wed Dec 16 20:07:58 2009 UTC
# Line 66  GtkWidget *misc_scrolled_window_new(gboo Line 66  GtkWidget *misc_scrolled_window_new(gboo
66  void misc_scrolled_window_add_with_viewport(GtkWidget *win, GtkWidget *child);  void misc_scrolled_window_add_with_viewport(GtkWidget *win, GtkWidget *child);
67  const char *misc_get_proxy_uri(settings_t *settings);  const char *misc_get_proxy_uri(settings_t *settings);
68  void misc_table_attach(GtkWidget *table, GtkWidget *widget, int x, int y);  void misc_table_attach(GtkWidget *table, GtkWidget *widget, int x, int y);
69    
70    /* unified widgets */
71    GtkWidget *entry_new(void);
72    
73    GtkWidget *button_new(void);
74    GtkWidget *button_new_with_label(char *label);
75    
76    GtkWidget *check_button_new_with_label(char *label);
77    void check_button_set_active(GtkWidget *button, gboolean active);
78    gboolean check_button_get_active(GtkWidget *button);
79    
80    GtkWidget *notebook_new(void);
81    void notebook_append_page(GtkWidget *notebook,
82                              GtkWidget *page, char *label);
83    GtkWidget *notebook_get_gtk_notebook(GtkWidget *notebook);
84    
85  #endif // MISC_H  #endif // MISC_H

Legend:
Removed from v.314  
changed lines
  Added in v.315