summaryrefslogtreecommitdiff
path: root/sw/source/core/uibase/inc/titlepage.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/uibase/inc/titlepage.hxx')
-rw-r--r--sw/source/core/uibase/inc/titlepage.hxx70
1 files changed, 70 insertions, 0 deletions
diff --git a/sw/source/core/uibase/inc/titlepage.hxx b/sw/source/core/uibase/inc/titlepage.hxx
new file mode 100644
index 000000000000..3031e3112ef9
--- /dev/null
+++ b/sw/source/core/uibase/inc/titlepage.hxx
@@ -0,0 +1,70 @@
+/* -*- 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_UI_INC_TITLEPAGE_HXX
+#define INCLUDED_SW_SOURCE_UI_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>
+
+class Window;
+class SwWrtShell;
+class SwPageDesc;
+
+class SwTitlePageDlg : public SfxModalDialog
+{
+private:
+ RadioButton* m_pUseExistingPagesRB;
+ NumericField* m_pPageCountNF;
+
+ RadioButton* m_pDocumentStartRB;
+ RadioButton* m_pPageStartRB;
+ NumericField* m_pPageStartNF;
+
+ CheckBox* m_pRestartNumberingCB;
+ NumericField* m_pRestartNumberingNF;
+ CheckBox* m_pSetPageNumberCB;
+ NumericField* m_pSetPageNumberNF;
+
+ ListBox* m_pPagePropertiesLB;
+ PushButton* m_pPagePropertiesPB;
+
+ OKButton* m_pOkPB;
+
+ SwWrtShell *mpSh;
+
+ const SwFmtPageDesc *mpPageFmtDesc;
+
+ 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( Window *pParent );
+ ~SwTitlePageDlg();
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */