xref: /aoo41x/main/sc/source/ui/inc/opredlin.hxx (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 #ifndef _SC_OPREDLIN_HXX
28 #define _SC_OPREDLIN_HXX
29 
30 #include <sfx2/tabdlg.hxx>
31 
32 #ifndef _GROUP_HXX //autogen
33 #include <vcl/group.hxx>
34 #endif
35 
36 #ifndef _BUTTON_HXX //autogen
37 #include <vcl/button.hxx>
38 #endif
39 
40 #ifndef _LSTBOX_HXX //autogen
41 #include <vcl/lstbox.hxx>
42 #endif
43 
44 #ifndef _FIELD_HXX //autogen
45 #include <vcl/field.hxx>
46 #endif
47 
48 #ifndef _FIXED_HXX //autogen
49 #include <vcl/fixed.hxx>
50 #endif
51 #include <svtools/ctrlbox.hxx>
52 #include <svx/fntctrl.hxx>
53 #include <svx/strarray.hxx>
54 
55 /*-----------------------------------------------------------------------
56 	Beschreibung: Redlining-Optionen
57  -----------------------------------------------------------------------*/
58 
59 class ScRedlineOptionsTabPage : public SfxTabPage
60 {
61 	FixedText			aContentFT;
62 	ColorListBox		aContentColorLB;
63 	FixedText			aRemoveFT;
64 	ColorListBox		aRemoveColorLB;
65 	FixedText			aInsertFT;
66 	ColorListBox		aInsertColorLB;
67 	FixedText			aMoveFT;
68 	ColorListBox		aMoveColorLB;
69     FixedLine           aChangedGB;
70 	String				aAuthorStr;
71 	DECL_LINK( ColorHdl, ColorListBox *pColorLB );
72 
73 
74 public:
75 
76 	ScRedlineOptionsTabPage( Window* pParent, const SfxItemSet& rSet );
77 	~ScRedlineOptionsTabPage();
78 
79 	static SfxTabPage*	Create( Window* pParent, const SfxItemSet& rAttrSet );
80 
81 	virtual	sal_Bool 		FillItemSet( SfxItemSet& rSet );
82 	virtual	void 		Reset( const SfxItemSet& rSet );
83 };
84 #endif
85 
86 
87