blob: 07a42090759344a7f5462b560eedc6e3c1b0f7f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
-- File: IGESSelect_EditDirPart.cdl
-- Created: Mon Sep 7 15:52:55 1998
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
class EditDirPart from IGESSelect inherits Editor from IFSelect
---Purpose : This class is aimed to display and edit the Directory Part of
-- an IGESEntity
uses Transient, AsciiString, HAsciiString, InterfaceModel, EditForm
is
Create returns EditDirPart;
Label (me) returns AsciiString;
Recognize (me; form : EditForm) returns Boolean;
StringValue (me; form : EditForm; num : Integer)
returns HAsciiString from TCollection;
Load (me; form : EditForm; ent : Transient; model : InterfaceModel)
returns Boolean;
Update (me; form : mutable EditForm; num : Integer;
newval : HAsciiString; enforce : Boolean)
returns Boolean is redefined;
-- for dynamically computed values
Apply (me; form : EditForm; ent : Transient; model : InterfaceModel)
returns Boolean;
end EditDirPart;
|