1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_svx.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #ifndef SVX_LIGHT 32*cdf0e10cSrcweir 33*cdf0e10cSrcweir #include <com/sun/star/container/XNameContainer.hpp> 34*cdf0e10cSrcweir #include "svx/XPropertyTable.hxx" 35*cdf0e10cSrcweir #include <unotools/ucbstreamhelper.hxx> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir #include "xmlxtexp.hxx" 38*cdf0e10cSrcweir #include "xmlxtimp.hxx" 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir #endif 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir #include <tools/urlobj.hxx> 43*cdf0e10cSrcweir #include <vcl/virdev.hxx> 44*cdf0e10cSrcweir #include <svl/itemset.hxx> 45*cdf0e10cSrcweir #include <sfx2/docfile.hxx> 46*cdf0e10cSrcweir #include <svx/dialogs.hrc> 47*cdf0e10cSrcweir #include <svx/dialmgr.hxx> 48*cdf0e10cSrcweir #include <svx/xtable.hxx> 49*cdf0e10cSrcweir #include <svx/xpool.hxx> 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir #define GLOBALOVERFLOW 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir using namespace com::sun::star; 54*cdf0e10cSrcweir using namespace rtl; 55*cdf0e10cSrcweir 56*cdf0e10cSrcweir sal_Unicode const pszExtBitmap[] = {'s','o','b'}; 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir static char const aChckBitmap[] = { 0x04, 0x00, 'S','O','B','L'}; // very old 59*cdf0e10cSrcweir static char const aChckBitmap0[] = { 0x04, 0x00, 'S','O','B','0'}; // old 60*cdf0e10cSrcweir static char const aChckBitmap1[] = { 0x04, 0x00, 'S','O','B','1'}; // = 5.2 61*cdf0e10cSrcweir static char const aChckXML[] = { 'P', 'K', 0x03, 0x04 }; // = 6.0 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir // ------------------- 64*cdf0e10cSrcweir // class XBitmapTable 65*cdf0e10cSrcweir // ------------------- 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir /************************************************************************* 68*cdf0e10cSrcweir |* 69*cdf0e10cSrcweir |* XBitmapTable::XBitmapTable() 70*cdf0e10cSrcweir |* 71*cdf0e10cSrcweir *************************************************************************/ 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir XBitmapTable::XBitmapTable( const String& rPath, 74*cdf0e10cSrcweir XOutdevItemPool* pInPool, 75*cdf0e10cSrcweir sal_uInt16 nInitSize, sal_uInt16 nReSize ) : 76*cdf0e10cSrcweir XPropertyTable( rPath, pInPool, nInitSize, nReSize) 77*cdf0e10cSrcweir { 78*cdf0e10cSrcweir pBmpTable = new Table( nInitSize, nReSize ); 79*cdf0e10cSrcweir } 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir /************************************************************************/ 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir XBitmapTable::~XBitmapTable() 84*cdf0e10cSrcweir { 85*cdf0e10cSrcweir } 86*cdf0e10cSrcweir 87*cdf0e10cSrcweir /************************************************************************/ 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir XBitmapEntry* XBitmapTable::Replace(long nIndex, XBitmapEntry* pEntry ) 90*cdf0e10cSrcweir { 91*cdf0e10cSrcweir return (XBitmapEntry*) XPropertyTable::Replace(nIndex, pEntry); 92*cdf0e10cSrcweir } 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir /************************************************************************/ 95*cdf0e10cSrcweir 96*cdf0e10cSrcweir XBitmapEntry* XBitmapTable::Remove(long nIndex) 97*cdf0e10cSrcweir { 98*cdf0e10cSrcweir return (XBitmapEntry*) XPropertyTable::Remove(nIndex, 0); 99*cdf0e10cSrcweir } 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir /************************************************************************/ 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir XBitmapEntry* XBitmapTable::GetBitmap(long nIndex) const 104*cdf0e10cSrcweir { 105*cdf0e10cSrcweir return (XBitmapEntry*) XPropertyTable::Get(nIndex, 0); 106*cdf0e10cSrcweir } 107*cdf0e10cSrcweir 108*cdf0e10cSrcweir /************************************************************************/ 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir sal_Bool XBitmapTable::Load() 111*cdf0e10cSrcweir { 112*cdf0e10cSrcweir return( sal_False ); 113*cdf0e10cSrcweir } 114*cdf0e10cSrcweir 115*cdf0e10cSrcweir /************************************************************************/ 116*cdf0e10cSrcweir 117*cdf0e10cSrcweir sal_Bool XBitmapTable::Save() 118*cdf0e10cSrcweir { 119*cdf0e10cSrcweir return( sal_False ); 120*cdf0e10cSrcweir } 121*cdf0e10cSrcweir 122*cdf0e10cSrcweir /************************************************************************/ 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir sal_Bool XBitmapTable::Create() 125*cdf0e10cSrcweir { 126*cdf0e10cSrcweir return( sal_False ); 127*cdf0e10cSrcweir } 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir /************************************************************************/ 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir sal_Bool XBitmapTable::CreateBitmapsForUI() 132*cdf0e10cSrcweir { 133*cdf0e10cSrcweir return( sal_False ); 134*cdf0e10cSrcweir } 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir /************************************************************************/ 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir Bitmap* XBitmapTable::CreateBitmapForUI( long /*nIndex*/, sal_Bool /*bDelete*/) 139*cdf0e10cSrcweir { 140*cdf0e10cSrcweir return( NULL ); 141*cdf0e10cSrcweir } 142*cdf0e10cSrcweir 143*cdf0e10cSrcweir // ------------------ 144*cdf0e10cSrcweir // class XBitmapList 145*cdf0e10cSrcweir // ------------------ 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir /************************************************************************* 148*cdf0e10cSrcweir |* 149*cdf0e10cSrcweir |* XBitmapList::XBitmapList() 150*cdf0e10cSrcweir |* 151*cdf0e10cSrcweir *************************************************************************/ 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir XBitmapList::XBitmapList( const String& rPath, 154*cdf0e10cSrcweir XOutdevItemPool* pInPool, 155*cdf0e10cSrcweir sal_uInt16 nInitSize, sal_uInt16 nReSize ) : 156*cdf0e10cSrcweir XPropertyList( rPath, pInPool, nInitSize, nReSize) 157*cdf0e10cSrcweir { 158*cdf0e10cSrcweir // pBmpList = new List( nInitSize, nReSize ); 159*cdf0e10cSrcweir } 160*cdf0e10cSrcweir 161*cdf0e10cSrcweir /************************************************************************/ 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir XBitmapList::~XBitmapList() 164*cdf0e10cSrcweir { 165*cdf0e10cSrcweir } 166*cdf0e10cSrcweir 167*cdf0e10cSrcweir /************************************************************************/ 168*cdf0e10cSrcweir 169*cdf0e10cSrcweir XBitmapEntry* XBitmapList::Replace(XBitmapEntry* pEntry, long nIndex ) 170*cdf0e10cSrcweir { 171*cdf0e10cSrcweir return (XBitmapEntry*) XPropertyList::Replace(pEntry, nIndex); 172*cdf0e10cSrcweir } 173*cdf0e10cSrcweir 174*cdf0e10cSrcweir /************************************************************************/ 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir XBitmapEntry* XBitmapList::Remove(long nIndex) 177*cdf0e10cSrcweir { 178*cdf0e10cSrcweir return (XBitmapEntry*) XPropertyList::Remove(nIndex, 0); 179*cdf0e10cSrcweir } 180*cdf0e10cSrcweir 181*cdf0e10cSrcweir /************************************************************************/ 182*cdf0e10cSrcweir 183*cdf0e10cSrcweir XBitmapEntry* XBitmapList::GetBitmap(long nIndex) const 184*cdf0e10cSrcweir { 185*cdf0e10cSrcweir return (XBitmapEntry*) XPropertyList::Get(nIndex, 0); 186*cdf0e10cSrcweir } 187*cdf0e10cSrcweir 188*cdf0e10cSrcweir /************************************************************************/ 189*cdf0e10cSrcweir 190*cdf0e10cSrcweir sal_Bool XBitmapList::Load() 191*cdf0e10cSrcweir { 192*cdf0e10cSrcweir if( bListDirty ) 193*cdf0e10cSrcweir { 194*cdf0e10cSrcweir bListDirty = sal_False; 195*cdf0e10cSrcweir 196*cdf0e10cSrcweir INetURLObject aURL( aPath ); 197*cdf0e10cSrcweir 198*cdf0e10cSrcweir if( INET_PROT_NOT_VALID == aURL.GetProtocol() ) 199*cdf0e10cSrcweir { 200*cdf0e10cSrcweir DBG_ASSERT( !aPath.Len(), "invalid URL" ); 201*cdf0e10cSrcweir return sal_False; 202*cdf0e10cSrcweir } 203*cdf0e10cSrcweir 204*cdf0e10cSrcweir aURL.Append( aName ); 205*cdf0e10cSrcweir 206*cdf0e10cSrcweir if( !aURL.getExtension().getLength() ) 207*cdf0e10cSrcweir aURL.setExtension( rtl::OUString( pszExtBitmap, 3 ) ); 208*cdf0e10cSrcweir 209*cdf0e10cSrcweir uno::Reference< container::XNameContainer > xTable( SvxUnoXBitmapTable_createInstance( this ), uno::UNO_QUERY ); 210*cdf0e10cSrcweir return SvxXMLXTableImport::load( aURL.GetMainURL( INetURLObject::NO_DECODE ), xTable ); 211*cdf0e10cSrcweir } 212*cdf0e10cSrcweir return( sal_False ); 213*cdf0e10cSrcweir } 214*cdf0e10cSrcweir 215*cdf0e10cSrcweir /************************************************************************/ 216*cdf0e10cSrcweir 217*cdf0e10cSrcweir sal_Bool XBitmapList::Save() 218*cdf0e10cSrcweir { 219*cdf0e10cSrcweir INetURLObject aURL( aPath ); 220*cdf0e10cSrcweir 221*cdf0e10cSrcweir if( INET_PROT_NOT_VALID == aURL.GetProtocol() ) 222*cdf0e10cSrcweir { 223*cdf0e10cSrcweir DBG_ASSERT( !aPath.Len(), "invalid URL" ); 224*cdf0e10cSrcweir return sal_False; 225*cdf0e10cSrcweir } 226*cdf0e10cSrcweir 227*cdf0e10cSrcweir aURL.Append( aName ); 228*cdf0e10cSrcweir 229*cdf0e10cSrcweir if( !aURL.getExtension().getLength() ) 230*cdf0e10cSrcweir aURL.setExtension( rtl::OUString( pszExtBitmap, 3 ) ); 231*cdf0e10cSrcweir 232*cdf0e10cSrcweir uno::Reference< container::XNameContainer > xTable( SvxUnoXBitmapTable_createInstance( this ), uno::UNO_QUERY ); 233*cdf0e10cSrcweir return SvxXMLXTableExportComponent::save( aURL.GetMainURL( INetURLObject::NO_DECODE ), xTable ); 234*cdf0e10cSrcweir } 235*cdf0e10cSrcweir 236*cdf0e10cSrcweir /************************************************************************/ 237*cdf0e10cSrcweir // Umgestellt am 27.07.95 auf XBitmap 238*cdf0e10cSrcweir 239*cdf0e10cSrcweir sal_Bool XBitmapList::Create() 240*cdf0e10cSrcweir { 241*cdf0e10cSrcweir // Array der Bitmap 242*cdf0e10cSrcweir //----------------------- 243*cdf0e10cSrcweir // 00 01 02 03 04 05 06 07 244*cdf0e10cSrcweir // 08 09 10 11 12 13 14 15 245*cdf0e10cSrcweir // 16 17 18 19 20 21 22 23 246*cdf0e10cSrcweir // 24 25 26 27 28 29 30 31 247*cdf0e10cSrcweir // 32 33 34 35 36 37 38 39 248*cdf0e10cSrcweir // 40 41 42 43 44 45 46 47 249*cdf0e10cSrcweir // 48 49 50 51 52 53 54 55 250*cdf0e10cSrcweir // 56 57 58 59 60 61 62 63 251*cdf0e10cSrcweir 252*cdf0e10cSrcweir String aStr( SVX_RES( RID_SVXSTR_BITMAP ) ); 253*cdf0e10cSrcweir Color aColWhite( RGB_Color( COL_WHITE ) ); 254*cdf0e10cSrcweir xub_StrLen nLen; 255*cdf0e10cSrcweir sal_uInt16 aArray[64]; 256*cdf0e10cSrcweir 257*cdf0e10cSrcweir memset( aArray, 0, sizeof( aArray ) ); 258*cdf0e10cSrcweir aStr.AppendAscii(" 1"); 259*cdf0e10cSrcweir nLen = aStr.Len() - 1; 260*cdf0e10cSrcweir Insert( new XBitmapEntry( XOBitmap( aArray, aColWhite, aColWhite ), aStr ) ); 261*cdf0e10cSrcweir 262*cdf0e10cSrcweir aArray[ 0] = 1; aArray[ 9] = 1; aArray[18] = 1; aArray[27] = 1; 263*cdf0e10cSrcweir aArray[36] = 1; aArray[45] = 1; aArray[54] = 1; aArray[63] = 1; 264*cdf0e10cSrcweir aStr.SetChar(nLen, sal_Unicode('2')); 265*cdf0e10cSrcweir Insert( new XBitmapEntry( XOBitmap( aArray, RGB_Color( COL_BLACK ), aColWhite ), aStr ) ); 266*cdf0e10cSrcweir 267*cdf0e10cSrcweir aArray[ 7] = 1; aArray[14] = 1; aArray[21] = 1; aArray[28] = 1; 268*cdf0e10cSrcweir aArray[35] = 1; aArray[42] = 1; aArray[49] = 1; aArray[56] = 1; 269*cdf0e10cSrcweir aStr.SetChar(nLen, sal_Unicode('3')); 270*cdf0e10cSrcweir Insert( new XBitmapEntry( XOBitmap( aArray, RGB_Color( COL_LIGHTRED ), aColWhite ), aStr ) ); 271*cdf0e10cSrcweir 272*cdf0e10cSrcweir aArray[24] = 1; aArray[25] = 1; aArray[26] = 1; 273*cdf0e10cSrcweir aArray[29] = 1; aArray[30] = 1; aArray[31] = 1; 274*cdf0e10cSrcweir aStr.SetChar(nLen, sal_Unicode('4')); 275*cdf0e10cSrcweir Insert( new XBitmapEntry( XOBitmap( aArray, RGB_Color( COL_LIGHTBLUE ), aColWhite ), aStr ) ); 276*cdf0e10cSrcweir 277*cdf0e10cSrcweir return( sal_True ); 278*cdf0e10cSrcweir } 279*cdf0e10cSrcweir 280*cdf0e10cSrcweir /************************************************************************/ 281*cdf0e10cSrcweir 282*cdf0e10cSrcweir sal_Bool XBitmapList::CreateBitmapsForUI() 283*cdf0e10cSrcweir { 284*cdf0e10cSrcweir return( sal_False ); 285*cdf0e10cSrcweir } 286*cdf0e10cSrcweir 287*cdf0e10cSrcweir /************************************************************************/ 288*cdf0e10cSrcweir 289*cdf0e10cSrcweir Bitmap* XBitmapList::CreateBitmapForUI( long /*nIndex*/, sal_Bool /*bDelete*/) 290*cdf0e10cSrcweir { 291*cdf0e10cSrcweir return( NULL ); 292*cdf0e10cSrcweir } 293*cdf0e10cSrcweir 294*cdf0e10cSrcweir // eof 295