/*------------------------------------------------------------\ | | | This file is part of the Alliance CAD System Copyright | | (C) Laboratoire LIP6 - Département ASIM Universite P&M Curie| | | | Home page : http://www-asim.lip6.fr/alliance/ | | E-mail : mailto:alliance-users@asim.lip6.fr | | | | This progam is free software; you can redistribute it | | and/or modify it under the terms of the GNU General Public | | License as published by the Free Software Foundation; | | either version 2 of the License, or (at your option) any | | later version. | | | | Alliance VLSI CAD System is distributed in the hope that | | it will be useful, but WITHOUT ANY WARRANTY; | | without even the implied warranty of MERCHANTABILITY or | | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | | Public License for more details. | | | | You should have received a copy of the GNU General Public | | License along with the GNU C Library; see the file COPYING. | | If not, write to the Free Software Foundation, Inc., | | 675 Mass Ave, Cambridge, MA 02139, USA. | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Tool : GRAAL | | | | File : dialog.c | | | | Author : Jacomme Ludovic | | | | Date : 28.03.95 | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Include Files | | | \------------------------------------------------------------*/ # include # include # include # include # include # include "mut.h" # include "rds.h" # include "GTB.h" # include "GTB_dialog.h" /*------------------------------------------------------------\ | | | Constants | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Types | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Variables | | | \------------------------------------------------------------*/ static GraalLockLoop = 0; static GraalDialogItem GraalWarningDialog = { "Warning", GRAAL_DIALOG_WARNING, (Widget)NULL, (void *)NULL, (XtPointer)NULL, (void *)NULL, (XtPointer)NULL }; static GraalDialogItem GraalErrorDialog = { "Error", GRAAL_DIALOG_ERROR, (Widget)NULL, (void *)NULL, (XtPointer)NULL, (void *)NULL, (XtPointer)NULL }; /*------------------------------------------------------------\ | | | Functions | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | GraalDestroyDialogCallback | | | \------------------------------------------------------------*/ void GraalDestroyDialogCallback( MyWidget, ClientData, CallData ) Widget MyWidget; caddr_t ClientData; caddr_t CallData; { GraalLockLoop = 0; GraalExitErrorMessage( 1 ); } /*------------------------------------------------------------\ | | | GraalExitDialogCallback | | | \------------------------------------------------------------*/ void GraalExitDialogCallback() { rdsbegin(); GraalExitDialog(); rdsend(); } /*------------------------------------------------------------\ | | | GraalBuildDialog | | | \------------------------------------------------------------*/ void GraalBuildDialog( Father, Dialog ) Widget Father; GraalDialogItem *Dialog; { Arg Args[3]; XmString Label; rdsbegin(); Label = XmStringCreateLtoR( Dialog->LABEL, XmSTRING_DEFAULT_CHARSET ); if ( Dialog->TYPE < GRAAL_DIALOG_FILE ) { XtSetArg( Args[0], XmNmessageString , Label); } else { XtSetArg( Args[0], XmNselectionLabelString, Label); } XtSetArg( Args[1], XmNdeleteResponse, XmDO_NOTHING ); XtSetArg( Args[2], XmNtitle, " " ); switch ( Dialog->TYPE ) { case GRAAL_DIALOG_MESSAGE : Dialog->WIDGET = XmCreateMessageDialog( Father, Dialog->LABEL, Args, 3); break; case GRAAL_DIALOG_ERROR : Dialog->WIDGET = XmCreateErrorDialog( Father, Dialog->LABEL, Args, 3); break; case GRAAL_DIALOG_INFO : Dialog->WIDGET = XmCreateInformationDialog( Father, Dialog->LABEL, Args, 3); break; case GRAAL_DIALOG_QUESTION : Dialog->WIDGET = XmCreateQuestionDialog( Father, Dialog->LABEL, Args, 3); break; case GRAAL_DIALOG_WARNING : Dialog->WIDGET = XmCreateWarningDialog( Father, Dialog->LABEL, Args, 3); break; case GRAAL_DIALOG_WORKING : Dialog->WIDGET = XmCreateWorkingDialog( Father, Dialog->LABEL, Args, 3); break; case GRAAL_DIALOG_FILE : Dialog->WIDGET = XmCreateFileSelectionDialog( Father, Dialog->LABEL, Args, 3); XtUnmanageChild( XmFileSelectionBoxGetChild( Dialog->WIDGET, XmDIALOG_FILTER_LABEL ) ); XtUnmanageChild( XmFileSelectionBoxGetChild( Dialog->WIDGET, XmDIALOG_FILTER_TEXT ) ); break; case GRAAL_DIALOG_PROMPT : Dialog->WIDGET = XmCreatePromptDialog( Father, Dialog->LABEL, Args, 3); XtUnmanageChild( XmSelectionBoxGetChild( Dialog->WIDGET, XmDIALOG_HELP_BUTTON ) ); } XmStringFree( Label ); XtAddCallback (Dialog->WIDGET, XmNdestroyCallback, GraalDestroyDialogCallback, NULL ); if ( Dialog->TYPE < GRAAL_DIALOG_FILE ) { XtUnmanageChild( XmMessageBoxGetChild( Dialog->WIDGET, XmDIALOG_HELP_BUTTON ) ); } if ( ( Dialog->CALLBACK_OK == NULL ) && ( Dialog->CALLBACK_CANCEL == NULL ) ) { XtAddCallback( Dialog->WIDGET, XmNokCallback, GraalExitDialogCallback, NULL ); } else { if ( Dialog->CALLBACK_OK == NULL ) { XtUnmanageChild( XmMessageBoxGetChild( Dialog->WIDGET, XmDIALOG_OK_BUTTON ) ); } else { XtAddCallback( Dialog->WIDGET, XmNokCallback, Dialog->CALLBACK_OK, Dialog->CALLDATA_OK ); } } if ( Dialog->CALLBACK_CANCEL == NULL ) { XtUnmanageChild( XmMessageBoxGetChild( Dialog->WIDGET, XmDIALOG_CANCEL_BUTTON ) ); } else { XtAddCallback( Dialog->WIDGET, XmNcancelCallback, Dialog->CALLBACK_CANCEL, Dialog->CALLDATA_CANCEL ); } rdsend(); } /*------------------------------------------------------------\ | | | GraalLimitedLoop | | | \------------------------------------------------------------*/ void GraalLimitedLoop( MyWidget ) Widget MyWidget; { Widget DialogShell, WShell; XEvent Event; XAnyEvent *AnyEvent; XtAppContext Context; rdsbegin(); Context = XtWidgetToApplicationContext( MyWidget ); GraalLockLoop = 1; for ( WShell = MyWidget; ! XtIsShell( WShell ); WShell = XtParent( WShell ) ); while( GraalLockLoop == 1 ) { XtAppNextEvent( Context, &Event ); AnyEvent = (XAnyEvent *)( &Event ); for ( DialogShell = XtWindowToWidget( AnyEvent->display, AnyEvent->window ); ((DialogShell != NULL ) && (!XtIsShell( DialogShell ))); DialogShell = XtParent(DialogShell)); switch ( AnyEvent->type ) { case ButtonPress : case ButtonRelease : if (WShell == DialogShell) { XtDispatchEventToWidget( XtWindowToWidget( AnyEvent->display, AnyEvent->window ), &Event ); } break; case KeyPress : case KeyRelease : if ( WShell != DialogShell ) { AnyEvent->window = XtWindow( WShell ); } default : XtDispatchEvent( &Event ); } } rdsend(); } /*------------------------------------------------------------\ | | | GraalEnterDialog | | | \------------------------------------------------------------*/ void GraalEnterDialog( Dialog ) GraalDialogItem *Dialog; { rdsbegin(); XtManageChild ( Dialog->WIDGET ); GraalLimitedLoop( Dialog->WIDGET ); XtUnmanageChild( Dialog->WIDGET ); rdsend(); } /*------------------------------------------------------------\ | | | GraalReEnterDialog | | | \------------------------------------------------------------*/ void GraalReEnterDialog() { GraalLockLoop = 1; } /*------------------------------------------------------------\ | | | GraalExitDialog | | | \------------------------------------------------------------*/ void GraalExitDialog() { GraalLockLoop = 0; } /*------------------------------------------------------------\ | | | GraalWarningMessage | | | \------------------------------------------------------------*/ void GraalWarningMessage( Father, Subject ) Widget Father; char *Subject; { XmString Label; rdsbegin(); if ( GraalWarningDialog.WIDGET == (Widget)NULL ) { GraalBuildDialog( Father, &GraalWarningDialog ); } Label = XmStringCreateLtoR( Subject, XmSTRING_DEFAULT_CHARSET ); XtVaSetValues( GraalWarningDialog.WIDGET, XmNmessageString, Label, NULL ); XmStringFree( Label ); GraalEnterDialog( &GraalWarningDialog ); rdsend(); } /*------------------------------------------------------------\ | | | GraalErrorMessage | | | \------------------------------------------------------------*/ void GraalErrorMessage( Father, Subject ) Widget Father; char *Subject; { XmString Label; rdsbegin(); if ( GraalErrorDialog.WIDGET == (Widget)NULL ) { GraalBuildDialog( Father, &GraalErrorDialog ); } Label = XmStringCreateLtoR( Subject, XmSTRING_DEFAULT_CHARSET ); XtVaSetValues( GraalErrorDialog.WIDGET, XmNmessageString, Label, NULL ); XmStringFree( Label ); GraalEnterDialog( &GraalErrorDialog ); rdsend(); }