/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_CUI_SOURCE_INC_GRFPAGE_HXX #define INCLUDED_CUI_SOURCE_INC_GRFPAGE_HXX #include #include #include #include #include class SvxCropExample : public vcl::Window { Size aFrameSize; Point aTopLeft, aBottomRight; Graphic aGrf; public: SvxCropExample( vcl::Window* pPar, WinBits nStyle ); virtual void Paint(vcl::RenderContext& rRenderContext, const ::tools::Rectangle& rRect) override; virtual void Resize() override; virtual Size GetOptimalSize() const override; void SetTop( long nVal ) { aTopLeft.X() = nVal; } void SetBottom( long nVal ) { aBottomRight.X() = nVal; } void SetLeft( long nVal ) { aTopLeft.Y() = nVal; } void SetRight( long nVal) { aBottomRight.Y() = nVal; } void SetFrameSize( const Size& rSz ); void SetGraphic( const Graphic& rGrf ) { aGrf = rGrf; } }; class SvxGrfCropPage : public SfxTabPage { friend class VclPtr; using Window::CalcZoom; using TabPage::ActivatePage; using TabPage::DeactivatePage; VclPtr m_pCropFrame; VclPtr m_pZoomConstRB; VclPtr m_pSizeConstRB; VclPtr m_pLeftMF; VclPtr m_pRightMF; VclPtr m_pTopMF; VclPtr m_pBottomMF; VclPtr m_pScaleFrame; VclPtr m_pWidthZoomMF; VclPtr m_pHeightZoomMF; VclPtr m_pSizeFrame; VclPtr m_pWidthMF; VclPtr m_pHeightMF; VclPtr m_pOrigSizeGrid; VclPtr m_pOrigSizeFT; VclPtr m_pOrigSizePB; // Example VclPtr m_pExampleWN; Timer aTimer; OUString aGraphicName; Size aOrigSize; Size aOrigPixelSize; Size aPageSize; VclPtr pLastCropField; long nOldWidth; long nOldHeight; bool bReset; bool bSetOrigSize; SvxGrfCropPage( vcl::Window *pParent, const SfxItemSet &rSet ); virtual ~SvxGrfCropPage() override; virtual void dispose() override; DECL_LINK( ZoomHdl, Edit&, void ); DECL_LINK( SizeHdl, Edit&, void ); DECL_LINK( CropHdl, SpinField&, void ); DECL_LINK( CropLoseFocusHdl, Control&, void ); DECL_LINK( CropModifyHdl, Edit&, void ); DECL_LINK( OrigSizeHdl, Button*, void ); DECL_LINK( Timeout, Timer *, void ); void CalcZoom(); void CalcMinMaxBorder(); void GraphicHasChanged(bool bFound); virtual void ActivatePage(const SfxItemSet& rSet) override; Size GetGrfOrigSize( const Graphic& ) const; public: static VclPtr Create( vcl::Window *pParent, const SfxItemSet *rSet ); virtual bool FillItemSet( SfxItemSet *rSet ) override; virtual void Reset( const SfxItemSet *rSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet *pSet ) override; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */