LibreOffice Module svx (master) 1
grfcrop.hxx
Go to the documentation of this file.
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
20#ifndef INCLUDED_SVX_GRFCROP_HXX
21#define INCLUDED_SVX_GRFCROP_HXX
22
23#include <svl/poolitem.hxx>
24#include <svx/svxdllapi.h>
25
26#define GRFCROP_VERSION_SWDEFAULT 0
27#define GRFCROP_VERSION_MOVETOSVX 1
28
30{
31 sal_Int32 nLeft, nRight, nTop, nBottom;
32public:
34 SvxGrfCrop( sal_Int32 nLeft, sal_Int32 nRight,
35 sal_Int32 nTop, sal_Int32 nBottom,
37 virtual ~SvxGrfCrop() override;
38
39 SvxGrfCrop(SvxGrfCrop const &) = default;
40 SvxGrfCrop(SvxGrfCrop &&) = default;
41 SvxGrfCrop & operator =(SvxGrfCrop const &) = delete; // due to SfxPoolItem
42 SvxGrfCrop & operator =(SvxGrfCrop &&) = delete; // due to SfxPoolItem
43
44 // "pure virtual methods" from SfxPoolItem
45 virtual bool operator==( const SfxPoolItem& ) const override;
46 virtual bool GetPresentation( SfxItemPresentation ePres,
47 MapUnit eCoreMetric,
48 MapUnit ePresMetric,
49 OUString &rText,
50 const IntlWrapper& rIntl ) const override;
51 virtual bool QueryValue( css::uno::Any& rVal,
52 sal_uInt8 nMemberId = 0 ) const override;
53 virtual bool PutValue( const css::uno::Any& rVal,
54 sal_uInt8 nMemberId ) override;
55
56 void SetLeft( sal_Int32 nVal ) { nLeft = nVal; }
57 void SetRight( sal_Int32 nVal ) { nRight = nVal; }
58 void SetTop( sal_Int32 nVal ) { nTop = nVal; }
59 void SetBottom( sal_Int32 nVal ) { nBottom = nVal; }
60
61 sal_Int32 GetLeft() const { return nLeft; }
62 sal_Int32 GetRight() const { return nRight; }
63 sal_Int32 GetTop() const { return nTop; }
64 sal_Int32 GetBottom() const { return nBottom; }
65};
66
67#endif // INCLUDED_SVX_GRFCROP_HXX
68
69/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual bool QueryValue(css::uno::Any &rVal, sal_uInt8 nMemberId=0) const
virtual bool GetPresentation(SfxItemPresentation ePresentation, MapUnit eCoreMetric, MapUnit ePresentationMetric, OUString &rText, const IntlWrapper &rIntlWrapper) const
virtual bool operator==(const SfxPoolItem &) const=0
virtual bool PutValue(const css::uno::Any &rVal, sal_uInt8 nMemberId)
SfxPoolItem & operator=(const SfxPoolItem &)=delete
void SetTop(sal_Int32 nVal)
Definition: grfcrop.hxx:58
sal_Int32 nBottom
Definition: grfcrop.hxx:31
void SetLeft(sal_Int32 nVal)
Definition: grfcrop.hxx:56
sal_Int32 GetTop() const
Definition: grfcrop.hxx:63
SvxGrfCrop(SvxGrfCrop &&)=default
sal_Int32 GetRight() const
Definition: grfcrop.hxx:62
void SetBottom(sal_Int32 nVal)
Definition: grfcrop.hxx:59
void SetRight(sal_Int32 nVal)
Definition: grfcrop.hxx:57
sal_Int32 GetLeft() const
Definition: grfcrop.hxx:61
sal_Int32 GetBottom() const
Definition: grfcrop.hxx:64
SvxGrfCrop(SvxGrfCrop const &)=default
MapUnit
SfxItemPresentation
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35
unsigned char sal_uInt8