ADG: split AdgTableRow and AdgTableCell from AdgTable
[adg.git] / src / adg / adg-table-cell.h
blob072c1fa8686b3f529c6b3e2e8745bf1864fc1c3d
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009,2010,2011 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.h> can be included directly."
23 #endif
26 #ifndef __ADG_TABLE_CELL_H__
27 #define __ADG_TABLE_CELL_H__
30 G_BEGIN_DECLS
32 #define ADG_TYPE_TABLE_CELL (adg_table_cell_get_type())
35 #if 0
36 /* AdgTableCell declared in adg-table.h */
37 typedef struct _AdgTableCell AdgTableCell;
38 #endif
41 GType adg_table_cell_get_type (void) G_GNUC_CONST;
43 AdgTableCell * adg_table_cell_dup (const AdgTableCell *table_cell);
44 AdgTableCell * adg_table_cell_new (AdgTableRow *table_row);
45 AdgTableCell * adg_table_cell_new_before (AdgTableCell *before_cell);
46 AdgTableCell * adg_table_cell_new_with_width (AdgTableRow *table_row,
47 gdouble width);
48 AdgTableCell * adg_table_cell_new_full (AdgTableRow *table_row,
49 gdouble width,
50 const gchar *name,
51 const gchar *title,
52 gboolean has_frame);
53 void adg_table_cell_dispose (AdgTableCell *table_cell);
54 void adg_table_cell_free (AdgTableCell *table_cell);
56 AdgTableRow * adg_table_cell_get_row (AdgTableCell *table_cell);
57 AdgTable * adg_table_cell_get_table (AdgTableCell *table_cell);
58 void adg_table_cell_set_title (AdgTableCell *table_cell,
59 AdgEntity *title);
60 void adg_table_cell_set_text_title (AdgTableCell *table_cell,
61 const gchar *title);
62 AdgEntity * adg_table_cell_title (AdgTableCell *table_cell);
63 void adg_table_cell_set_value (AdgTableCell *table_cell,
64 AdgEntity *value);
65 void adg_table_cell_set_text_value (AdgTableCell *table_cell,
66 const gchar *value);
67 AdgEntity * adg_table_cell_value (AdgTableCell *table_cell);
68 void adg_table_cell_set_value_pos (AdgTableCell *table_cell,
69 const AdgPair *from_factor,
70 const AdgPair *to_factor);
71 void adg_table_cell_set_value_pos_explicit
72 (AdgTableCell *table_cell,
73 gdouble from_x,
74 gdouble from_y,
75 gdouble to_x,
76 gdouble to_y);
77 void adg_table_cell_set_width (AdgTableCell *table_cell,
78 gdouble width);
79 gdouble adg_table_cell_get_width (AdgTableCell *table_cell);
80 void adg_table_cell_switch_frame (AdgTableCell *table_cell,
81 gboolean has_frame);
82 gboolean adg_table_cell_has_frame (AdgTableCell *table_cell);
83 const CpmlExtents *
84 adg_table_cell_get_extents (AdgTableCell *table_cell);
85 const AdgPair * adg_table_cell_size_request (AdgTableCell *table_cell,
86 const CpmlExtents *row_extents);
87 const CpmlExtents *
88 adg_table_cell_arrange (AdgTableCell *table_cell,
89 const CpmlExtents *layout);
91 G_END_DECLS
94 #endif /* __ADG_TABLE_CELL_H__ */