1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
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.
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).
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.
26 ************************************************************************/
30 #include <svl/poolitem.hxx>
31 #include <tools/string.hxx>
32 #include <sfx2/tabdlg.hxx>
34 #ifndef _FIXED_HXX //autogen
35 #include <vcl/fixed.hxx>
38 #ifndef _BUTTON_HXX //autogen
39 #include <vcl/button.hxx>
41 #include <svtools/svtabbx.hxx>
43 #ifndef _LSTBOX_HXX //autogen
44 #include <vcl/lstbox.hxx>
46 #include <tools/resary.hxx>
50 #include <rtl/string.hxx>
52 //***********************************************************
60 //***********************************************************
62 #define COND_COMMAND_COUNT 28
70 //***********************************************************
72 sal_Int16
GetCommandContextIndex( const rtl::OUString
&rContextName
);
73 rtl::OUString
GetCommandContextByIndex( sal_Int16 nIndex
);
75 //***********************************************************
77 class SW_DLLPUBLIC SwCondCollItem
: public SfxPoolItem
79 static CommandStruct aCmds
[COND_COMMAND_COUNT
];
81 String sStyles
[COND_COMMAND_COUNT
];
84 SwCondCollItem(USHORT nWhich
= FN_COND_COLL
);
89 virtual SfxPoolItem
* Clone( SfxItemPool
*pPool
= 0 ) const;
90 virtual int operator==( const SfxPoolItem
& ) const;
92 static const CommandStruct
* GetCmds();
94 const String
& GetStyle(USHORT nPos
) const;
95 void SetStyle( const String
* pStyle
, USHORT nPos
);