~mitya57/ubuntu/precise/nautilus/desktop-window-fixes

« back to all changes in this revision

Viewing changes to eel/eel-wrap-table.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2009-09-23 20:11:11 UTC
  • mto: (1.2.5 upstream) (2.4.1 sid)
  • mto: This revision was merged to the branch mainline in revision 138.
  • Revision ID: james.westby@ubuntu.com-20090923201111-r4e2b6x5biik0ldh
Tags: upstream-2.28.0
ImportĀ upstreamĀ versionĀ 2.28.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
G_BEGIN_DECLS
32
32
 
33
 
#define EEL_TYPE_WRAP_TABLE            (eel_wrap_table_get_type ())
34
 
#define EEL_WRAP_TABLE(obj)            (GTK_CHECK_CAST ((obj), EEL_TYPE_WRAP_TABLE, EelWrapTable))
35
 
#define EEL_WRAP_TABLE_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), EEL_TYPE_WRAP_TABLE, EelWrapTableClass))
36
 
#define EEL_IS_WRAP_TABLE(obj)         (GTK_CHECK_TYPE ((obj), EEL_TYPE_WRAP_TABLE))
37
 
#define EEL_IS_WRAP_TABLE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), EEL_TYPE_WRAP_TABLE))
 
33
#define EEL_TYPE_WRAP_TABLE eel_wrap_table_get_type()
 
34
#define EEL_WRAP_TABLE(obj) \
 
35
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), EEL_TYPE_WRAP_TABLE, EelWrapTable))
 
36
#define EEL_WRAP_TABLE_CLASS(klass) \
 
37
  (G_TYPE_CHECK_CLASS_CAST ((klass), EEL_TYPE_WRAP_TABLE, EelWrapTableClass))
 
38
#define EEL_IS_WRAP_TABLE(obj) \
 
39
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EEL_TYPE_WRAP_TABLE))
 
40
#define EEL_IS_WRAP_TABLE_CLASS(klass) \
 
41
  (G_TYPE_CHECK_CLASS_TYPE ((klass), EEL_TYPE_WRAP_TABLE))
 
42
#define EEL_WRAP_TABLE_GET_CLASS(obj) \
 
43
  (G_TYPE_INSTANCE_GET_CLASS ((obj), EEL_TYPE_WRAP_TABLE, EelWrapTableClass))
38
44
 
39
45
typedef struct EelWrapTable            EelWrapTable;
40
46
typedef struct EelWrapTableClass       EelWrapTableClass;
62
68
} EelJustification;
63
69
 
64
70
/* Public GtkWrapTable methods */
65
 
GtkType          eel_wrap_table_get_type                  (void);
 
71
GType            eel_wrap_table_get_type                  (void);
66
72
GtkWidget *      eel_wrap_table_new                       (gboolean            homogeneous);
67
73
void             eel_wrap_table_set_x_spacing             (EelWrapTable       *wrap_table,
68
74
                                                           guint               x_spacing);