- update 2000 -> 2004

This commit is contained in:
Ludovic Jacomme 2004-07-29 10:10:52 +00:00
parent 748a05efbf
commit edb0b3d34e
8 changed files with 17 additions and 18 deletions

View File

@ -281,7 +281,7 @@ void DrealBuildPresentPanel()
); );
XmStringFree( PanelString ); XmStringFree( PanelString );
PanelString = XmStringCreateLtoR( "copyright \251 1995-2000 ASIM, \ PanelString = XmStringCreateLtoR( "copyright \251 1995-2004 ASIM, \
CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" ); CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" );
PanelLabel = XtVaCreateManagedWidget( "", PanelLabel = XtVaCreateManagedWidget( "",

View File

@ -285,7 +285,7 @@ void GraalBuildPresentPanel()
); );
XmStringFree( PanelString ); XmStringFree( PanelString );
PanelString = XmStringCreateLtoR( "copyright \251 1996-2000 ASIM, \ PanelString = XmStringCreateLtoR( "copyright \251 1996-2004 ASIM, \
CAO-VLSI Team\nWritten by Ludovic Jacomme and Frederic Venot\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" ); CAO-VLSI Team\nWritten by Ludovic Jacomme and Frederic Venot\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" );
PanelLabel = XtVaCreateManagedWidget( "", PanelLabel = XtVaCreateManagedWidget( "",

View File

@ -283,7 +283,7 @@ void XfsmBuildPresentPanel()
); );
XmStringFree( PanelString ); XmStringFree( PanelString );
PanelString = XmStringCreateLtoR( "copyright \251 1995-2000 ASIM, \ PanelString = XmStringCreateLtoR( "copyright \251 1995-2004 ASIM, \
CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" ); CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" );
PanelLabel = XtVaCreateManagedWidget( "", PanelLabel = XtVaCreateManagedWidget( "",

View File

@ -282,7 +282,7 @@ void XpatBuildPresentPanel()
); );
XmStringFree( PanelString ); XmStringFree( PanelString );
PanelString = XmStringCreateLtoR( "copyright \251 1996-2000 ASIM, \ PanelString = XmStringCreateLtoR( "copyright \251 1996-2004 ASIM, \
CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" ); CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" );

View File

@ -280,7 +280,7 @@ void XschBuildPresentPanel()
); );
XmStringFree( PanelString ); XmStringFree( PanelString );
PanelString = XmStringCreateLtoR( "copyright \251 1996-2000 ASIM, \ PanelString = XmStringCreateLtoR( "copyright \251 1996-2004 ASIM, \
CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" ); CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" );
PanelLabel = XtVaCreateManagedWidget( "", PanelLabel = XtVaCreateManagedWidget( "",

View File

@ -279,7 +279,7 @@ void XvpnBuildPresentPanel()
); );
XmStringFree( PanelString ); XmStringFree( PanelString );
PanelString = XmStringCreateLtoR( "copyright \251 1996-2000 ASIM, \ PanelString = XmStringCreateLtoR( "copyright \251 1996-2004 ASIM, \
CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" ); CAO-VLSI Team\nWritten by Ludovic Jacomme\nE-mail : alliance-users@asim.lip6.fr", "Panel_charset4" );
PanelLabel = XtVaCreateManagedWidget( "", PanelLabel = XtVaCreateManagedWidget( "",

View File

@ -739,7 +739,7 @@ void CallbackExpose( MyWidget, ClientData, CallData )
XvpnDisplayCursor(); XvpnDisplayCursor();
} }
XvpnEnterPresentPanel(); /* XvpnEnterPresentPanel(); */
} }
else else
{ {

View File

@ -324,26 +324,25 @@ void XvpnLimitedLoop( MyWidget )
switch ( AnyEvent->type ) switch ( AnyEvent->type )
{ {
case KeyRelease : case ButtonPress :
case ButtonRelease : case ButtonRelease :
if (WShell == DialogShell) XtDispatchEvent(&Event); if ( WShell == DialogShell )
{
XtDispatchEventToWidget(
XtWindowToWidget( AnyEvent->display, AnyEvent->window ),
&Event );
}
break; break;
case KeyPress : case KeyPress :
case ButtonPress : case KeyRelease :
if (WShell != DialogShell) if ( WShell != DialogShell )
{ {
XBell( AnyEvent->display, 0 ); AnyEvent->window = XtWindow( WShell );
XtPopup( WShell, XtGrabNone );
} }
else
{
XtDispatchEvent( &Event );
}
break;
default : default :