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    :                  Dialog.h                         |
33 |                                                             |
34 | Author  :                Jacomme Ludovic                    |
35 |                                                             |
36 | Date    :                  28.03.95                         |
37 |                                                             |
38 \------------------------------------------------------------*/
39 
40 /*------------------------------------------------------------\
41 |                                                             |
42 |                         Include Files                       |
43 |                                                             |
44 \------------------------------------------------------------*/
45 
46 # ifndef GRAAL_CREATE_DIALOG
47 # define GRAAL_CREATE_DIALOG
48 
49 /*------------------------------------------------------------\
50 |                                                             |
51 |                           Constants                         |
52 |                                                             |
53 \------------------------------------------------------------*/
54 /*------------------------------------------------------------\
55 |                                                             |
56 |                            Types                            |
57 |                                                             |
58 \------------------------------------------------------------*/
59 /*------------------------------------------------------------\
60 |                                                             |
61 |                          Variables                          |
62 |                                                             |
63 \------------------------------------------------------------*/
64 
65   extern char            GraalCreateDialogCancel;
66 
67   extern GraalDialogItem GraalChangeSegmentWidthDialog;
68   extern GraalDialogItem GraalChangeSegmentNameDialog;
69   extern GraalDialogItem GraalChangeViaNameDialog;
70   extern GraalDialogItem GraalChangeBigViaNameDialog;
71   extern GraalDialogItem GraalChangeTransistorWidthDialog;
72   extern GraalDialogItem GraalChangeTransistorNameDialog;
73   extern GraalDialogItem GraalChangeConnectorWidthDialog;
74   extern GraalDialogItem GraalChangeConnectorNameDialog;
75   extern GraalDialogItem GraalChangeReferenceNameDialog;
76   extern GraalDialogItem GraalChangeInstanceNameDialog;
77   extern GraalDialogItem GraalChangeInstanceModelDialog;
78 
79 /*------------------------------------------------------------\
80 |                                                             |
81 |                          Functions                          |
82 |                                                             |
83 \------------------------------------------------------------*/
84 
85   extern void CallbackChangeSegmentWidthOk();
86   extern void CallbackChangeSegmentWidthCancel();
87   extern void CallbackChangeSegmentNameOk();
88   extern void CallbackChangeSegmentNameCancel();
89 
90   extern void CallbackChangeViaNameOk();
91   extern void CallbackChangeViaNameCancel();
92 
93   extern void CallbackChangeBigViaNameOk();
94   extern void CallbackChangeBigViaNameCancel();
95 
96   extern void CallbackChangeTransistorWidthOk();
97   extern void CallbackChangeTransistorWidthCancel();
98   extern void CallbackChangeTransistorNameOk();
99   extern void CallbackChangeTransistorNameCancel();
100 
101   extern void CallbackChangeConnectorWidthOk();
102   extern void CallbackChangeConnectorWidthCancel();
103   extern void CallbackChangeConnectorNameOk();
104   extern void CallbackChangeConnectorNameCancel();
105 
106   extern void CallbackChangeReferenceNameOk();
107   extern void CallbackChangeReferenceNameCancel();
108 
109   extern void CallbackChangeInstanceNameOk();
110   extern void CallbackChangeInstanceNameCancel();
111   extern void CallbackChangeInstanceModelOk();
112   extern void CallbackChangeInstanceModelCancel();
113 
114   extern void GraalEnterChangeInstanceModelDialog();
115 
116 # endif
117