xref: /trunk/main/sd/sdi/grviewsh.sdi (revision cdf0e10c)
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
28interface GraphicEditView : DrawView
29[
30	uuid ( "95F11180-ACE0-11D0-89CA-008029E4B0B1" ) ;
31]
32{
33	SID_SEARCH_OPTIONS // ole : ?, status : ?
34	[
35		ExecMethod = Execute ;
36		StateMethod = GetState ;
37		GroupId = GID_DOCUMENT ;
38		Cachable ;
39	]
40	SID_SEARCH_ITEM // ole : ?, status : ?
41	[
42		ExecMethod = Execute ;
43		StateMethod = GetState ;
44	]
45}
46
47shell GraphicViewShell
48{
49	import GraphicEditView[Automation];
50	SID_INSERT_POSTIT
51	[
52		ExecMethod = ExecuteAnnotation;
53		StateMethod = GetAnnotationState;
54	]
55	SID_SHOW_POSTIT
56	[
57		ExecMethod = ExecuteAnnotation;
58		StateMethod = GetAnnotationState;
59	]
60	SID_REPLYTO_POSTIT
61	[
62		ExecMethod = ExecuteAnnotation;
63		StateMethod = GetAnnotationState;
64	]
65	SID_DELETE_POSTIT
66	[
67		ExecMethod = ExecuteAnnotation;
68		StateMethod = GetAnnotationState;
69	]
70	SID_DELETEALL_POSTIT
71	[
72		ExecMethod = ExecuteAnnotation;
73		StateMethod = GetAnnotationState;
74	]
75	SID_PREVIOUS_POSTIT
76	[
77		ExecMethod = ExecuteAnnotation;
78		StateMethod = GetAnnotationState;
79	]
80	SID_NEXT_POSTIT
81	[
82		ExecMethod = ExecuteAnnotation;
83		StateMethod = GetAnnotationState;
84	]
85	SID_DELETEALLBYAUTHOR_POSTIT
86	[
87		ExecMethod = ExecuteAnnotation;
88		StateMethod = GetAnnotationState;
89	]
90}
91