/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
/*
* This file is part of The Croco Library
*
* 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
*
* see COPYRIGHTS file for copyright information.
*/
#ifndef __CR_STYLESHEET_H__
#define __CR_STYLESHEET_H__
#include "cr-utils.h"
#include "cr-statement.h"
/**
*@file
*The declaration of the #CRStyleSheet class.
*/
enum CRStyleOrigin
{
/*Please don't change the order of
*the values enumerated here ...
*New values should be added at the end,
*just before ORIGIN_END.
*/
ORIGIN_UA = 0,
/*must always be the last one*/
} ;
/**
*An abstraction of a css stylesheet as defined
*by the css2 spec in chapter 4.
*/
struct _CRStyleSheet
{
/**The css statements list*/
/*the parent import rule, if any.*/
/**custom data used by libcroco*/
/**
*custom application data pointer
*Can be used by applications.
*/
/**
*the reference count of this insance
*Please, don't never ever modify it
*directly. Use cr_stylesheet_ref()
*and cr_stylesheet_unref() instead.
*/
} ;
#endif /*__CR_STYLESHEET_H__*/