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 _SHELLID_HXX 28 #define _SHELLID_HXX 29 30 #include <sfx2/shell.hxx> 31 32 /*-------------------------------------------------------------------- 33 Beschreibung: Mapping fuer UI-Parameter 34 --------------------------------------------------------------------*/ 35 36 #define SW_BASESHELL (SFX_INTERFACE_SW_START + 1) 37 #define SW_TEXTSHELL (SFX_INTERFACE_SW_START + 2) 38 #define SW_LISTSHELL (SFX_INTERFACE_SW_START + 3) 39 #define SW_TABSHELL (SFX_INTERFACE_SW_START + 4) 40 #define SW_FRAMESHELL (SFX_INTERFACE_SW_START + 5) 41 #define SW_GRFSHELL (SFX_INTERFACE_SW_START + 6) 42 #define SW_OLESHELL (SFX_INTERFACE_SW_START + 7) 43 #define SW_DRAWSHELL (SFX_INTERFACE_SW_START + 8) 44 #define SW_DRWTXTSHELL (SFX_INTERFACE_SW_START + 9) 45 46 #define SW_INTERFACE_MODULE (SFX_INTERFACE_SW_START + 10) 47 #define SW_DOCSHELL (SFX_INTERFACE_SW_START + 11) 48 #define SW_VIEWSHELL (SFX_INTERFACE_SW_START + 12) 49 #define SW_PAGEPREVIEW (SFX_INTERFACE_SW_START + 13) 50 #define SW_GLOSDOCSHELL (SFX_INTERFACE_SW_START + 14) 51 #define SW_SRC_VIEWSHELL (SFX_INTERFACE_SW_START + 15) 52 53 #define SW_BEZIERSHELL (SFX_INTERFACE_SW_START + 16) 54 #define SW_DRAWBASESHELL (SFX_INTERFACE_SW_START + 17) 55 #define SW_DRAWFORMSHELL (SFX_INTERFACE_SW_START + 18) 56 57 #define SW_WEBDOCSHELL (SFX_INTERFACE_SW_START + 19) 58 #define SW_WEBVIEWSHELL (SFX_INTERFACE_SW_START + 20) 59 #define SW_WEBBASESHELL (SFX_INTERFACE_SW_START + 21) 60 #define SW_WEBTEXTSHELL (SFX_INTERFACE_SW_START + 22) 61 #define SW_WEBFRAMESHELL (SFX_INTERFACE_SW_START + 23) 62 #define SW_WEBGLOSDOCSHELL (SFX_INTERFACE_SW_START + 24) 63 #define SW_WEBLISTSHELL (SFX_INTERFACE_SW_START + 25) 64 #define SW_WEBTABSHELL (SFX_INTERFACE_SW_START + 26) 65 #define SW_WEBGRFSHELL (SFX_INTERFACE_SW_START + 27) 66 #define SW_WEBOLESHELL (SFX_INTERFACE_SW_START + 28) 67 #define SW_WEBDRAWBASESHELL (SFX_INTERFACE_SW_START + 29) 68 #define SW_WEBDRAWFORMSHELL (SFX_INTERFACE_SW_START + 30) 69 70 #define SW_MEDIASHELL (SFX_INTERFACE_SW_START + 31) 71 #define SW_ANNOTATIONSHELL (SFX_INTERFACE_SW_START + 32) 72 73 #endif // _UIPARAM_HXX 74