doc: update copyright line for 2021
[adg.git] / src / adg / adg-table-row.h
blobb2efe5271a228bf21939cc11f9ffdc6c59988e94
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007-2021 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_ROW_H__
27 #define __ADG_TABLE_ROW_H__
30 G_BEGIN_DECLS
32 #define ADG_TYPE_TABLE_ROW (adg_table_row_get_type())
35 GType adg_table_row_get_type (void);
37 AdgTableRow * adg_table_row_dup (const AdgTableRow *src);
38 AdgTableRow * adg_table_row_new (AdgTable *table);
39 AdgTableRow * adg_table_row_new_before (AdgTableRow *before_row);
40 void adg_table_row_free (AdgTableRow *table_row);
41 void adg_table_row_insert (AdgTableRow *table_row,
42 AdgTableCell *table_cell,
43 AdgTableCell *before_cell);
44 void adg_table_row_remove (AdgTableRow *table_row,
45 AdgTableCell *table_cell);
46 void adg_table_row_foreach (AdgTableRow *table_row,
47 GCallback callback,
48 gpointer user_data);
49 AdgTable * adg_table_row_get_table (AdgTableRow *table_row);
50 void adg_table_row_set_height (AdgTableRow *table_row,
51 gdouble height);
52 gdouble adg_table_row_get_height (AdgTableRow *table_row);
53 const CpmlExtents *
54 adg_table_row_get_extents (AdgTableRow *table_row);
55 const CpmlPair *adg_table_row_size_request (AdgTableRow *table_row);
56 const CpmlExtents *
57 adg_table_row_arrange (AdgTableRow *table_row,
58 const CpmlExtents *layout);
60 G_END_DECLS
63 #endif /* __ADG_TABLE_ROW_H__ */