1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef SC_STLSHEET_HXX 29 #define SC_STLSHEET_HXX 30 31 #include <svl/style.hxx> 32 33 //------------------------------------------------------------------------ 34 35 #define SCSTYLEBIT_STANDARD 0x0001 36 37 //------------------------------------------------------------------------ 38 39 class ScStyleSheetPool; 40 41 class ScStyleSheet : public SfxStyleSheet 42 { 43 friend class ScStyleSheetPool; 44 45 public: 46 47 enum Usage 48 { 49 UNKNOWN, 50 USED, 51 NOTUSED 52 }; 53 54 private: 55 mutable ScStyleSheet::Usage eUsage; 56 57 public: 58 TYPEINFO(); 59 60 ScStyleSheet( const ScStyleSheet& rStyle ); 61 62 virtual sal_Bool SetParent ( const String& rParentName ); 63 virtual SfxItemSet& GetItemSet (); 64 virtual sal_Bool IsUsed () const; 65 virtual sal_Bool HasFollowSupport () const; 66 virtual sal_Bool HasParentSupport () const; 67 68 virtual const String& GetName() const; 69 virtual const String& GetParent() const; 70 virtual const String& GetFollow() const; 71 72 virtual sal_Bool SetName( const String& ); 73 74 void SetUsage( ScStyleSheet::Usage eUse ) const 75 { eUsage = eUse; } 76 ScStyleSheet::Usage GetUsage() const 77 { return eUsage; } 78 79 protected: 80 virtual ~ScStyleSheet(); 81 82 ScStyleSheet( const String& rName, 83 ScStyleSheetPool& rPool, 84 SfxStyleFamily eFamily, 85 sal_uInt16 nMask ); 86 87 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ); 88 }; 89 90 #endif // SC_STLSHEET_HXX 91 92