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 22shell GraphicObjectBar 23{ 24 SID_GRFFILTER 25 [ 26 ExecMethod = ExecuteFilter; 27 StateMethod = GetFilterState; 28 ] 29 SID_GRFFILTER_INVERT // ole : no, status : no 30 [ 31 ExecMethod = ExecuteFilter; 32 StateMethod = GetFilterState ; 33 ] 34 SID_GRFFILTER_SMOOTH // ole : no, status : no 35 [ 36 ExecMethod = ExecuteFilter; 37 StateMethod = GetFilterState ; 38 ] 39 SID_GRFFILTER_SHARPEN // ole : no, status : no 40 [ 41 ExecMethod = ExecuteFilter; 42 StateMethod = GetFilterState ; 43 ] 44 SID_GRFFILTER_REMOVENOISE // ole : no, status : no 45 [ 46 ExecMethod = ExecuteFilter; 47 StateMethod = GetFilterState ; 48 ] 49 SID_GRFFILTER_SOBEL // ole : no, status : no 50 [ 51 ExecMethod = ExecuteFilter; 52 StateMethod = GetFilterState; 53 ] 54 SID_GRFFILTER_MOSAIC // ole : no, status : no 55 [ 56 ExecMethod = ExecuteFilter; 57 StateMethod = GetFilterState; 58 ] 59 SID_GRFFILTER_EMBOSS // ole : no, status : no 60 [ 61 ExecMethod = ExecuteFilter; 62 StateMethod = GetFilterState; 63 ] 64 SID_GRFFILTER_POSTER // ole : no, status : no 65 [ 66 ExecMethod = ExecuteFilter; 67 StateMethod = GetFilterState; 68 ] 69 SID_GRFFILTER_POPART // ole : no, status : no 70 [ 71 ExecMethod = ExecuteFilter; 72 StateMethod = GetFilterState; 73 ] 74 SID_GRFFILTER_SEPIA // ole : no, status : no 75 [ 76 ExecMethod = ExecuteFilter; 77 StateMethod = GetFilterState; 78 ] 79 SID_GRFFILTER_SOLARIZE // ole : no, status : no 80 [ 81 ExecMethod = ExecuteFilter; 82 StateMethod = GetFilterState; 83 ] 84 85//------------------------------------------------------------------------------ 86 87 SID_ATTR_GRAF_MODE 88 [ 89 ExecMethod = Execute; 90 StateMethod = GetAttrState; 91 ] 92 SID_ATTR_GRAF_RED 93 [ 94 ExecMethod = Execute; 95 StateMethod = GetAttrState; 96 ] 97 SID_ATTR_GRAF_GREEN 98 [ 99 ExecMethod = Execute; 100 StateMethod = GetAttrState; 101 ] 102 SID_ATTR_GRAF_BLUE 103 [ 104 ExecMethod = Execute; 105 StateMethod = GetAttrState; 106 ] 107 SID_ATTR_GRAF_LUMINANCE 108 [ 109 ExecMethod = Execute; 110 StateMethod = GetAttrState; 111 ] 112 SID_ATTR_GRAF_CONTRAST 113 [ 114 ExecMethod = Execute; 115 StateMethod = GetAttrState; 116 ] 117 SID_ATTR_GRAF_GAMMA 118 [ 119 ExecMethod = Execute; 120 StateMethod = GetAttrState; 121 ] 122 SID_ATTR_GRAF_TRANSPARENCE 123 [ 124 ExecMethod = Execute; 125 StateMethod = GetAttrState; 126 ] 127 SID_ATTR_GRAF_INVERT 128 [ 129 ExecMethod = Execute; 130 StateMethod = GetAttrState; 131 ] 132 SID_ATTR_GRAF_CROP 133 [ 134 ExecMethod = Execute; 135 StateMethod = GetAttrState; 136 ] 137 SID_COLOR_SETTINGS 138 [ 139 ExecMethod = Execute; 140 StateMethod = GetAttrState; 141 ] 142} 143