merged tag ooo/OOO330_m14
[LibreOffice.git] / sw / inc / ccoll.hxx
blobd91c20409d0af05b548b9f1993adf84d81ee0aa6
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 ************************************************************************/
27 #ifndef _CCOLL_HXX
28 #define _CCOLL_HXX
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>
36 #endif
38 #ifndef _BUTTON_HXX //autogen
39 #include <vcl/button.hxx>
40 #endif
41 #include <svtools/svtabbx.hxx>
43 #ifndef _LSTBOX_HXX //autogen
44 #include <vcl/lstbox.hxx>
45 #endif
46 #include <tools/resary.hxx>
47 #include "swdllapi.h"
48 #include "cmdid.h"
50 #include <rtl/string.hxx>
52 //***********************************************************
54 struct CollName {
55 // const char* pStr;
56 ULONG nCnd;
57 ULONG nSubCond;
60 //***********************************************************
62 #define COND_COMMAND_COUNT 28
64 struct CommandStruct
66 ULONG nCnd;
67 ULONG nSubCond;
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];
83 public:
84 SwCondCollItem(USHORT nWhich = FN_COND_COLL);
85 ~SwCondCollItem();
87 TYPEINFO();
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);
99 #endif