/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* This file is part of the KDE libraries * Copyright (C) 1997 Martin Jones (mjones@kde.org) * (C) 1997 Torben Weis (weis@kde.org) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef _HTMLTABLE_H_ #define _HTMLTABLE_H_ #include "htmlobject.h" #define HTML_TABLE(x) ((HTMLTable *)(x)) #define HTML_TABLE_CLASS(x) ((HTMLTableClass *)(x)) #define HTML_IS_TABLE(x) (HTML_CHECK_TYPE ((x), HTML_TYPE_TABLE)) struct _HTMLTable { HTMLObject object; gint specified_width; HTMLTableCell ***cells; gint col, totalCols; gint row, totalRows, allocRows; gint spacing; gint padding; gint border; gint max_height; HTMLClueV *caption; HTMLVAlignType capAlign; GArray *columnMin; GArray *columnPref; GArray *columnFixed; GArray *columnOpt; GArray *rowHeights; GdkColor *bgColor; HTMLImagePointer *bgPixmap; }; struct _HTMLTableClass { HTMLObjectClass object_class; }; void html_table_type_init (void); void html_table_class_init (HTMLTableClass *klass, HTMLType type, guint object_size); void html_table_init (HTMLTable *table, HTMLTableClass *klass, gint width, gint percent, gint padding, gint spacing, gint border); HTMLObject *html_table_new (gint width, gint percent, gint padding, gint spacing, gint border); void html_table_end_row (HTMLTable *table); void html_table_start_row (HTMLTable *table); void html_table_add_cell (HTMLTable *table, HTMLTableCell *cell); void html_table_set_cell (HTMLTable *table, gint r, gint c, HTMLTableCell *cell); void html_table_remove_cell (HTMLTable *table, HTMLTableCell *cell); gint html_table_end_table (HTMLTable *table); #endif /* _HTMLTABLE_H_ */