/* -*- 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 ListBox* m_pPaperSizeBox; MetricField* m_pPaperWidthEdit; MetricField* m_pPaperHeightEdit; FixedText* m_pOrientationFT; RadioButton* m_pPortraitBtn; RadioButton* m_pLandscapeBtn; SvxPageWindow* m_pBspWin; FixedText* m_pTextFlowLbl; svx::FrameDirectionListBox* m_pTextFlowBox; ListBox* m_pPaperTrayBox; // Margins FixedText* m_pLeftMarginLbl; MetricField* m_pLeftMarginEdit; FixedText* m_pRightMarginLbl; MetricField* m_pRightMarginEdit; MetricField* m_pTopMarginEdit; MetricField* m_pBottomMarginEdit; // layout settings FixedText* m_pPageText; ListBox* m_pLayoutBox; ListBox* m_pNumberFormatBox; //Extras Calc FixedText* m_pTblAlignFT; CheckBox* m_pHorzBox; CheckBox* m_pVertBox; // Impress and Draw CheckBox* m_pAdaptBox; //Register Writer CheckBox* m_pRegisterCB; FixedText* m_pRegisterFT; ListBox* m_pRegisterLB; String sStandardRegister; FixedText* m_pInsideText; FixedText* m_pOutsideText; FixedText* m_pPrintRangeQueryText; OUString aInsideText; OUString aOutsideText; OUString aLeftText; OUString aRightText; 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: */