1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef __ATK_ATKTEXTATTRIBUTES_HXX__ 25 #define __ATK_ATKTEXTATTRIBUTES_HXX__ 26 27 #include <com/sun/star/uno/Sequence.hxx> 28 #include <com/sun/star/beans/PropertyValue.hpp> 29 30 #include <atk/atk.h> 31 32 AtkAttributeSet* 33 attribute_set_new_from_property_values( 34 const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rAttributeList, 35 bool run_attributes_only, 36 AtkText *text); 37 38 bool 39 attribute_set_map_to_property_values( 40 AtkAttributeSet* attribute_set, 41 com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rValueList ); 42 43 AtkAttributeSet* attribute_set_prepend_misspelled( AtkAttributeSet* attribute_set ); 44 // --> OD 2010-03-01 #i92232# 45 AtkAttributeSet* attribute_set_prepend_tracked_change_insertion( AtkAttributeSet* attribute_set ); 46 AtkAttributeSet* attribute_set_prepend_tracked_change_deletion( AtkAttributeSet* attribute_set ); 47 AtkAttributeSet* attribute_set_prepend_tracked_change_formatchange( AtkAttributeSet* attribute_set ); 48 // <-- 49 50 #endif 51