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