merge the formfield patch from ooo-build
[ooovba.git] / svtools / inc / inetimg.hxx
blob3ddb4ffbbf2d263f1e5fc68ba94e2ce49b087461
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: inetimg.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _INETIMG_HXX
31 #define _INETIMG_HXX
33 #include <tools/string.hxx>
34 #include <tools/gen.hxx>
36 class SvData;
37 class SotDataObject;
38 class SotDataMemberObject;
40 //=========================================================================
42 class INetImage
44 String aImageURL;
45 String aTargetURL;
46 String aTargetFrame;
47 String aAlternateText;
48 Size aSizePixel;
50 protected:
51 String CopyExchange() const;
52 void PasteExchange( const String& rString );
54 void SetImageURL( const String& rS ) { aImageURL = rS; }
55 void SetTargetURL( const String& rS ) { aTargetURL = rS; }
56 void SetTargetFrame( const String& rS ) { aTargetFrame = rS; }
57 void SetAlternateText( const String& rS ){ aAlternateText = rS; }
58 void SetSizePixel( const Size& rSize ) { aSizePixel = rSize; }
60 public:
61 INetImage(
62 const String& rImageURL,
63 const String& rTargetURL,
64 const String& rTargetFrame,
65 const String& rAlternateText,
66 const Size& rSizePixel )
67 : aImageURL( rImageURL ),
68 aTargetURL( rTargetURL ),
69 aTargetFrame( rTargetFrame ),
70 aAlternateText( rAlternateText ),
71 aSizePixel( rSizePixel )
73 INetImage()
76 const String& GetImageURL() const { return aImageURL; }
77 const String& GetTargetURL() const { return aTargetURL; }
78 const String& GetTargetFrame() const { return aTargetFrame; }
79 const String& GetAlternateText() const { return aAlternateText; }
80 const Size& GetSizePixel() const { return aSizePixel; }
82 // Im-/Export
83 sal_Bool Write( SvStream& rOStm, ULONG nFormat ) const;
84 sal_Bool Read( SvStream& rIStm, ULONG nFormat );
87 #endif // #ifndef _INETIMG_HXX