![Federico Mena Quintero](/assets/img/avatar_default.png)
This is all of the original libcroco, minus these two which we don't use: - cr-sel-eng - the CSS selection engine for xmlNode. - cr-style. Part of https://gitlab.gnome.org/GNOME/gnome-shell/issues/1934
99 lines
2.9 KiB
C
99 lines
2.9 KiB
C
/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
|
|
|
|
/*
|
|
* This file is part of The Croco Library
|
|
*
|
|
* 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
|
|
*
|
|
* Author: Dodji Seketeli
|
|
* See the COPYRIGHTS file for copyright information.
|
|
*/
|
|
|
|
|
|
#ifndef __CR_ADD_SEL_H__
|
|
#define __CR_ADD_SEL_H__
|
|
|
|
#include <stdio.h>
|
|
#include <glib.h>
|
|
#include "cr-utils.h"
|
|
#include "cr-attr-sel.h"
|
|
#include "cr-pseudo.h"
|
|
#include "cr-additional-sel.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
enum AddSelectorType
|
|
{
|
|
NO_ADD_SELECTOR = 0 ,
|
|
CLASS_ADD_SELECTOR = 1 ,
|
|
PSEUDO_CLASS_ADD_SELECTOR = 1 << 1,
|
|
ID_ADD_SELECTOR = 1 << 3,
|
|
ATTRIBUTE_ADD_SELECTOR = 1 << 4
|
|
} ;
|
|
|
|
union CRAdditionalSelectorContent
|
|
{
|
|
CRString *class_name ;
|
|
CRString *id_name ;
|
|
CRPseudo *pseudo ;
|
|
CRAttrSel *attr_sel ;
|
|
} ;
|
|
|
|
typedef struct _CRAdditionalSel CRAdditionalSel ;
|
|
|
|
struct _CRAdditionalSel
|
|
{
|
|
enum AddSelectorType type ;
|
|
union CRAdditionalSelectorContent content ;
|
|
|
|
CRAdditionalSel * next ;
|
|
CRAdditionalSel * prev ;
|
|
CRParsingLocation location ;
|
|
} ;
|
|
|
|
CRAdditionalSel * cr_additional_sel_new (void) ;
|
|
|
|
CRAdditionalSel * cr_additional_sel_new_with_type (enum AddSelectorType a_sel_type) ;
|
|
|
|
CRAdditionalSel * cr_additional_sel_append (CRAdditionalSel *a_this,
|
|
CRAdditionalSel *a_sel) ;
|
|
|
|
void cr_additional_sel_set_class_name (CRAdditionalSel *a_this,
|
|
CRString *a_class_name) ;
|
|
|
|
void cr_additional_sel_set_id_name (CRAdditionalSel *a_this,
|
|
CRString *a_id) ;
|
|
|
|
void cr_additional_sel_set_pseudo (CRAdditionalSel *a_this,
|
|
CRPseudo *a_pseudo) ;
|
|
|
|
void cr_additional_sel_set_attr_sel (CRAdditionalSel *a_this,
|
|
CRAttrSel *a_sel) ;
|
|
|
|
CRAdditionalSel * cr_additional_sel_prepend (CRAdditionalSel *a_this,
|
|
CRAdditionalSel *a_sel) ;
|
|
|
|
guchar * cr_additional_sel_to_string (CRAdditionalSel const *a_this) ;
|
|
|
|
guchar * cr_additional_sel_one_to_string (CRAdditionalSel const *a_this) ;
|
|
|
|
void cr_additional_sel_dump (CRAdditionalSel const *a_this, FILE *a_fp) ;
|
|
|
|
void cr_additional_sel_destroy (CRAdditionalSel *a_this) ;
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /*__CR_ADD_SEL_H*/
|