From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- sd/source/ui/inc/tpoption.hxx | 144 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 sd/source/ui/inc/tpoption.hxx (limited to 'sd/source/ui/inc/tpoption.hxx') diff --git a/sd/source/ui/inc/tpoption.hxx b/sd/source/ui/inc/tpoption.hxx new file mode 100644 index 000000000..8657db27a --- /dev/null +++ b/sd/source/ui/inc/tpoption.hxx @@ -0,0 +1,144 @@ +/* -*- 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 + +/** + * Option-Tab-Page: Snap + */ +class SdTpOptionsSnap final : public SvxGridTabPage +{ +public: + SdTpOptionsSnap(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs); + static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* ); + virtual ~SdTpOptionsSnap() override; + + virtual bool FillItemSet( SfxItemSet* ) override; + virtual void Reset( const SfxItemSet * ) override; +}; + +/** + * Option-Tab-Page: Contents + */ +class SdTpOptionsContents final : public SfxTabPage +{ +private: + std::unique_ptr m_xCbxRuler; + std::unique_ptr m_xCbxDragStripes; + std::unique_ptr m_xCbxHandlesBezier; + std::unique_ptr m_xCbxMoveOutline; + +public: + SdTpOptionsContents(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs); + static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* ); + virtual ~SdTpOptionsContents() override; + + virtual bool FillItemSet( SfxItemSet* ) override; + virtual void Reset( const SfxItemSet * ) override; +}; + +/** + * Option-Tab-Page: View + */ + +class SdTpOptionsMisc final : public SfxTabPage +{ + friend class SdModule; + +private: + sal_uInt32 nWidth; + sal_uInt32 nHeight; + OUString aInfo1; + OUString aInfo2; + + MapUnit ePoolUnit; + + std::unique_ptr m_xCbxQuickEdit; + std::unique_ptr m_xCbxPickThrough; + + std::unique_ptr m_xNewDocumentFrame; + std::unique_ptr m_xCbxStartWithTemplate; + + std::unique_ptr m_xCbxMasterPageCache; + std::unique_ptr m_xCbxCopy; + std::unique_ptr m_xCbxMarkedHitMovesAlways; + std::unique_ptr m_xPresentationFrame; + + std::unique_ptr m_xLbMetric; + std::unique_ptr m_xMtrFldTabstop; + + std::unique_ptr m_xCbxEnableSdremote; + std::unique_ptr m_xCbxEnablePresenterScreen; + std::unique_ptr m_xCbxUsePrinterMetrics; + std::unique_ptr m_xCbxCompatibility; + + //Scale + std::unique_ptr m_xScaleFrame; + std::unique_ptr m_xCbScale; + std::unique_ptr m_xNewDocLb; + std::unique_ptr m_xFiInfo1; + std::unique_ptr m_xMtrFldOriginalWidth; + std::unique_ptr m_xWidthLb; + std::unique_ptr m_xHeightLb; + std::unique_ptr m_xFiInfo2; + std::unique_ptr m_xMtrFldOriginalHeight; + std::unique_ptr m_xCbxDistort; + std::unique_ptr m_xMtrFldInfo1; + std::unique_ptr m_xMtrFldInfo2; + + static OUString GetScale( sal_Int32 nX, sal_Int32 nY ); + static bool SetScale( std::u16string_view aScale, sal_Int32& rX, sal_Int32& rY ); + + DECL_LINK( SelectMetricHdl_Impl, weld::ComboBox&, void ); + + /** Enable or disable the controls in the compatibility section of the + 'general' tab page depending on whether there is at least one + document. + */ + void UpdateCompatibilityControls(); + + virtual void ActivatePage( const SfxItemSet& rSet ) override; + virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; + +public: + SdTpOptionsMisc(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs); + static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* ); + virtual ~SdTpOptionsMisc() override; + + virtual bool FillItemSet( SfxItemSet* ) override; + virtual void Reset( const SfxItemSet * ) override; + + /** Hide Impress specific controls, make Draw specific controls visible + and arrange the visible controls. Do not call this method or the + SetImpressMode() method more than once. + */ + void SetDrawMode(); + + /** Hide Draw specific controls, make Impress specific controls visible + and arrange the visible controls. Do not call this method or the + SetDrawMode() method more than once. + */ + void SetImpressMode(); + virtual void PageCreated(const SfxAllItemSet& aSet) override; +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3