Changeset 3382 for trunk/jons-gtk2-gui
- Timestamp:
- 03/20/03 01:38:52 (6 years ago)
- Location:
- trunk/jons-gtk2-gui/src
- Files:
-
- 2 modified
-
utilities.cpp (modified) (1 diff)
-
utilities.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jons-gtk2-gui/src/utilities.cpp
r3374 r3382 104 104 return std::string(); 105 105 } 106 107 GtkWidget * 108 hbutton_box_new(int spacing, GtkButtonBoxStyle layout_style) 109 { 110 GtkWidget *h_box = gtk_hbutton_box_new(); 111 gtk_button_box_set_layout(GTK_BUTTON_BOX(h_box), layout_style); 112 gtk_box_set_spacing(GTK_BOX(h_box), spacing); 113 114 return h_box; 115 } -
trunk/jons-gtk2-gui/src/utilities.h
r3374 r3382 19 19 status_change(GtkWidget *statusbar, const char *st_name, const char *newstatus); 20 20 21 GtkWidget * 22 hbutton_box_new(int spacing = 5, 23 GtkButtonBoxStyle layout_style = GTK_BUTTONBOX_END); 21 24 #endif
