summaryrefslogtreecommitdiff
path: root/src/layeng/cr-lay-eng.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/layeng/cr-lay-eng.h')
-rw-r--r--src/layeng/cr-lay-eng.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/src/layeng/cr-lay-eng.h b/src/layeng/cr-lay-eng.h
deleted file mode 100644
index a77c0b7..0000000
--- a/src/layeng/cr-lay-eng.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
-
-/*
- * This file is part of The Croco Library
- *
- * Copyright (C) 2002-2003 Dodji Seketeli <dodji@seketeli.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2.1 of the
- * GNU Lesser General Public
- * License as published by the Free Software Foundation.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the
- * GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- * USA
- */
-
-#ifndef __CR_LAY_ENG_H__
-#define __CR_LAY_ENG_H__
-
-#include <libxml/tree.h>
-#include <pango/pango.h>
-#include "cr-utils.h"
-#include "cr-cascade.h"
-#include "cr-box.h"
-
-/**
- *@file
- *the declaration of the #CRLayEng class.
- */
-
-G_BEGIN_DECLS
-
-typedef struct _CRLayEngPriv CRLayEngPriv ;
-
-/**
- *The abstraction of the Layout engine of libcroco.
- */
-typedef struct
-{
- CRLayEngPriv *priv ;
-} CRLayEng ;
-
-
-
-void
-cr_lay_eng_init (glong a_argc, gchar ** a_argv) ;
-
-CRLayEng *
-cr_lay_eng_new (GtkLayout *a_layout) ;
-
-enum CRStatus
-cr_lay_eng_create_box_model (CRLayEng *a_this,
- xmlDoc *a_xml_doc,
- CRCascade *a_cascade,
- CRBoxModel **a_box_model) ;
-
-enum CRStatus
-cr_lay_eng_layout_box_tree (CRLayEng *a_this,
- CRBox *a_box_tree) ;
-
-enum CRStatus
-cr_lay_eng_style_to_pango_font_attribute (CRStyle *a_style,
- PangoAttrList *a_pgo_attrs,
- gulong a_text_len) ;
-void
-cr_lay_eng_destroy (CRLayEng *a_this) ;
-
-G_END_DECLS
-
-#endif /*__CR_LAYOUT_ENG_H__*/