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