0025765: Coding rules - clean up code from obsolete macro checks
[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 class GraphicTool from AIS 
18
19         ---Purpose: 
20
21 uses
22     Drawer          from Prs3d,
23     TypeOfAttribute from AIS,
24     NameOfColor     from Quantity,
25     Color           from Quantity,
26     TypeOfLine      from Aspect,
27     MaterialAspect  from Graphic3d
28
29
30 is
31
32     GetLineColor(myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes :  TypeOfAttribute  from  AIS) 
33     returns NameOfColor from Quantity; 
34     
35     GetLineColor(myclass; aDrawer : Drawer from Prs3d; 
36                 TheTypeOfAttributes :  TypeOfAttribute  from  AIS;
37                 TheLineColor: out Color from Quantity);
38     
39     GetLineWidth(myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes :  TypeOfAttribute  from  AIS)
40     returns Real from Standard;
41     
42     
43     GetLineType (myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes :  TypeOfAttribute  from  AIS)  
44     returns TypeOfLine from Aspect;
45     
46     
47     GetLineAtt(myclass;
48                aDrawer : Drawer from Prs3d;
49                TheTypeOfAttributes :  TypeOfAttribute  from  AIS; 
50                aCol   : in out NameOfColor from Quantity;
51                aWidth : in out Real from Standard;
52                aTyp   : in out TypeOfLine from Aspect);
53                
54                
55     GetInteriorColor(myclass;
56                     aDrawer : Drawer from Prs3d) 
57     returns NameOfColor from  Quantity;
58
59     GetInteriorColor(myclass;
60                     aDrawer : Drawer from Prs3d;
61                     aColor: out Color from Quantity);
62
63     GetMaterial(myclass; aDrawer:Drawer from Prs3d)
64     returns MaterialAspect from Graphic3d;
65                
66 end GraphicTool;
67