/* -*- 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_LABDLG_HXX #define INCLUDED_CUI_SOURCE_INC_LABDLG_HXX #include #include #include #include #include #include #include #include class SdrView; // class SvxCaptionTabPage ----------------------------------------------- const sal_uInt16 CAPTYPE_BITMAPS_COUNT = 3; class SvxCaptionTabPage : public SfxTabPage { private: static const sal_uInt16 pCaptionRanges[]; VclPtr m_pCT_CAPTTYPE; VclPtr m_pMF_ABSTAND; VclPtr m_pLB_ANSATZ; VclPtr m_pFT_UM; VclPtr m_pMF_ANSATZ; VclPtr m_pFT_ANSATZ_REL; VclPtr m_pLB_ANSATZ_REL; VclPtr m_pFT_LAENGE; VclPtr m_pMF_LAENGE; VclPtr m_pCB_LAENGE; Image m_aBmpCapTypes[CAPTYPE_BITMAPS_COUNT]; std::vector m_aStrHorzList; std::vector m_aStrVertList; std::vector m_aLineTypes; SdrCaptionType nCaptionType; sal_Int32 nGap; SdrCaptionEscDir nEscDir; bool bEscRel; sal_Int32 nEscAbs; sal_Int32 nEscRel; sal_Int32 nLineLen; bool bFitLineLen; sal_uInt16 nAnsatzRelPos; sal_uInt16 nAnsatzTypePos; void SetupAnsatz_Impl( sal_uInt16 nType ); void SetupType_Impl( SdrCaptionType nType ); DECL_LINK_TYPED( AnsatzSelectHdl_Impl, ListBox&, void ); DECL_LINK_TYPED( AnsatzRelSelectHdl_Impl, ListBox&, void ); DECL_LINK_TYPED( LineOptHdl_Impl, Button *, void ); DECL_LINK_TYPED( SelectCaptTypeHdl_Impl, ValueSet*, void ); const SfxItemSet& rOutAttrs; const SdrView* pView; public: SvxCaptionTabPage( vcl::Window* pParent, const SfxItemSet& rInAttrs ); virtual ~SvxCaptionTabPage(); virtual void dispose() override; static VclPtr Create( vcl::Window*, const SfxItemSet* ); static const sal_uInt16* GetRanges() { return pCaptionRanges; } virtual bool FillItemSet( SfxItemSet* ) override; virtual void Reset( const SfxItemSet * ) override; void Construct(); void SetView( const SdrView* pSdrView ) { pView = pSdrView; } virtual void DataChanged( const DataChangedEvent& rDCEvt ) override; void FillValueSet(); }; // class SvxCaptionTabDialog --------------------------------------------- struct SvxSwFrameValidation; class SvxCaptionTabDialog : public SfxTabDialog { private: const SdrView* pView; SvxAnchorIds nAnchorCtrls; sal_uInt16 m_nSwPosSizePageId; sal_uInt16 m_nPositionSizePageId; sal_uInt16 m_nCaptionPageId; Link aValidateLink; virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) override; public: SvxCaptionTabDialog(vcl::Window* pParent, const SdrView* pView, SvxAnchorIds nAnchorTypes = SvxAnchorIds::NONE); /// link for the Writer to validate positions void SetValidateFramePosLink( const Link& rLink ); }; #endif // INCLUDED_CUI_SOURCE_INC_LABDLG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */