[AdgFontStyle] Returning AdgFontStyle * from constructors
[adg.git] / adg / adg-table.h
blob89da4d1ce8c975e3328cbecf9cba418eb2504d8c
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010 Nicola Fontana <ntd at entidi.it>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #if !defined(__ADG_H__)
22 #error "Only <adg/adg.h> can be included directly."
23 #endif
26 #ifndef __ADG_TABLE_H__
27 #define __ADG_TABLE_H__
29 #include <adg/adg-entity.h>
30 #include <adg/adg-pair.h>
33 G_BEGIN_DECLS
35 #define ADG_TYPE_TABLE (adg_table_get_type())
36 #define ADG_TABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), ADG_TYPE_TABLE, AdgTable))
37 #define ADG_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), ADG_TYPE_TABLE, AdgTableClass))
38 #define ADG_IS_TABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), ADG_TYPE_TABLE))
39 #define ADG_IS_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), ADG_TYPE_TABLE))
40 #define ADG_TABLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ADG_TYPE_TABLE, AdgTableClass))
42 typedef struct _AdgTableCell AdgTableCell;
43 typedef struct _AdgTableRow AdgTableRow;
44 typedef struct _AdgTable AdgTable;
45 typedef struct _AdgTableClass AdgTableClass;
47 struct _AdgTable {
48 /*< private >*/
49 AdgEntity parent;
50 gpointer data;
53 struct _AdgTableClass {
54 /*< private >*/
55 AdgEntityClass parent_class;
59 GType adg_table_get_type (void) G_GNUC_CONST;
61 AdgTable * adg_table_new (void);
63 void adg_table_set_table_dress (AdgTable *table,
64 AdgDress dress);
65 AdgDress adg_table_get_table_dress (AdgTable *table);
66 void adg_table_switch_frame (AdgTable *table,
67 gboolean new_state);
68 gboolean adg_table_has_frame (AdgTable *table);
69 guint adg_table_get_n_rows (AdgTable *table);
71 AdgTableRow * adg_table_row_new (AdgTable *table);
72 AdgTableRow * adg_table_row_new_before (AdgTableRow *row);
73 void adg_table_row_delete (AdgTableRow *row);
74 guint adg_table_row_get_n_cells (const AdgTableRow *row);
75 void adg_table_row_set_height (AdgTableRow *row,
76 gdouble height);
77 gdouble adg_table_row_get_height (AdgTableRow *row);
78 const CpmlExtents *
79 adg_table_row_get_extents (AdgTableRow *row);
81 AdgTableCell * adg_table_cell_new (AdgTableRow *row,
82 gdouble width);
83 AdgTableCell * adg_table_cell_new_before (AdgTableCell *cell,
84 gdouble width);
85 AdgTableCell * adg_table_cell_new_full (AdgTableRow *row,
86 gdouble width,
87 const gchar *name,
88 const gchar *title,
89 const gchar *value);
90 AdgTableCell * adg_table_cell (AdgTable *table,
91 const gchar *name);
92 void adg_table_cell_delete (AdgTableCell *cell);
93 void adg_table_cell_set_name (AdgTableCell *cell,
94 const gchar *name);
95 const gchar * adg_table_cell_get_name (AdgTableCell *cell);
96 void adg_table_cell_set_title (AdgTableCell *cell,
97 AdgEntity *title);
98 void adg_table_cell_set_text_title (AdgTableCell *cell,
99 const gchar *title);
100 AdgEntity * adg_table_cell_title (AdgTableCell *cell);
101 void adg_table_cell_set_value (AdgTableCell *cell,
102 AdgEntity *value);
103 void adg_table_cell_set_text_value (AdgTableCell *cell,
104 const gchar *value);
105 AdgEntity * adg_table_cell_value (AdgTableCell *cell);
106 void adg_table_cell_set_value_pos (AdgTableCell *cell,
107 const AdgPair *from_factor,
108 const AdgPair *to_factor);
109 void adg_table_cell_set_width (AdgTableCell *cell,
110 gdouble width);
111 gdouble adg_table_cell_get_width (AdgTableCell *cell);
112 void adg_table_cell_switch_frame (AdgTableCell *cell,
113 gboolean new_state);
114 gboolean adg_table_cell_has_frame (AdgTableCell *cell);
115 const CpmlExtents *
116 adg_table_cell_get_extents (AdgTableCell *cell);
118 G_END_DECLS
121 #endif /* __ADG_TABLE_H__ */