Files
libreoffice/sw/source/uibase/inc/titlepage.hxx
Christian Lohmaier ab465b90f6 bin/rename-sw-abbreviations.sh
renames the most annoying abbreviations in Writer (and partially
in the shared code too).

Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
2015-05-20 13:05:49 +02:00

72 lines
1.9 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/.
*/
#ifndef INCLUDED_SW_SOURCE_UIBASE_INC_TITLEPAGE_HXX
#define INCLUDED_SW_SOURCE_UIBASE_INC_TITLEPAGE_HXX
#include <sfx2/basedlgs.hxx>
#include <vcl/button.hxx>
#include <vcl/field.hxx>
#include <vcl/fixed.hxx>
#include <vcl/lstbox.hxx>
#include <numberingtypelistbox.hxx>
namespace vcl { class Window; }
class SwWrtShell;
class SwPageDesc;
class SwTitlePageDlg : public SfxModalDialog
{
private:
VclPtr<RadioButton> m_pUseExistingPagesRB;
VclPtr<NumericField> m_pPageCountNF;
VclPtr<RadioButton> m_pDocumentStartRB;
VclPtr<RadioButton> m_pPageStartRB;
VclPtr<NumericField> m_pPageStartNF;
VclPtr<CheckBox> m_pRestartNumberingCB;
VclPtr<NumericField> m_pRestartNumberingNF;
VclPtr<CheckBox> m_pSetPageNumberCB;
VclPtr<NumericField> m_pSetPageNumberNF;
VclPtr<ListBox> m_pPagePropertiesLB;
VclPtr<PushButton> m_pPagePropertiesPB;
VclPtr<OKButton> m_pOkPB;
SwWrtShell *mpSh;
const SwFormatPageDesc *mpPageFormatDesc;
SwPageDesc *mpTitleDesc;
const SwPageDesc *mpIndexDesc;
const SwPageDesc *mpNormalDesc;
void FillList();
sal_uInt16 GetInsertPosition() const;
DECL_LINK(OKHdl, void *);
DECL_LINK(EditHdl, void *);
DECL_LINK(RestartNumberingHdl, void *);
DECL_LINK(SetPageNumberHdl, void *);
DECL_LINK(UpHdl, void *);
DECL_LINK(DownHdl, void *);
DECL_LINK(StartPageHdl, void *);
public:
SwTitlePageDlg( vcl::Window *pParent );
virtual ~SwTitlePageDlg();
virtual void dispose() SAL_OVERRIDE;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */