Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef _SVX_GRFCROP_HXX
20 : #define _SVX_GRFCROP_HXX
21 :
22 : #include <svl/poolitem.hxx>
23 : #include "svx/svxdllapi.h"
24 :
25 :
26 : #define GRFCROP_VERSION_SWDEFAULT 0
27 : #define GRFCROP_VERSION_MOVETOSVX 1
28 :
29 312 : class SVX_DLLPUBLIC SvxGrfCrop : public SfxPoolItem
30 : {
31 : sal_Int32 nLeft, nRight, nTop, nBottom;
32 : public:
33 : SvxGrfCrop( sal_uInt16 );
34 : SvxGrfCrop( sal_Int32 nLeft, sal_Int32 nRight,
35 : sal_Int32 nTop, sal_Int32 nBottom,
36 : sal_uInt16 );
37 : virtual ~SvxGrfCrop();
38 :
39 : // "pure virtual methods" from SfxPoolItem
40 : virtual int operator==( const SfxPoolItem& ) const;
41 : virtual SfxPoolItem* Create(SvStream &, sal_uInt16 nVer) const;
42 : virtual SvStream& Store(SvStream &, sal_uInt16 nIVer) const;
43 : virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
44 : SfxMapUnit eCoreMetric,
45 : SfxMapUnit ePresMetric,
46 : OUString &rText,
47 : const IntlWrapper* pIntl = 0 ) const;
48 : virtual bool QueryValue( com::sun::star::uno::Any& rVal,
49 : sal_uInt8 nMemberId = 0 ) const;
50 : virtual bool PutValue( const com::sun::star::uno::Any& rVal,
51 : sal_uInt8 nMemberId = 0 );
52 :
53 0 : void SetLeft( sal_Int32 nVal ) { nLeft = nVal; }
54 0 : void SetRight( sal_Int32 nVal ) { nRight = nVal; }
55 0 : void SetTop( sal_Int32 nVal ) { nTop = nVal; }
56 0 : void SetBottom( sal_Int32 nVal ) { nBottom = nVal; }
57 :
58 691 : sal_Int32 GetLeft() const { return nLeft; }
59 691 : sal_Int32 GetRight() const { return nRight; }
60 691 : sal_Int32 GetTop() const { return nTop; }
61 691 : sal_Int32 GetBottom() const { return nBottom; }
62 :
63 : inline SvxGrfCrop& operator=( const SvxGrfCrop& rCrop )
64 : {
65 : nLeft = rCrop.GetLeft(); nTop = rCrop.GetTop();
66 : nRight = rCrop.GetRight(); nBottom = rCrop.GetBottom();
67 : return *this;
68 : }
69 : };
70 :
71 :
72 : #endif // _GRFATR_HXX
73 :
74 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|