6a9f1e559a1fc4ced9f413a0a9d29991f59f6359
[occt.git] / src / AIS / AIS_GraphicTool.cdl
1 -- Created on: 1997-02-10
2 -- Created by: Robert COUBLANC
3 -- Copyright (c) 1997-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and/or modify it under
9 -- the terms of the GNU Lesser General Public License version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 --   GG  :  GER61351 17/11/1999 Change SetColor() with a compatible Quantity_Color instead
18 --                                     the restricted NameOfColor.
19
20 class GraphicTool from AIS 
21
22         ---Purpose: 
23
24 uses
25     Drawer          from Prs3d,
26     TypeOfAttribute from AIS,
27     NameOfColor     from Quantity,
28     Color           from Quantity,
29     TypeOfLine      from Aspect,
30     MaterialAspect  from Graphic3d
31
32
33 is
34
35     GetLineColor(myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes :  TypeOfAttribute  from  AIS) 
36     returns NameOfColor from Quantity; 
37     
38     GetLineColor(myclass; aDrawer : Drawer from Prs3d; 
39                 TheTypeOfAttributes :  TypeOfAttribute  from  AIS;
40                 TheLineColor: out Color from Quantity);
41     
42     GetLineWidth(myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes :  TypeOfAttribute  from  AIS)
43     returns Real from Standard;
44     
45     
46     GetLineType (myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes :  TypeOfAttribute  from  AIS)  
47     returns TypeOfLine from Aspect;
48     
49     
50     GetLineAtt(myclass;
51                aDrawer : Drawer from Prs3d;
52                TheTypeOfAttributes :  TypeOfAttribute  from  AIS; 
53                aCol   : in out NameOfColor from Quantity;
54                aWidth : in out Real from Standard;
55                aTyp   : in out TypeOfLine from Aspect);
56                
57                
58     GetInteriorColor(myclass;
59                     aDrawer : Drawer from Prs3d) 
60     returns NameOfColor from  Quantity;
61
62     GetInteriorColor(myclass;
63                     aDrawer : Drawer from Prs3d;
64                     aColor: out Color from Quantity);
65
66     GetMaterial(myclass; aDrawer:Drawer from Prs3d)
67     returns MaterialAspect from Graphic3d;
68                
69 end GraphicTool;
70