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 #ifndef _ISTYLEACCESS_HXX 24 #define _ISTYLEACCESS_HXX 25 26 #include <vector> 27 #include <svl/stylepool.hxx> 28 29 /*-------------------------------------------------------------------- 30 Management of (automatic) styles 31 --------------------------------------------------------------------*/ 32 33 class SwStyleHandle; 34 35 class IStyleAccess 36 { 37 public: 38 39 enum SwAutoStyleFamily 40 { 41 AUTO_STYLE_CHAR, 42 AUTO_STYLE_RUBY, 43 AUTO_STYLE_PARA, 44 AUTO_STYLE_NOTXT 45 }; 46 ~IStyleAccess()47 virtual ~IStyleAccess() {} 48 49 virtual StylePool::SfxItemSet_Pointer_t getAutomaticStyle( const SfxItemSet& rSet, 50 SwAutoStyleFamily eFamily ) = 0; 51 virtual void getAllStyles( std::vector<StylePool::SfxItemSet_Pointer_t> &rStyles, 52 SwAutoStyleFamily eFamily ) = 0; 53 // It's slow to iterate through a stylepool looking for a special name, but if 54 // the style has been inserted via "cacheAutomaticStyle" instead of "getAutomaticStyle", 55 // it's faster 56 virtual StylePool::SfxItemSet_Pointer_t getByName( const rtl::OUString& rName, 57 SwAutoStyleFamily eFamily ) = 0; 58 // insert the style to the pool and the cache (used during import) 59 virtual StylePool::SfxItemSet_Pointer_t cacheAutomaticStyle( const SfxItemSet& rSet, 60 SwAutoStyleFamily eFamily ) = 0; 61 // To release the cached styles (shared_pointer!) 62 virtual void clearCaches() = 0; 63 }; 64 65 #endif // _ISTYLEACCESS_HXX 66