xref: /aoo41x/main/sw/sdi/_beziers.sdi (revision a02241ff)
1*a02241ffSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*a02241ffSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*a02241ffSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*a02241ffSAndrew Rist * distributed with this work for additional information
6*a02241ffSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*a02241ffSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*a02241ffSAndrew Rist * "License"); you may not use this file except in compliance
9*a02241ffSAndrew Rist * with the License.  You may obtain a copy of the License at
10*a02241ffSAndrew Rist *
11*a02241ffSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*a02241ffSAndrew Rist *
13*a02241ffSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*a02241ffSAndrew Rist * software distributed under the License is distributed on an
15*a02241ffSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*a02241ffSAndrew Rist * KIND, either express or implied.  See the License for the
17*a02241ffSAndrew Rist * specific language governing permissions and limitations
18*a02241ffSAndrew Rist * under the License.
19*a02241ffSAndrew Rist *
20*a02241ffSAndrew Rist *************************************************************/
21*a02241ffSAndrew Rist
22*a02241ffSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirinterface _Bezier : Base
25cdf0e10cSrcweir[ Automation = FALSE; ]
26cdf0e10cSrcweir{
27cdf0e10cSrcweir	SID_DELETE
28cdf0e10cSrcweir	[
29cdf0e10cSrcweir		ExecMethod = Execute ;
30cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
31cdf0e10cSrcweir	]
32cdf0e10cSrcweir
33cdf0e10cSrcweir	FN_BACKSPACE
34cdf0e10cSrcweir	[
35cdf0e10cSrcweir		ExecMethod = Execute ;
36cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
37cdf0e10cSrcweir	]
38cdf0e10cSrcweir
39cdf0e10cSrcweir	FN_ESCAPE // api:
40cdf0e10cSrcweir	[
41cdf0e10cSrcweir		ExecMethod = Execute;
42cdf0e10cSrcweir	]
43cdf0e10cSrcweir
44cdf0e10cSrcweir	SID_BEZIER_MOVE
45cdf0e10cSrcweir	[
46cdf0e10cSrcweir		Export = FALSE;
47cdf0e10cSrcweir		ExecMethod = Execute ;
48cdf0e10cSrcweir		StateMethod = GetState ;
49cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
50cdf0e10cSrcweir	]
51cdf0e10cSrcweir
52cdf0e10cSrcweir	SID_BEZIER_INSERT
53cdf0e10cSrcweir	[
54cdf0e10cSrcweir		Export = FALSE;
55cdf0e10cSrcweir		ExecMethod = Execute ;
56cdf0e10cSrcweir		StateMethod = GetState ;
57cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
58cdf0e10cSrcweir	]
59cdf0e10cSrcweir
60cdf0e10cSrcweir	SID_BEZIER_DELETE
61cdf0e10cSrcweir	[
62cdf0e10cSrcweir		Export = FALSE;
63cdf0e10cSrcweir		ExecMethod = Execute ;
64cdf0e10cSrcweir		StateMethod = GetState ;
65cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
66cdf0e10cSrcweir	]
67cdf0e10cSrcweir
68cdf0e10cSrcweir	SID_BEZIER_CUTLINE
69cdf0e10cSrcweir	[
70cdf0e10cSrcweir		Export = FALSE;
71cdf0e10cSrcweir		ExecMethod = Execute ;
72cdf0e10cSrcweir		StateMethod = GetState ;
73cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
74cdf0e10cSrcweir	]
75cdf0e10cSrcweir
76cdf0e10cSrcweir	SID_BEZIER_CONVERT
77cdf0e10cSrcweir	[
78cdf0e10cSrcweir		Export = FALSE;
79cdf0e10cSrcweir		ExecMethod = Execute ;
80cdf0e10cSrcweir		StateMethod = GetState ;
81cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
82cdf0e10cSrcweir	]
83cdf0e10cSrcweir
84cdf0e10cSrcweir	SID_BEZIER_EDGE
85cdf0e10cSrcweir	[
86cdf0e10cSrcweir		Export = FALSE;
87cdf0e10cSrcweir		ExecMethod = Execute ;
88cdf0e10cSrcweir		StateMethod = GetState ;
89cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
90cdf0e10cSrcweir	]
91cdf0e10cSrcweir
92cdf0e10cSrcweir	SID_BEZIER_SMOOTH
93cdf0e10cSrcweir	[
94cdf0e10cSrcweir		Export = FALSE;
95cdf0e10cSrcweir		ExecMethod = Execute ;
96cdf0e10cSrcweir		StateMethod = GetState ;
97cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
98cdf0e10cSrcweir	]
99cdf0e10cSrcweir
100cdf0e10cSrcweir	SID_BEZIER_SYMMTR
101cdf0e10cSrcweir	[
102cdf0e10cSrcweir		Export = FALSE;
103cdf0e10cSrcweir		ExecMethod = Execute ;
104cdf0e10cSrcweir		StateMethod = GetState ;
105cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
106cdf0e10cSrcweir	]
107cdf0e10cSrcweir
108cdf0e10cSrcweir	SID_BEZIER_CLOSE
109cdf0e10cSrcweir	[
110cdf0e10cSrcweir		Export = FALSE;
111cdf0e10cSrcweir		ExecMethod = Execute ;
112cdf0e10cSrcweir		StateMethod = GetState ;
113cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
114cdf0e10cSrcweir	]
115cdf0e10cSrcweir
116cdf0e10cSrcweir	SID_BEZIER_ELIMINATE_POINTS
117cdf0e10cSrcweir	[
118cdf0e10cSrcweir		Export = FALSE;
119cdf0e10cSrcweir		ExecMethod = Execute ;
120cdf0e10cSrcweir		StateMethod = GetState ;
121cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
122cdf0e10cSrcweir	]
123cdf0e10cSrcweir}
124cdf0e10cSrcweir
125