3e1db26a5a
Removing elvis, importing nvi, ctags, updating libedit. Change-Id: I881eb04d2dc64cf112facd992de1114e1a59107f
82 lines
1.9 KiB
C
82 lines
1.9 KiB
C
/* $NetBSD: m_prompt.c,v 1.1.1.2 2008/05/18 14:31:27 aymeric Exp $ */
|
||
|
||
/*-
|
||
* Copyright (c) 1996
|
||
* Rob Zimmermann. All rights reserved.
|
||
* Copyright (c) 1996
|
||
* Keith Bostic. All rights reserved.
|
||
*
|
||
* See the LICENSE file for redistribution information.
|
||
*/
|
||
|
||
#include "config.h"
|
||
|
||
#ifndef lint
|
||
static const char sccsid[] = "Id: m_prompt.c,v 8.8 2003/11/05 17:10:00 skimo Exp (Berkeley) Date: 2003/11/05 17:10:00";
|
||
#endif /* not lint */
|
||
|
||
#include <sys/types.h>
|
||
#include <sys/queue.h>
|
||
|
||
#include <X11/X.h>
|
||
#include <X11/Intrinsic.h>
|
||
#include <Xm/MessageB.h>
|
||
|
||
#include <bitstring.h>
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
#include <string.h>
|
||
|
||
#undef LOCK_SUCCESS
|
||
#include "../common/common.h"
|
||
#include "../ipc/ip.h"
|
||
#include "m_motif.h"
|
||
|
||
|
||
void vi_fatal_message(Widget parent, String str)
|
||
{
|
||
Widget db = XmCreateErrorDialog( parent, "Fatal", NULL, 0 );
|
||
XmString msg = XmStringCreateSimple( str );
|
||
|
||
XtVaSetValues( XtParent(db),
|
||
XmNtitle, "Fatal",
|
||
0
|
||
);
|
||
XtVaSetValues( db,
|
||
XmNmessageString, msg,
|
||
0
|
||
);
|
||
XtAddCallback( XtParent(db), XmNpopdownCallback, __vi_cancel_cb, 0 );
|
||
|
||
XtUnmanageChild( XmMessageBoxGetChild( db, XmDIALOG_CANCEL_BUTTON ) );
|
||
XtUnmanageChild( XmMessageBoxGetChild( db, XmDIALOG_HELP_BUTTON ) );
|
||
|
||
__vi_modal_dialog( db );
|
||
|
||
exit(0);
|
||
}
|
||
|
||
|
||
void vi_info_message(Widget parent, String str)
|
||
{
|
||
static Widget db = NULL;
|
||
XmString msg = XmStringCreateSimple( str );
|
||
|
||
if ( db == NULL )
|
||
db = XmCreateInformationDialog( parent, "Information", NULL, 0 );
|
||
|
||
XtVaSetValues( XtParent(db),
|
||
XmNtitle, "Information",
|
||
0
|
||
);
|
||
XtVaSetValues( db,
|
||
XmNmessageString, msg,
|
||
0
|
||
);
|
||
XtAddCallback( XtParent(db), XmNpopdownCallback, __vi_cancel_cb, 0 );
|
||
|
||
XtUnmanageChild( XmMessageBoxGetChild( db, XmDIALOG_CANCEL_BUTTON ) );
|
||
XtUnmanageChild( XmMessageBoxGetChild( db, XmDIALOG_HELP_BUTTON ) );
|
||
|
||
__vi_modal_dialog( db );
|
||
}
|