summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/outline.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/inc/outline.hxx')
-rw-r--r--sw/source/uibase/inc/outline.hxx138
1 files changed, 138 insertions, 0 deletions
diff --git a/sw/source/uibase/inc/outline.hxx b/sw/source/uibase/inc/outline.hxx
new file mode 100644
index 000000000000..f224a38206bd
--- /dev/null
+++ b/sw/source/uibase/inc/outline.hxx
@@ -0,0 +1,138 @@
+/* -*- 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 INCLUDED_SW_SOURCE_CORE_UIBASE_INC_OUTLINE_HXX
+#define INCLUDED_SW_SOURCE_CORE_UIBASE_INC_OUTLINE_HXX
+
+#include <sfx2/tabdlg.hxx>
+
+#include <vcl/menu.hxx>
+
+#include <vcl/button.hxx>
+#include <svtools/stdctrl.hxx>
+
+#include <vcl/fixed.hxx>
+
+#include <vcl/lstbox.hxx>
+
+#include <vcl/edit.hxx>
+
+#include <vcl/field.hxx>
+
+#include "swtypes.hxx"
+#include <numprevw.hxx>
+#include <numberingtypelistbox.hxx>
+#include <rtl/ustring.hxx>
+
+class SwWrtShell;
+class SwNumRule;
+class SwChapterNumRules;
+
+class SwOutlineTabDialog : public SfxTabDialog
+{
+ static sal_uInt16 nNumLevel;
+
+ sal_uInt16 m_nNumPosId;
+ sal_uInt16 m_nOutlineId;
+
+ OUString aCollNames[MAXLEVEL];
+
+ SwWrtShell& rWrtSh;
+ SwNumRule* pNumRule;
+ SwChapterNumRules* pChapterNumRules;
+
+ bool bModified : 1;
+
+ protected:
+ DECL_LINK(CancelHdl, void *);
+ DECL_LINK( FormHdl, Button * );
+ DECL_LINK( MenuSelectHdl, Menu * );
+
+ virtual void PageCreated(sal_uInt16 nPageId, SfxTabPage& rPage) SAL_OVERRIDE;
+ virtual short Ok() SAL_OVERRIDE;
+
+ public:
+ SwOutlineTabDialog(Window* pParent,
+ const SfxItemSet* pSwItemSet,
+ SwWrtShell &);
+ virtual ~SwOutlineTabDialog();
+
+ SwNumRule* GetNumRule() {return pNumRule;}
+ sal_uInt16 GetLevel(const OUString &rFmtName) const;
+ OUString* GetCollNames() {return aCollNames;}
+
+ static sal_uInt16 GetActNumLevel() {return nNumLevel;}
+ static void SetActNumLevel(sal_uInt16 nSet) {nNumLevel = nSet;}
+};
+
+class SwOutlineSettingsTabPage : public SfxTabPage
+{
+ ListBox* m_pLevelLB;
+
+ ListBox* m_pCollBox;
+ SwNumberingTypeListBox* m_pNumberBox;
+ ListBox* m_pCharFmtLB;
+ FixedText* m_pAllLevelFT;
+ NumericField* m_pAllLevelNF;
+ Edit* m_pPrefixED;
+ Edit* m_pSuffixED;
+ NumericField* m_pStartEdit;
+ NumberingPreview* m_pPreviewWIN;
+
+ OUString aNoFmtName;
+ OUString aSaveCollNames[MAXLEVEL];
+ SwWrtShell* pSh;
+ SwNumRule* pNumRule;
+ OUString* pCollNames;
+ sal_uInt16 nActLevel;
+
+ DECL_LINK( LevelHdl, ListBox * );
+ DECL_LINK( ToggleComplete, NumericField * );
+ DECL_LINK( CollSelect, ListBox * );
+ DECL_LINK(CollSelectGetFocus, void *);
+ DECL_LINK( NumberSelect, SwNumberingTypeListBox * );
+ DECL_LINK(DelimModify, void *);
+ DECL_LINK( StartModified, NumericField * );
+ DECL_LINK(CharFmtHdl, void *);
+
+ void Update();
+
+ void SetModified(){m_pPreviewWIN->Invalidate();}
+ void CheckForStartValue_Impl(sal_uInt16 nNumberingType);
+
+ using SfxTabPage::ActivatePage;
+ using SfxTabPage::DeactivatePage;
+
+public:
+ SwOutlineSettingsTabPage(Window* pParent, const SfxItemSet& rSet);
+ virtual ~SwOutlineSettingsTabPage();
+
+ void SetWrtShell(SwWrtShell* pShell);
+
+ virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
+ virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
+
+ virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
+ virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
+ static SfxTabPage* Create( Window* pParent,
+ const SfxItemSet& rAttrSet);
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */