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 _CCOLL_HXX 28 #define _CCOLL_HXX 29 30 #include <svl/poolitem.hxx> 31 #include <tools/string.hxx> 32 #include <sfx2/tabdlg.hxx> 33 34 #ifndef _FIXED_HXX //autogen 35 #include <vcl/fixed.hxx> 36 #endif 37 38 #ifndef _BUTTON_HXX //autogen 39 #include <vcl/button.hxx> 40 #endif 41 #include <svtools/svtabbx.hxx> 42 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" 49 50 #include <rtl/string.hxx> 51 52 //*********************************************************** 53 54 struct CollName { 55 // const char* pStr; 56 sal_uLong nCnd; 57 sal_uLong nSubCond; 58 }; 59 60 //*********************************************************** 61 62 #define COND_COMMAND_COUNT 28 63 64 struct CommandStruct 65 { 66 sal_uLong nCnd; 67 sal_uLong nSubCond; 68 }; 69 70 //*********************************************************** 71 72 sal_Int16 GetCommandContextIndex( const rtl::OUString &rContextName ); 73 rtl::OUString GetCommandContextByIndex( sal_Int16 nIndex ); 74 75 //*********************************************************** 76 77 class SW_DLLPUBLIC SwCondCollItem : public SfxPoolItem 78 { 79 static CommandStruct aCmds[COND_COMMAND_COUNT]; 80 81 String sStyles[COND_COMMAND_COUNT]; 82 83 public: 84 SwCondCollItem(sal_uInt16 nWhich = FN_COND_COLL); 85 ~SwCondCollItem(); 86 87 TYPEINFO(); 88 89 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const; 90 virtual int operator==( const SfxPoolItem& ) const; 91 92 static const CommandStruct* GetCmds(); 93 94 const String& GetStyle(sal_uInt16 nPos) const; 95 void SetStyle( const String* pStyle, sal_uInt16 nPos); 96 97 }; 98 99 #endif 100 101