sl@0: /* Copyright (c) 2009 The Khronos Group Inc. sl@0: * Portions copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies) sl@0: * sl@0: * Permission is hereby granted, free of charge, to any person obtaining a sl@0: * copy of this software and/or associated documentation files (the sl@0: * "Materials"), to deal in the Materials without restriction, including sl@0: * without limitation the rights to use, copy, modify, merge, publish, sl@0: * distribute, sublicense, and/or sell copies of the Materials, and to sl@0: * permit persons to whom the Materials are furnished to do so, subject to sl@0: * the following conditions: sl@0: * sl@0: * The above copyright notice and this permission notice shall be included sl@0: * in all copies or substantial portions of the Materials. sl@0: * sl@0: * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, sl@0: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF sl@0: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. sl@0: * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY sl@0: * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, sl@0: * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE sl@0: * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. sl@0: */ sl@0: /*! \ingroup wfc sl@0: * \file wfcelement.h sl@0: * sl@0: * \brief Element handling interface sl@0: */ sl@0: #ifndef WFCELEMENT_H_ sl@0: #define WFCELEMENT_H_ sl@0: sl@0: #include "WF/wfc.h" sl@0: #include "wfcstructs.h" sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" sl@0: { sl@0: #endif sl@0: sl@0: /*! sl@0: * \brief Create new element into context sl@0: * sl@0: * \param context Context into which to create the element sl@0: * sl@0: * \return New element object or NULL sl@0: */ sl@0: OWF_API_CALL WFC_ELEMENT* sl@0: WFC_Element_Create(WFC_CONTEXT* context); sl@0: sl@0: OWF_API_CALL WFC_ELEMENT* sl@0: WFC_Element_Clone(WFC_ELEMENT* element); sl@0: sl@0: OWF_API_CALL void sl@0: WFC_Element_Destroy(WFC_ELEMENT* element); sl@0: sl@0: OWF_API_CALL WFCErrorCode sl@0: WFC_Element_SetAttribiv(WFC_ELEMENT* element, sl@0: WFCElementAttrib attrib, sl@0: WFCint count, sl@0: const WFCint* values); sl@0: sl@0: OWF_API_CALL WFCErrorCode sl@0: WFC_Element_SetAttribfv(WFC_ELEMENT* element, sl@0: WFCElementAttrib attrib, sl@0: WFCint count, sl@0: const WFCfloat* values); sl@0: sl@0: OWF_API_CALL WFCErrorCode sl@0: WFC_Element_GetAttribiv(WFC_ELEMENT* element, sl@0: WFCElementAttrib attrib, sl@0: WFCint count, sl@0: WFCint* values); sl@0: sl@0: OWF_API_CALL WFCErrorCode sl@0: WFC_Element_GetAttribfv(WFC_ELEMENT* element, sl@0: WFCElementAttrib attrib, sl@0: WFCint count, sl@0: WFCfloat* values); sl@0: sl@0: OWF_API_CALL WFCboolean sl@0: WFC_Element_HasConflicts(WFC_ELEMENT* element); sl@0: sl@0: /** Returns False if attribute values "will not affect composition results" in API doc **/ sl@0: OWF_API_CALL WFCboolean sl@0: WFC_Element_AffectsCompositionResults(WFC_ELEMENT* element); sl@0: sl@0: OWF_API_CALL void sl@0: WFC_Element_Commit(WFC_ELEMENT* element); sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif sl@0: sl@0: #endif /*WFCELEMENT_H_*/