/* -*- 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 _SVX_PAGE_HXX #define _SVX_PAGE_HXX #include #include #include #include #include #include #include #include #include #include #include // class SvxPageDescPage ------------------------------------------------- /* {k:\svx\prototyp\dialog\page.bmp} [Description] TabPage for page settings (size, margins, ...) [Items] : : : : : : : : : : : : : : : : : : : : : : : */ struct SvxPage_Impl; typedef sal_uInt16 MarginPosition; class SvxPageDescPage : public SfxTabPage { using TabPage::ActivatePage; using TabPage::DeactivatePage; // paper format FixedLine aPaperSizeFl; FixedText aPaperFormatText; ListBox aPaperSizeBox; FixedText aPaperWidthText; MetricField aPaperWidthEdit; FixedText aPaperHeightText; MetricField aPaperHeightEdit; FixedText aOrientationFT; RadioButton aPortraitBtn; RadioButton aLandscapeBtn; SvxPageWindow aBspWin; FixedText aTextFlowLbl; svx::FrameDirectionListBox aTextFlowBox; FixedText aPaperTrayLbl; ListBox aPaperTrayBox; // Margins FixedLine aMarginFl; FixedText aLeftMarginLbl; MetricField aLeftMarginEdit; FixedText aRightMarginLbl; MetricField aRightMarginEdit; FixedText aTopMarginLbl; MetricField aTopMarginEdit; FixedText aBottomMarginLbl; MetricField aBottomMarginEdit; FixedLine aBottomSeparatorFl; // layout settings FixedLine aLayoutFL; FixedText aPageText; ListBox aLayoutBox; FixedText aNumberFormatText; ListBox aNumberFormatBox; //Extras Calc FixedText aTblAlignFT; CheckBox aHorzBox; CheckBox aVertBox; // Impress and Draw CheckBox aAdaptBox; //Register Writer CheckBox aRegisterCB; FixedText aRegisterFT; ListBox aRegisterLB; String sStandardRegister; String aInsideText; String aOutsideText; String aLeftText; String aRightText; String aPrintRangeQueryText; long nFirstLeftMargin; long nFirstRightMargin; long nFirstTopMargin; long nFirstBottomMargin; long nLastLeftMargin; long nLastRightMargin; long nLastTopMargin; long nLastBottomMargin; Size aMaxSize; sal_Bool bLandscape; bool bBorderModified; SvxModeType eMode; Paper ePaperStart; Paper ePaperEnd; SvxPage_Impl* pImpl; #ifdef _SVX_PAGE_CXX void Init_Impl(); DECL_LINK(LayoutHdl_Impl, void *); DECL_LINK(PaperBinHdl_Impl, void *); DECL_LINK( SwapOrientation_Impl, RadioButton* ); void SwapFirstValues_Impl( bool bSet ); DECL_LINK(BorderModify_Impl, void *); void InitHeadFoot_Impl( const SfxItemSet& rSet ); DECL_LINK(CenterHdl_Impl, void *); void UpdateExample_Impl( bool bResetbackground = false ); DECL_LINK( PaperSizeSelect_Impl, ListBox* ); DECL_LINK(PaperSizeModify_Impl, void *); DECL_LINK( FrameDirectionModify_Impl, ListBox* ); void ResetBackground_Impl( const SfxItemSet& rSet ); DECL_LINK(RangeHdl_Impl, void *); void CalcMargin_Impl(); DECL_LINK( RegisterModify, CheckBox * ); // page direction /** Disables vertical page direction entries in the text flow listbox. */ void DisableVerticalPageDir(); bool IsPrinterRangeOverflow( MetricField& rField, long nFirstMargin, long nLastMargin, MarginPosition nPos ); void CheckMarginEdits( bool _bClear ); bool IsMarginOutOfRange(); #endif SvxPageDescPage( Window* pParent, const SfxItemSet& rSet ); protected: virtual void ActivatePage( const SfxItemSet& rSet ); virtual int DeactivatePage( SfxItemSet* pSet = 0 ); public: static SfxTabPage* Create( Window* pParent, const SfxItemSet& rSet ); static sal_uInt16* GetRanges(); virtual sal_Bool FillItemSet( SfxItemSet& rOutSet ); virtual void Reset( const SfxItemSet& rSet ); virtual void FillUserData(); virtual ~SvxPageDescPage(); void SetMode( SvxModeType eMType ) { eMode = eMType; } void SetPaperFormatRanges( Paper eStart, Paper eEnd ) { ePaperStart = eStart, ePaperEnd = eEnd; } void SetCollectionList(const std::vector &aList); virtual void PageCreated (SfxAllItemSet aSet); }; #endif // #ifndef _SVX_PAGE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */