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 ************************************************************************/ 27interface TablePrintPreview 28{ 29 // von Basic aus nicht erreichbar, darum alles mit Export = FALSE 30 31 SID_FORMATPAGE [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 32 SID_STATUS_PAGESTYLE [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 33 SID_HFEDIT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 34 SID_ATTR_ZOOM [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 35 FID_SCALE [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 36 SID_STATUS_DOCPOS [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 37 SID_PREVIEW_NEXT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 38 SID_PREVIEW_PREVIOUS [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 39 SID_PREVIEW_FIRST [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 40 SID_PREVIEW_LAST [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 41 SID_PREVIEW_MARGIN [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 42 SID_PREVIEW_SCALINGFACTOR [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 43 SID_ATTR_ZOOMSLIDER [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 44 45 SfxVoidItem GoUpBlock SID_CURSORPAGEUP 46 ( 47 SfxInt16Item By SID_CURSORPAGEUP 48 ) 49 [ 50 ExecMethod = Execute ; 51 StateMethod = GetState ; 52 Export = FALSE; 53 GroupId = GID_INTERN ; 54 Cachable ; 55 ] 56 57 SfxVoidItem GoDownBlock SID_CURSORPAGEDOWN 58 ( 59 SfxInt16Item By SID_CURSORPAGEDOWN 60 ) 61 [ 62 ExecMethod = Execute ; 63 StateMethod = GetState ; 64 Export = FALSE; 65 GroupId = GID_INTERN ; 66 Cachable ; 67 ] 68 69 SID_CURSORHOME [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 70 SID_CURSOREND [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 71 72 SfxVoidItem GoDown SID_CURSORDOWN 73 ( 74 SfxInt16Item By SID_CURSORDOWN 75 ) 76 [ 77 ExecMethod = Execute ; 78 StateMethod = GetState ; 79 Export = FALSE; 80 GroupId = GID_INTERN ; 81 Cachable ; 82 ] 83 SfxVoidItem GoUp SID_CURSORUP 84 ( 85 SfxInt16Item By SID_CURSORUP 86 ) 87 [ 88 ExecMethod = Execute ; 89 StateMethod = GetState ; 90 Export = FALSE; 91 GroupId = GID_INTERN ; 92 Cachable ; 93 ] 94 SfxVoidItem GoLeft SID_CURSORLEFT 95 ( 96 SfxInt16Item By SID_CURSORLEFT 97 ) 98 [ 99 ExecMethod = Execute ; 100 StateMethod = GetState ; 101 Export = FALSE; 102 GroupId = GID_INTERN ; 103 Cachable ; 104 ] 105 106 SfxVoidItem GoRight SID_CURSORRIGHT 107 ( 108 SfxInt16Item By SID_CURSORRIGHT 109 ) 110 [ 111 ExecMethod = Execute ; 112 StateMethod = GetState ; 113 Export = FALSE; 114 GroupId = GID_INTERN ; 115 Cachable ; 116 ] 117 118 SID_PREV_TABLE 119 [ 120 ExecMethod = Execute ; 121 StateMethod = GetState ; 122 Export = FALSE; 123 GroupId = GID_INTERN ; 124 Cachable ; 125 ] 126 127 SID_NEXT_TABLE 128 [ 129 ExecMethod = Execute ; 130 StateMethod = GetState ; 131 Export = FALSE; 132 GroupId = GID_INTERN ; 133 Cachable ; 134 ] 135 136 SfxVoidItem GoToStart SID_CURSORTOPOFFILE () 137 [ 138 ExecMethod = Execute ; 139 StateMethod = GetState ; 140 Export = FALSE; 141 GroupId = GID_INTERN ; 142 Cachable ; 143 ] 144 145 SfxVoidItem GoToEndOfData SID_CURSORENDOFFILE () 146 [ 147 ExecMethod = Execute ; 148 StateMethod = GetState ; 149 Export = FALSE; 150 GroupId = GID_INTERN ; 151 Cachable ; 152 ] 153 SID_PREVIEW_ZOOMIN [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 154 SID_PREVIEW_ZOOMOUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 155 SID_REPAINT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 156 SID_UNDO [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 157 SID_REDO [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 158 SID_REPEAT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 159 SID_PRINTPREVIEW [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] // ole() api() 160 SID_PREVIEW_CLOSE [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 161 SID_CANCEL [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] 162} 163 164 165 // =========================================================================== 166shell ScPreviewShell 167{ 168 import TablePrintPreview; 169} 170