1*155d622cSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*155d622cSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*155d622cSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*155d622cSAndrew Rist * distributed with this work for additional information 6*155d622cSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*155d622cSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*155d622cSAndrew Rist * "License"); you may not use this file except in compliance 9*155d622cSAndrew Rist * with the License. You may obtain a copy of the License at 10*155d622cSAndrew Rist * 11*155d622cSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*155d622cSAndrew Rist * 13*155d622cSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*155d622cSAndrew Rist * software distributed under the License is distributed on an 15*155d622cSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*155d622cSAndrew Rist * KIND, either express or implied. See the License for the 17*155d622cSAndrew Rist * specific language governing permissions and limitations 18*155d622cSAndrew Rist * under the License. 19*155d622cSAndrew Rist * 20*155d622cSAndrew Rist *************************************************************/ 21*155d622cSAndrew Rist 22*155d622cSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _SD_STRMNAME_H 25cdf0e10cSrcweir #define _SD_STRMNAME_H 26cdf0e10cSrcweir 27cdf0e10cSrcweir // Alter Name des Dokument-Streams 28cdf0e10cSrcweir static const String pStarDrawDoc( RTL_CONSTASCII_USTRINGPARAM( "StarDrawDocument" )); 29cdf0e10cSrcweir 30cdf0e10cSrcweir // Name des Dokument-Streams 31cdf0e10cSrcweir static const String pStarDrawDoc3( RTL_CONSTASCII_USTRINGPARAM( "StarDrawDocument3" )); 32cdf0e10cSrcweir 33cdf0e10cSrcweir // Sonstige 34cdf0e10cSrcweir static const String pSfxStyleSheets( RTL_CONSTASCII_USTRINGPARAM( "SfxStyleSheets" )); 35cdf0e10cSrcweir static const String pVCItemPoolName( RTL_CONSTASCII_USTRINGPARAM( "VCPool" )); 36cdf0e10cSrcweir static const String pPreviewName( RTL_CONSTASCII_USTRINGPARAM( "StarDrawTemplatePreview" )); 37cdf0e10cSrcweir 38cdf0e10cSrcweir // PowerPoint-Filter 39cdf0e10cSrcweir static const String pFilterPowerPoint97( RTL_CONSTASCII_USTRINGPARAM( "MS PowerPoint 97" )); 40cdf0e10cSrcweir static const String pFilterPowerPoint97Template( RTL_CONSTASCII_USTRINGPARAM( "MS PowerPoint 97 Vorlage" )); 41cdf0e10cSrcweir 42cdf0e10cSrcweir // XML content stream 43cdf0e10cSrcweir static const String pStarDrawXMLContent( RTL_CONSTASCII_USTRINGPARAM( "content.xml" )); 44cdf0e10cSrcweir static const String pStarDrawOldXMLContent( RTL_CONSTASCII_USTRINGPARAM( "Content.xml" )); 45cdf0e10cSrcweir 46cdf0e10cSrcweir #endif // _SD_STRMNAME_H 47