/* -*- 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 . */ #pragma once #include #include #include #include // predefines class SdrView; /************************************************************************* |* |* Transform-Tab-Dialog |* \************************************************************************/ struct SvxSwFrameValidation; class SvxTransformTabDialog : public SfxTabDialogController { private: const SdrView* pView; SvxAnchorIds nAnchorCtrls; Link aValidateLink; virtual void PageCreated(const OString& rId, SfxTabPage &rPage) override; public: SvxTransformTabDialog(weld::Window* pParent, const SfxItemSet* pAttr, const SdrView* pView, SvxAnchorIds nAnchorTypes); //link for the Writer to validate positions void SetValidateFramePosLink( const Link& rLink ); }; /************************************************************************* |* |* position and size tab page |* \************************************************************************/ class SvxPositionSizeTabPage : public SvxTabPage { static const sal_uInt16 pPosSizeRanges[]; private: const SfxItemSet& mrOutAttrs; const SdrView* mpView; // #i75273# basegfx::B2DRange maRange; basegfx::B2DRange maWorkRange; basegfx::B2DPoint maAnchor; MapUnit mePoolUnit; FieldUnit meDlgUnit; TriState mnProtectSizeState; bool mbPageDisabled; bool mbProtectDisabled; bool mbSizeDisabled; bool mbAdjustDisabled; bool mbIgnoreAutoGrowWidth; bool mbIgnoreAutoGrowHeight; // from size // #i75273# double mfOldWidth; double mfOldHeight; RectPoint meRP; SvxRectCtl m_aCtlPos; SvxRectCtl m_aCtlSize; // position std::unique_ptr m_xFlPosition; std::unique_ptr m_xMtrPosX; std::unique_ptr m_xMtrPosY; std::unique_ptr m_xCtlPos; // size std::unique_ptr m_xFlSize; std::unique_ptr m_xFtWidth; std::unique_ptr m_xMtrWidth; std::unique_ptr m_xFtHeight; std::unique_ptr m_xMtrHeight; std::unique_ptr m_xCbxScale; std::unique_ptr m_xCtlSize; // protect std::unique_ptr m_xFlProtect; std::unique_ptr m_xTsbPosProtect; std::unique_ptr m_xTsbSizeProtect; // adjust std::unique_ptr m_xFlAdjust; std::unique_ptr m_xTsbAutoGrowWidth; std::unique_ptr m_xTsbAutoGrowHeight; DECL_LINK(ChangePosProtectHdl, weld::Toggleable&, void); DECL_LINK(ChangeSizeProtectHdl, weld::Toggleable&, void); void SetMinMaxPosition(); void GetTopLeftPosition(double& rfX, double& rfY, const basegfx::B2DRange& rRange); DECL_LINK( ChangeWidthHdl, weld::MetricSpinButton&, void ); DECL_LINK( ChangeHeightHdl, weld::MetricSpinButton&, void ); DECL_LINK( ClickSizeProtectHdl, weld::Toggleable&, void ); DECL_LINK( ClickAutoHdl, weld::Toggleable&, void ); public: SvxPositionSizeTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs); virtual ~SvxPositionSizeTabPage() override; static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* ); static const sal_uInt16* GetRanges() { return pPosSizeRanges; } virtual bool FillItemSet( SfxItemSet* ) override; virtual void Reset( const SfxItemSet * ) override; virtual void ActivatePage( const SfxItemSet& rSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; virtual void PointChanged(weld::DrawingArea* pWindow, RectPoint eRP) override; void Construct(); void SetView( const SdrView* pSdrView ) { mpView = pSdrView; } virtual void FillUserData() override; void DisableResize(); void DisableProtect(); void UpdateControlStates(); }; /************************************************************************* |* |* rotation angle tab page |* \************************************************************************/ class SvxAngleTabPage : public SvxTabPage { static const sal_uInt16 pAngleRanges[]; private: const SdrView* pView; // #i75273# basegfx::B2DRange maRange; basegfx::B2DPoint maAnchor; MapUnit ePoolUnit; FieldUnit eDlgUnit; SvxRectCtl m_aCtlRect; std::unique_ptr m_xFlPosition; std::unique_ptr m_xMtrPosX; std::unique_ptr m_xMtrPosY; std::unique_ptr m_xCtlRect; std::unique_ptr m_xFlAngle; std::unique_ptr m_xNfAngle; std::unique_ptr m_xCtlAngle; std::unique_ptr m_xCtlAngleWin; public: SvxAngleTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs); virtual ~SvxAngleTabPage() override; static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* ); static const sal_uInt16* GetRanges() { return pAngleRanges; } virtual bool FillItemSet( SfxItemSet* ) override; virtual void Reset( const SfxItemSet * ) override; virtual void ActivatePage( const SfxItemSet& rSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; virtual void PointChanged(weld::DrawingArea* pWindow, RectPoint eRP) override; void Construct(); void SetView( const SdrView* pSdrView ) { pView = pSdrView; } }; /************************************************************************* |* |* slant/corner radius tab page |* \************************************************************************/ class SvxSlantTabPage : public SfxTabPage { static const sal_uInt16 pSlantRanges[]; private: const SdrView* pView; MapUnit ePoolUnit; FieldUnit eDlgUnit; std::unique_ptr m_xFlRadius; std::unique_ptr m_xMtrRadius; std::unique_ptr m_xFlAngle; std::unique_ptr m_xMtrAngle; std::unique_ptr m_aControlGroups[2]; std::unique_ptr m_aControlGroupX[2]; std::unique_ptr m_aControlX[2]; std::unique_ptr m_aControlGroupY[2]; std::unique_ptr m_aControlY[2]; public: SvxSlantTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs); virtual ~SvxSlantTabPage() override; static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* ); static const sal_uInt16* GetRanges() { return pSlantRanges; } virtual bool FillItemSet( SfxItemSet* ) override; virtual void Reset( const SfxItemSet * ) override; virtual void ActivatePage( const SfxItemSet& rSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; void Construct(); void SetView( const SdrView* pSdrView ) { pView = pSdrView; } }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */