summaryrefslogtreecommitdiff
path: root/src/hig.h
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2012-08-27 12:28:20 +0100
committerGravatar Alan Fitton <ajf@eth0.org.uk>2012-08-27 12:28:20 +0100
commita24407ea83d00b4f9f0c4f491c58e9c751088968 (patch)
treea2c2a7600d9eec69a7b3f9d44107321b75df9ce4 /src/hig.h
parent8ba9cdd592fdc47771c9b3bd8491db9d4510b5e7 (diff)
a details tab similar to transmission
Diffstat (limited to 'src/hig.h')
-rw-r--r--src/hig.h26
1 files changed, 13 insertions, 13 deletions
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,