1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 #ifndef _SHELLID_HXX 24 #define _SHELLID_HXX 25 26 #include <sfx2/shell.hxx> 27 28 /*-------------------------------------------------------------------- 29 Beschreibung: Mapping fuer UI-Parameter 30 --------------------------------------------------------------------*/ 31 32 #define SW_BASESHELL (SFX_INTERFACE_SW_START + 1) 33 #define SW_TEXTSHELL (SFX_INTERFACE_SW_START + 2) 34 #define SW_LISTSHELL (SFX_INTERFACE_SW_START + 3) 35 #define SW_TABSHELL (SFX_INTERFACE_SW_START + 4) 36 #define SW_FRAMESHELL (SFX_INTERFACE_SW_START + 5) 37 #define SW_GRFSHELL (SFX_INTERFACE_SW_START + 6) 38 #define SW_OLESHELL (SFX_INTERFACE_SW_START + 7) 39 #define SW_DRAWSHELL (SFX_INTERFACE_SW_START + 8) 40 #define SW_DRWTXTSHELL (SFX_INTERFACE_SW_START + 9) 41 42 #define SW_INTERFACE_MODULE (SFX_INTERFACE_SW_START + 10) 43 #define SW_DOCSHELL (SFX_INTERFACE_SW_START + 11) 44 #define SW_VIEWSHELL (SFX_INTERFACE_SW_START + 12) 45 #define SW_PAGEPREVIEW (SFX_INTERFACE_SW_START + 13) 46 #define SW_GLOSDOCSHELL (SFX_INTERFACE_SW_START + 14) 47 #define SW_SRC_VIEWSHELL (SFX_INTERFACE_SW_START + 15) 48 49 #define SW_BEZIERSHELL (SFX_INTERFACE_SW_START + 16) 50 #define SW_DRAWBASESHELL (SFX_INTERFACE_SW_START + 17) 51 #define SW_DRAWFORMSHELL (SFX_INTERFACE_SW_START + 18) 52 53 #define SW_WEBDOCSHELL (SFX_INTERFACE_SW_START + 19) 54 #define SW_WEBVIEWSHELL (SFX_INTERFACE_SW_START + 20) 55 #define SW_WEBBASESHELL (SFX_INTERFACE_SW_START + 21) 56 #define SW_WEBTEXTSHELL (SFX_INTERFACE_SW_START + 22) 57 #define SW_WEBFRAMESHELL (SFX_INTERFACE_SW_START + 23) 58 #define SW_WEBGLOSDOCSHELL (SFX_INTERFACE_SW_START + 24) 59 #define SW_WEBLISTSHELL (SFX_INTERFACE_SW_START + 25) 60 #define SW_WEBTABSHELL (SFX_INTERFACE_SW_START + 26) 61 #define SW_WEBGRFSHELL (SFX_INTERFACE_SW_START + 27) 62 #define SW_WEBOLESHELL (SFX_INTERFACE_SW_START + 28) 63 #define SW_WEBDRAWBASESHELL (SFX_INTERFACE_SW_START + 29) 64 #define SW_WEBDRAWFORMSHELL (SFX_INTERFACE_SW_START + 30) 65 66 #define SW_MEDIASHELL (SFX_INTERFACE_SW_START + 31) 67 #define SW_ANNOTATIONSHELL (SFX_INTERFACE_SW_START + 32) 68 69 #endif // _UIPARAM_HXX 70