From a24407ea83d00b4f9f0c4f491c58e9c751088968 Mon Sep 17 00:00:00 2001 From: Alan Fitton Date: Mon, 27 Aug 2012 12:28:20 +0100 Subject: a details tab similar to transmission --- src/hig.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/hig.h') diff --git a/src/hig.h b/src/hig.h index 63a6b76..c2b006b 100644 --- a/src/hig.h +++ b/src/hig.h @@ -22,54 +22,54 @@ GtkWidget *hig_workarea_create(void); -void hig_workarea_add_section_divider(GtkWidget * table, int *row); +void hig_workarea_add_section_divider(GtkWidget * table, guint *row); void hig_workarea_add_section_title_widget(GtkWidget * t, - int *row, GtkWidget * w); + guint *row, GtkWidget * w); void hig_workarea_add_section_title(GtkWidget * table, - int *row, const char *section_title); + guint *row, const char *section_title); void hig_workarea_add_wide_tall_control(GtkWidget * table, - int *row, GtkWidget * w); + guint *row, GtkWidget * w); void hig_workarea_add_wide_control(GtkWidget * table, - int *row, GtkWidget * w); + guint *row, GtkWidget * w); GtkWidget *hig_workarea_add_wide_checkbutton(GtkWidget * table, - int *row, + guint *row, const char *mnemonic_string, gboolean is_active); GtkWidget *hig_workarea_add_label(GtkWidget * table, - int row, const char *mnemonic_string); + guint row, const char *mnemonic_string); void hig_workarea_add_label_w(GtkWidget * table, - int row, GtkWidget * label_widget); + guint row, GtkWidget * label_widget); void hig_workarea_add_control(GtkWidget * table, - int row, GtkWidget * control); + guint row, GtkWidget * control); GtkWidget *hig_workarea_add_tall_row(GtkWidget * table, - int *row, + guint *row, const char *mnemonic_string, GtkWidget * control, GtkWidget * mnemonic_or_null_for_control); GtkWidget *hig_workarea_add_row(GtkWidget * table, - int *row, + guint *row, const char *mnemonic_string, GtkWidget * control, GtkWidget * mnemonic_or_null_for_control); void hig_workarea_add_row_w(GtkWidget * table, - int *row, + guint *row, GtkWidget * label, GtkWidget * control, GtkWidget * mnemonic_or_null_for_control); -void hig_workarea_finish(GtkWidget * table, int *row); +void hig_workarea_finish(GtkWidget * table, guint *row); void hig_message_dialog_set_text(GtkMessageDialog * dialog, const char *primary, -- cgit v1.2.3