update dev300-m58
[ooovba.git] / sw / source / ui / inc / numpara.hxx
blobe7093b92384b8888a2bd51b192e77b6a57214cd6
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: numpara.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _NUMPARA_HXX
31 #define _NUMPARA_HXX
34 #include <sfx2/tabdlg.hxx>
35 #include <vcl/lstbox.hxx>
36 #include <vcl/fixed.hxx>
37 #include <vcl/field.hxx>
38 #ifndef _SV_BUTTON_HXX //autogen
39 #include <vcl/button.hxx>
40 #endif
43 /* --- class SwParagraphNumTabPage ----------------------------------------
44 Mit dieser TabPage werden Numerierungseinstellungen am Absatz bzw. der
45 Absatzvorlage vorgenommen.
47 ---------------------------------------------------------------------------*/
48 class SwParagraphNumTabPage : public SfxTabPage
50 FixedLine aOutlineStartFL;
51 FixedText aOutlineLvFT;
52 ListBox aOutlineLvLB;
54 FixedText aNumberStyleFT;
55 ListBox aNumberStyleLB;
57 FixedLine aNewStartFL;
58 TriStateBox aNewStartCB;
59 TriStateBox aNewStartNumberCB;
60 NumericField aNewStartNF;
62 FixedLine aCountParaFL;
63 TriStateBox aCountParaCB;
64 TriStateBox aRestartParaCountCB;
65 FixedText aRestartFT;
66 NumericField aRestartNF;
68 // --> OD 2008-04-14 #outlinelevel#
69 const String msOutlineNumbering;
70 // <--
72 BOOL bModified : 1;
73 BOOL bCurNumrule : 1;
75 DECL_LINK( NewStartHdl_Impl, CheckBox* );
76 DECL_LINK( StyleHdl_Impl, ListBox* );
77 DECL_LINK( LineCountHdl_Impl, CheckBox* );
79 protected:
80 SwParagraphNumTabPage(Window* pParent, const SfxItemSet& rSet );
82 public:
83 ~SwParagraphNumTabPage();
85 static SfxTabPage* Create( Window* pParent,
86 const SfxItemSet& rSet );
87 static USHORT* GetRanges();
89 virtual BOOL FillItemSet( SfxItemSet& rSet );
90 virtual void Reset( const SfxItemSet& rSet );
92 void EnableNewStart();
93 void DisableOutline();
94 void DisableNumbering();
96 ListBox& GetStyleBox() {return aNumberStyleLB;};
100 #endif