xref: /AOO41X/main/sw/sdi/_beziers.sdi (revision a02241ff8aec54e414276c40fc61b6a88af4d516)
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 _Bezier : Base
25[ Automation = FALSE; ]
26{
27    SID_DELETE
28    [
29        ExecMethod = Execute ;
30        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
31    ]
32
33    FN_BACKSPACE
34    [
35        ExecMethod = Execute ;
36        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
37    ]
38
39    FN_ESCAPE // api:
40    [
41        ExecMethod = Execute;
42    ]
43
44    SID_BEZIER_MOVE
45    [
46        Export = FALSE;
47        ExecMethod = Execute ;
48        StateMethod = GetState ;
49        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
50    ]
51
52    SID_BEZIER_INSERT
53    [
54        Export = FALSE;
55        ExecMethod = Execute ;
56        StateMethod = GetState ;
57        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
58    ]
59
60    SID_BEZIER_DELETE
61    [
62        Export = FALSE;
63        ExecMethod = Execute ;
64        StateMethod = GetState ;
65        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
66    ]
67
68    SID_BEZIER_CUTLINE
69    [
70        Export = FALSE;
71        ExecMethod = Execute ;
72        StateMethod = GetState ;
73        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
74    ]
75
76    SID_BEZIER_CONVERT
77    [
78        Export = FALSE;
79        ExecMethod = Execute ;
80        StateMethod = GetState ;
81        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
82    ]
83
84    SID_BEZIER_EDGE
85    [
86        Export = FALSE;
87        ExecMethod = Execute ;
88        StateMethod = GetState ;
89        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
90    ]
91
92    SID_BEZIER_SMOOTH
93    [
94        Export = FALSE;
95        ExecMethod = Execute ;
96        StateMethod = GetState ;
97        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
98    ]
99
100    SID_BEZIER_SYMMTR
101    [
102        Export = FALSE;
103        ExecMethod = Execute ;
104        StateMethod = GetState ;
105        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
106    ]
107
108    SID_BEZIER_CLOSE
109    [
110        Export = FALSE;
111        ExecMethod = Execute ;
112        StateMethod = GetState ;
113        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
114    ]
115
116    SID_BEZIER_ELIMINATE_POINTS
117    [
118        Export = FALSE;
119        ExecMethod = Execute ;
120        StateMethod = GetState ;
121        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
122    ]
123}
124
125