13334a7e6SAndrew Rist /************************************************************** 2*adac7096Smseidel * 33334a7e6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 43334a7e6SAndrew Rist * or more contributor license agreements. See the NOTICE file 53334a7e6SAndrew Rist * distributed with this work for additional information 63334a7e6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 73334a7e6SAndrew Rist * to you under the Apache License, Version 2.0 (the 83334a7e6SAndrew Rist * "License"); you may not use this file except in compliance 93334a7e6SAndrew Rist * with the License. You may obtain a copy of the License at 10*adac7096Smseidel * 113334a7e6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*adac7096Smseidel * 133334a7e6SAndrew Rist * Unless required by applicable law or agreed to in writing, 143334a7e6SAndrew Rist * software distributed under the License is distributed on an 153334a7e6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 163334a7e6SAndrew Rist * KIND, either express or implied. See the License for the 173334a7e6SAndrew Rist * specific language governing permissions and limitations 183334a7e6SAndrew Rist * under the License. 19*adac7096Smseidel * 203334a7e6SAndrew Rist *************************************************************/ 213334a7e6SAndrew Rist 223334a7e6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _SVX_XSFLCLIT_HXX 25cdf0e10cSrcweir #define _SVX_XSFLCLIT_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <svx/xcolit.hxx> 28cdf0e10cSrcweir 29cdf0e10cSrcweir //------------------------------ 30cdf0e10cSrcweir // class XSecondaryFillColorItem 31cdf0e10cSrcweir //------------------------------ 32cdf0e10cSrcweir class SVX_DLLPUBLIC XSecondaryFillColorItem : public XColorItem 33cdf0e10cSrcweir { 34cdf0e10cSrcweir public: 35cdf0e10cSrcweir TYPEINFO(); XSecondaryFillColorItem()36cdf0e10cSrcweir SVX_DLLPRIVATE XSecondaryFillColorItem() {} 37cdf0e10cSrcweir SVX_DLLPRIVATE XSecondaryFillColorItem(sal_Int32 nIndex, const Color& rTheColor); 38cdf0e10cSrcweir XSecondaryFillColorItem(const String& rName, const Color& rTheColor); 39cdf0e10cSrcweir SVX_DLLPRIVATE XSecondaryFillColorItem(SvStream& rIn); 40cdf0e10cSrcweir 41*adac7096Smseidel SVX_DLLPRIVATE virtual SfxPoolItem* Clone(SfxItemPool* pPool = 0) const; 42*adac7096Smseidel SVX_DLLPRIVATE virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nVer) const; 43cdf0e10cSrcweir 44cdf0e10cSrcweir SVX_DLLPRIVATE virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres, 45cdf0e10cSrcweir SfxMapUnit eCoreMetric, 46cdf0e10cSrcweir SfxMapUnit ePresMetric, 47*adac7096Smseidel String &rText, const IntlWrapper * = 0 ) const; 48cdf0e10cSrcweir 49cdf0e10cSrcweir SVX_DLLPRIVATE virtual sal_uInt16 GetVersion( sal_uInt16 nFileFormatVersion ) const; 50cdf0e10cSrcweir 51cdf0e10cSrcweir }; 52cdf0e10cSrcweir 53cdf0e10cSrcweir #endif 54cdf0e10cSrcweir 55*adac7096Smseidel /* vim: set noet sw=4 ts=4: */ 56