office-gobmx/cui/source/inc/labdlg.hxx
Stephan Bergmann 106ea87205 Remove _TYPED suffix from tools/link.hxx macros
...which was introduced with 3ead3ad52f "Gradually
typed Link" to distinguish the new, typed versions from the old, untyped ones,
but is no longer necessary since 382eb1a23c
"remove untyped Link<>" removed the old versions.

Change-Id: I494025df486a16a45861fcd8192dfe0275b1103c
2016-10-05 07:56:12 +02:00

125 lines
4.2 KiB
C++

/* -*- 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 <vcl/field.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/fixed.hxx>
#include <svtools/valueset.hxx>
#include <sfx2/tabdlg.hxx>
#include <svx/sxctitm.hxx>
#include <svx/sxcecitm.hxx>
#include <svx/anchorid.hxx>
class SdrView;
// class SvxCaptionTabPage -----------------------------------------------
const sal_uInt16 CAPTYPE_BITMAPS_COUNT = 3;
class SvxCaptionTabPage : public SfxTabPage
{
private:
static const sal_uInt16 pCaptionRanges[];
VclPtr<ValueSet> m_pCT_CAPTTYPE;
VclPtr<MetricField> m_pMF_ABSTAND;
VclPtr<ListBox> m_pLB_ANSATZ;
VclPtr<FixedText> m_pFT_UM;
VclPtr<MetricField> m_pMF_ANSATZ;
VclPtr<FixedText> m_pFT_ANSATZ_REL;
VclPtr<ListBox> m_pLB_ANSATZ_REL;
VclPtr<FixedText> m_pFT_LAENGE;
VclPtr<MetricField> m_pMF_LAENGE;
VclPtr<CheckBox> m_pCB_LAENGE;
Image m_aBmpCapTypes[CAPTYPE_BITMAPS_COUNT];
std::vector<OUString> m_aStrHorzList;
std::vector<OUString> m_aStrVertList;
std::vector<OUString> 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( AnsatzSelectHdl_Impl, ListBox&, void );
DECL_LINK( AnsatzRelSelectHdl_Impl, ListBox&, void );
DECL_LINK( LineOptHdl_Impl, Button *, void );
DECL_LINK( SelectCaptTypeHdl_Impl, ValueSet*, void );
const SfxItemSet& rOutAttrs;
const SdrView* pView;
public:
SvxCaptionTabPage( vcl::Window* pParent, const SfxItemSet& rInAttrs );
virtual ~SvxCaptionTabPage() override;
virtual void dispose() override;
static VclPtr<SfxTabPage> 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<SvxSwFrameValidation&,void> 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<SvxSwFrameValidation&,void>& rLink );
};
#endif // INCLUDED_CUI_SOURCE_INC_LABDLG_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */