1 /*------------------------------------------------------------\
2 |                                                             |
3 | This file is part of the Alliance CAD System Copyright      |
4 | (C) Laboratoire LIP6 - D�partement ASIM Universite P&M Curie|
5 |                                                             |
6 | Home page      : http://www-asim.lip6.fr/alliance/          |
7 | E-mail         : mailto:alliance-users@asim.lip6.fr       |
8 |                                                             |
9 | This progam is  free software; you can redistribute it      |
10 | and/or modify it under the  terms of the GNU General Public |
11 | License as  published by the Free Software Foundation;      |
12 | either version 2 of the License, or (at your option) any    |
13 | later version.                                              |
14 |                                                             |
15 | Alliance VLSI  CAD System  is distributed  in the hope that |
16 | it  will be useful, but WITHOUT  ANY WARRANTY;              |
17 | without even the  implied warranty of MERCHANTABILITY or    |
18 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General       |
19 | Public License for more details.                            |
20 |                                                             |
21 | You should have received a copy  of the GNU General Public  |
22 | License along with the GNU C Library; see the file COPYING. |
23 | If not, write to the Free Software Foundation, Inc.,        |
24 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.                     |
25 |                                                             |
26 \------------------------------------------------------------*/
27 
28 /*------------------------------------------------------------\
29 |                                                             |
30 | Tool    :                   GRAAL                           |
31 |                                                             |
32 | File    :                  Create.h                         |
33 |                                                             |
34 | Author  :                Jacomme Ludovic                    |
35 |                                                             |
36 | Date    :                  28.03.95                         |
37 |                                                             |
38 \------------------------------------------------------------*/
39 
40 /*------------------------------------------------------------\
41 |                                                             |
42 |                           Constants                         |
43 |                                                             |
44 \------------------------------------------------------------*/
45 
46 # ifndef GRAAL_GMC
47 # define GRAAL_GMC
48 
49 /*------------------------------------------------------------\
50 |                                                             |
51 |                            Types                            |
52 |                                                             |
53 \------------------------------------------------------------*/
54 /*------------------------------------------------------------\
55 |                                                             |
56 |                          Variables                          |
57 |                                                             |
58 \------------------------------------------------------------*/
59 
60   extern GraalMenuItem  GraalCreateMenu[];
61   extern GraalPanelItem GraalCreateSegmentPanel;
62   extern GraalPanelItem GraalCreateViaPanel;
63   extern GraalPanelItem GraalCreateBigViaPanel;
64   extern GraalPanelItem GraalCreateTransistorPanel;
65   extern GraalPanelItem GraalCreateConnectorPanel;
66   extern GraalPanelItem GraalCreateReferencePanel;
67   extern GraalPanelItem GraalCreateInstancePanel;
68 
69   extern int GraalCreateSegmentDefaultValues[ 5 ];
70   extern int GraalCreateViaDefaultValues[ 5 ];
71   extern int GraalCreateBigViaDefaultValues[ 5 ];
72   extern int GraalCreateTransistorDefaultValues[ 5 ];
73   extern int GraalCreateConnectorDefaultValues[ 5 ];
74   extern int GraalCreateReferenceDefaultValues[ 5 ];
75   extern int GraalCreateInstanceDefaultValues[ 5 ];
76 
77 /*------------------------------------------------------------\
78 |                                                             |
79 |                          Functions                          |
80 |                                                             |
81 \------------------------------------------------------------*/
82 
83   extern void GraalBuildPanelCreate();
84   extern void GraalBuildCreateDialog();
85   extern void GraalCreateSegmentMbk();
86   extern void GraalCreateViaMbk();
87   extern void GraalCreateBigViaMbk();
88   extern void GraalCreateTransistorMbk();
89   extern void GraalCreateConnectorMbk();
90   extern void GraalCreateReferenceMbk();
91   extern void GraalCreateInstanceMbk();
92   extern void GraalCreateAbutmentBoxMbk();
93 
94   extern void GraalChangeSegmentLayer();
95   extern void GraalChangeViaType();
96   extern void GraalChangeBigViaType();
97   extern void GraalChangeTransistorType();
98   extern void GraalChangeConnectorLayer();
99   extern void GraalChangeReferenceType();
100 
101 # endif
102 
103