188 lines
7.6 KiB
C++
188 lines
7.6 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 .
|
|
*/
|
|
#pragma once
|
|
|
|
#include <sfx2/tabdlg.hxx>
|
|
#include <svx/pagectrl.hxx>
|
|
#include <svx/pagenumberlistbox.hxx>
|
|
#include <svx/papersizelistbox.hxx>
|
|
#include <svx/frmdirlbox.hxx>
|
|
#include <i18nutil/paper.hxx>
|
|
#include <svx/flagsdef.hxx>
|
|
#include <vcl/print.hxx>
|
|
|
|
// class SvxPageDescPage -------------------------------------------------
|
|
/*
|
|
[Description]
|
|
TabPage for page settings (size, margins, ...)
|
|
|
|
[Items]
|
|
<SvxPageItem>: <SID_ATTR_PAGE>
|
|
<SvxSizeItem>: <SID_ATTR_SIZE>
|
|
<SvxSizeItem>: <SID_ATTR_MAXSIZE>
|
|
<SvxULSpaceItem>: <SID_ATTR_LRSPACE>
|
|
<SvxLRSpaceItem>: <SID_ATTR_ULSPACE>
|
|
<SvxPaperBinItem>: <SID_ATTR_PAPERBIN>
|
|
<SvxBoolItem>: <SID_ATTR_EXT1>
|
|
<SvxBoolItem>: <SID_ATTR_EXT2>
|
|
|
|
<SfxSetItem>: <SID_ATTR_HEADERSET>
|
|
<SfxBoolItem>: <SID_ATTR_ON>
|
|
<SfxBoolItem>: <SID_ATTR_DYNAMIC>
|
|
<SfxBoolItem>: <SID_ATTR_SHARED>
|
|
<SvxSizeItem>: <SID_ATTR_SIZE>
|
|
<SvxULSpaceItem>: <SID_ATTR_ULSPACE>
|
|
<SvxLRSpaceItem>: <SID_ATTR_LRSPACE>
|
|
|
|
<SfxSetItem>: <SID_ATTR_FOOTERSET>
|
|
<SfxBoolItem>: <SID_ATTR_ON>
|
|
<SfxBoolItem>: <SID_ATTR_DYNAMIC>
|
|
<SfxBoolItem>: <SID_ATTR_SHARED>
|
|
<SvxSizeItem>: <SID_ATTR_SIZE>
|
|
<SvxULSpaceItem>: <SID_ATTR_ULSPACE>
|
|
<SvxLRSpaceItem>: <SID_ATTR_LRSPACE>
|
|
*/
|
|
|
|
typedef sal_uInt16 MarginPosition;
|
|
|
|
class SvxPageDescPage : public SfxTabPage
|
|
{
|
|
static const WhichRangesContainer pRanges;
|
|
private:
|
|
OUString sStandardRegister;
|
|
tools::Long nFirstLeftMargin;
|
|
tools::Long nFirstRightMargin;
|
|
tools::Long nFirstTopMargin;
|
|
tools::Long nFirstBottomMargin;
|
|
tools::Long nLastLeftMargin;
|
|
tools::Long nLastRightMargin;
|
|
tools::Long nLastTopMargin;
|
|
tools::Long nLastBottomMargin;
|
|
|
|
bool bLandscape;
|
|
bool bBorderModified;
|
|
SvxModeType eMode;
|
|
Paper ePaperStart;
|
|
|
|
MarginPosition m_nPos;
|
|
VclPtr<Printer> mpDefPrinter;
|
|
|
|
bool mbDelPrinter : 1;
|
|
bool mbEnableDrawingLayerFillStyles : 1;
|
|
|
|
SvxPageWindow m_aBspWin;
|
|
|
|
// paper format
|
|
std::unique_ptr<SvxPaperSizeListBox> m_xPaperSizeBox;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xPaperWidthEdit;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xPaperHeightEdit;
|
|
std::unique_ptr<weld::RadioButton> m_xPortraitBtn;
|
|
std::unique_ptr<weld::RadioButton> m_xLandscapeBtn;
|
|
std::unique_ptr<weld::Label> m_xTextFlowLbl;
|
|
std::unique_ptr<svx::FrameDirectionListBox> m_xTextFlowBox;
|
|
std::unique_ptr<weld::ComboBox> m_xPaperTrayBox;
|
|
// Margins
|
|
std::unique_ptr<weld::Label> m_xLeftMarginLbl;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xLeftMarginEdit;
|
|
std::unique_ptr<weld::Label> m_xRightMarginLbl;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xRightMarginEdit;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xTopMarginEdit;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xBottomMarginEdit;
|
|
std::unique_ptr<weld::Label> m_xGutterMarginLbl;
|
|
std::unique_ptr<weld::MetricSpinButton> m_xGutterMarginEdit;
|
|
// layout settings
|
|
std::unique_ptr<weld::Label> m_xPageText;
|
|
std::unique_ptr<weld::ComboBox> m_xLayoutBox;
|
|
std::unique_ptr<weld::Label> m_xNumberFormatText;
|
|
std::unique_ptr<SvxPageNumberListBox> m_xNumberFormatBox;
|
|
//Extras Calc
|
|
std::unique_ptr<weld::Label> m_xTblAlignFT;
|
|
std::unique_ptr<weld::CheckButton> m_xHorzBox;
|
|
std::unique_ptr<weld::CheckButton> m_xVertBox;
|
|
// Impress and Draw
|
|
std::unique_ptr<weld::CheckButton> m_xAdaptBox;
|
|
//Register Writer
|
|
std::unique_ptr<weld::CheckButton> m_xRegisterCB;
|
|
std::unique_ptr<weld::Label> m_xRegisterFT;
|
|
std::unique_ptr<weld::ComboBox> m_xRegisterLB;
|
|
std::unique_ptr<weld::Label> m_xGutterPositionFT;
|
|
std::unique_ptr<weld::ComboBox> m_xGutterPositionLB;
|
|
std::unique_ptr<weld::CheckButton> m_xRtlGutterCB;
|
|
std::unique_ptr<weld::CheckButton> m_xBackgroundFullSizeCB;
|
|
std::unique_ptr<weld::Label> m_xInsideLbl;
|
|
std::unique_ptr<weld::Label> m_xOutsideLbl;
|
|
std::unique_ptr<weld::Label> m_xPrintRangeQueryText;
|
|
std::unique_ptr<weld::CustomWeld> m_xBspWin;
|
|
|
|
void Init_Impl();
|
|
DECL_LINK(LayoutHdl_Impl, weld::ComboBox&, void);
|
|
DECL_LINK(GutterPositionHdl_Impl, weld::ComboBox&, void);
|
|
DECL_LINK(PaperBinHdl_Impl, weld::Widget&, void);
|
|
DECL_LINK(SwapOrientation_Impl, weld::Toggleable&, void);
|
|
void SwapFirstValues_Impl( bool bSet );
|
|
DECL_LINK(BorderModify_Impl, weld::MetricSpinButton&, void);
|
|
void InitHeadFoot_Impl( const SfxItemSet& rSet );
|
|
DECL_LINK(CenterHdl_Impl, weld::Toggleable&, void);
|
|
void UpdateExample_Impl( bool bResetbackground = false );
|
|
|
|
DECL_LINK(PaperSizeSelect_Impl, weld::ComboBox&, void );
|
|
DECL_LINK(PaperSizeModify_Impl, weld::MetricSpinButton&, void);
|
|
|
|
DECL_LINK(FrameDirectionModify_Impl, weld::ComboBox&, void );
|
|
|
|
void ResetBackground_Impl( const SfxItemSet& rSet );
|
|
|
|
void RangeHdl_Impl();
|
|
void CalcMargin_Impl();
|
|
|
|
DECL_LINK(RegisterModify, weld::Toggleable&, void);
|
|
|
|
// page direction
|
|
/** Disables vertical page direction entries in the text flow listbox. */
|
|
void DisableVerticalPageDir();
|
|
|
|
bool IsPrinterRangeOverflow(weld::MetricSpinButton& rField, tools::Long nFirstMargin,
|
|
tools::Long nLastMargin, MarginPosition nPos);
|
|
void CheckMarginEdits( bool _bClear );
|
|
bool IsMarginOutOfRange() const;
|
|
|
|
protected:
|
|
virtual void ActivatePage( const SfxItemSet& rSet ) override;
|
|
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
|
|
|
|
public:
|
|
SvxPageDescPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
|
|
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet );
|
|
virtual ~SvxPageDescPage() override;
|
|
|
|
// returns the range of the Which values
|
|
static const WhichRangesContainer & GetRanges() { return pRanges; }
|
|
|
|
virtual bool FillItemSet( SfxItemSet* rOutSet ) override;
|
|
virtual void Reset( const SfxItemSet* rSet ) override;
|
|
virtual void FillUserData() override;
|
|
|
|
void SetPaperFormatRanges( Paper eStart )
|
|
{ ePaperStart = eStart; }
|
|
|
|
void SetCollectionList(const std::vector<OUString> &aList);
|
|
virtual void PageCreated(const SfxAllItemSet& aSet) override;
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|