/* -*- 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/. */ #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_TITLEPAGE_HXX #define INCLUDED_SW_SOURCE_UIBASE_INC_TITLEPAGE_HXX #include #include #include #include #include #include namespace vcl { class Window; } class SwWrtShell; class SwPageDesc; class SwTitlePageDlg : public SfxModalDialog { private: VclPtr m_pUseExistingPagesRB; VclPtr m_pPageCountNF; VclPtr m_pDocumentStartRB; VclPtr m_pPageStartRB; VclPtr m_pPageStartNF; VclPtr m_pRestartNumberingCB; VclPtr m_pRestartNumberingNF; VclPtr m_pSetPageNumberCB; VclPtr m_pSetPageNumberNF; VclPtr m_pPagePropertiesLB; VclPtr m_pPagePropertiesPB; VclPtr m_pOkPB; SwWrtShell *mpSh; const SwFormatPageDesc *mpPageFormatDesc; SwPageDesc *mpTitleDesc; const SwPageDesc *mpIndexDesc; const SwPageDesc *mpNormalDesc; void FillList(); sal_uInt16 GetInsertPosition() const; DECL_LINK(OKHdl, Button*, void); DECL_LINK(EditHdl, Button*, void); DECL_LINK(RestartNumberingHdl, Button*, void); DECL_LINK(SetPageNumberHdl, Button*, void); DECL_LINK(UpHdl, SpinField&, void); DECL_LINK(DownHdl, SpinField&, void); DECL_LINK(StartPageHdl, Button*, void); public: SwTitlePageDlg( vcl::Window *pParent ); virtual ~SwTitlePageDlg() override; virtual void dispose() override; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */