2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 16:15:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 19:22:15 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:22:15 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:22:15 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:22:15 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:22:15 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 19:22:15 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _OUTLINE_HXX
|
|
|
|
#define _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>
|
|
|
|
|
2011-04-21 18:12:29 +02:00
|
|
|
#include "swtypes.hxx" //for MAXLEVEL
|
2000-09-18 16:15:01 +00:00
|
|
|
#include <numprevw.hxx>
|
2001-03-02 13:10:47 +00:00
|
|
|
#include <numberingtypelistbox.hxx>
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
class SwWrtShell;
|
|
|
|
class SwNumRule;
|
|
|
|
class SwChapterNumRules;
|
|
|
|
|
|
|
|
class SwOutlineTabDialog : public SfxTabDialog
|
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
static sal_uInt16 nNumLevel;
|
2005-03-01 14:28:14 +00:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
String aNullStr;
|
|
|
|
String aCollNames[MAXLEVEL];
|
|
|
|
PopupMenu aFormMenu;
|
|
|
|
|
|
|
|
SwWrtShell& rWrtSh;
|
|
|
|
SwNumRule* pNumRule;
|
|
|
|
SwChapterNumRules* pChapterNumRules;
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bModified : 1;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
protected:
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK(CancelHdl, void *);
|
2000-09-18 16:15:01 +00:00
|
|
|
DECL_LINK( FormHdl, Button * );
|
|
|
|
DECL_LINK( MenuSelectHdl, Menu * );
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
virtual void PageCreated(sal_uInt16 nPageId, SfxTabPage& rPage);
|
2000-09-18 16:15:01 +00:00
|
|
|
virtual short Ok();
|
|
|
|
|
|
|
|
public:
|
|
|
|
SwOutlineTabDialog(Window* pParent,
|
|
|
|
const SfxItemSet* pSwItemSet,
|
|
|
|
SwWrtShell &);
|
|
|
|
~SwOutlineTabDialog();
|
|
|
|
|
|
|
|
SwNumRule* GetNumRule() {return pNumRule;}
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 GetLevel(const String &rFmtName) const;
|
2000-09-18 16:15:01 +00:00
|
|
|
String* GetCollNames() {return aCollNames;}
|
2005-03-01 14:28:14 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
static sal_uInt16 GetActNumLevel() {return nNumLevel;}
|
|
|
|
static void SetActNumLevel(sal_uInt16 nSet) {nNumLevel = nSet;}
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
2010-10-13 10:32:10 +05:30
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
class SwOutlineSettingsTabPage : public SfxTabPage
|
|
|
|
{
|
2001-06-01 09:20:44 +00:00
|
|
|
FixedLine aLevelFL;
|
2011-01-21 15:13:49 +01:00
|
|
|
ListBox aLevelLB;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-01-21 15:13:49 +01:00
|
|
|
FixedLine aNumberFL;
|
2000-09-18 16:15:01 +00:00
|
|
|
FixedText aCollLbl;
|
|
|
|
ListBox aCollBox;
|
|
|
|
FixedText aNumberLbl;
|
2001-03-02 13:10:47 +00:00
|
|
|
SwNumberingTypeListBox aNumberBox;
|
2000-09-18 16:15:01 +00:00
|
|
|
FixedText aCharFmtFT;
|
|
|
|
ListBox aCharFmtLB;
|
|
|
|
FixedText aAllLevelFT;
|
|
|
|
NumericField aAllLevelNF;
|
|
|
|
FixedText aDelim;
|
|
|
|
FixedText aPrefixFT;
|
|
|
|
Edit aPrefixED;
|
|
|
|
FixedText aSuffixFT;
|
|
|
|
Edit aSuffixED;
|
|
|
|
FixedText aStartLbl;
|
|
|
|
NumericField aStartEdit;
|
|
|
|
NumberingPreview aPreviewWIN;
|
|
|
|
|
|
|
|
String aNoFmtName;
|
|
|
|
String aSaveCollNames[MAXLEVEL];
|
|
|
|
SwWrtShell* pSh;
|
|
|
|
SwNumRule* pNumRule;
|
|
|
|
String* pCollNames;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nActLevel;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
DECL_LINK( LevelHdl, ListBox * );
|
|
|
|
DECL_LINK( ToggleComplete, NumericField * );
|
|
|
|
DECL_LINK( CollSelect, ListBox * );
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK(CollSelectGetFocus, void *);
|
2001-03-02 13:10:47 +00:00
|
|
|
DECL_LINK( NumberSelect, SwNumberingTypeListBox * );
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK(DelimModify, void *);
|
2000-09-18 16:15:01 +00:00
|
|
|
DECL_LINK( StartModified, NumericField * );
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK(CharFmtHdl, void *);
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
void Update();
|
|
|
|
|
|
|
|
void SetModified(){aPreviewWIN.Invalidate();}
|
2002-11-07 13:45:01 +00:00
|
|
|
void CheckForStartValue_Impl(sal_uInt16 nNumberingType);
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2008-05-06 14:24:08 +00:00
|
|
|
using SfxTabPage::ActivatePage;
|
|
|
|
using SfxTabPage::DeactivatePage;
|
2007-10-22 14:21:26 +00:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
public:
|
|
|
|
SwOutlineSettingsTabPage(Window* pParent, const SfxItemSet& rSet);
|
|
|
|
~SwOutlineSettingsTabPage();
|
|
|
|
|
|
|
|
void SetWrtShell(SwWrtShell* pShell);
|
|
|
|
|
|
|
|
virtual void ActivatePage(const SfxItemSet& rSet);
|
|
|
|
virtual int DeactivatePage(SfxItemSet *pSet);
|
2007-09-27 11:06:55 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
virtual sal_Bool FillItemSet( SfxItemSet& rSet );
|
2000-09-18 16:15:01 +00:00
|
|
|
virtual void Reset( const SfxItemSet& rSet );
|
|
|
|
static SfxTabPage* Create( Window* pParent,
|
|
|
|
const SfxItemSet& rAttrSet);
|
|
|
|
};
|
2010-10-13 10:32:10 +05:30
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
#endif
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|