#include "vncviewer.h"
#include <X11/Xaw/Dialog.h>
static Bool serverDialogDone = False;
static Bool passwordDialogDone = False;
void
ServerDialogDone(Widget w, XEvent *event, String *params, Cardinal *num_params)
{
serverDialogDone = True;
}
char *
DoServerDialog()
{
Widget pshell, dialog;
char *vncServerName;
char *valueString;
pshell = XtVaCreatePopupShell("serverDialog", transientShellWidgetClass,
toplevel, NULL);
dialog = XtVaCreateManagedWidget("dialog", dialogWidgetClass, pshell, NULL);
XtMoveWidget(pshell, WidthOfScreen(XtScreen(pshell))*2/5,
HeightOfScreen(XtScreen(pshell))*2/5);
XtPopup(pshell, XtGrabNonexclusive);
XtRealizeWidget(pshell);
serverDialogDone = False;
while (!serverDialogDone) {
XtAppProcessEvent(appContext, XtIMAll);
}
valueString = XawDialogGetValueString(dialog);
vncServerName = XtNewString(valueString);
XtPopdown(pshell);
return vncServerName;
}
void
PasswordDialogDone(Widget w, XEvent *event, String *params,
Cardinal *num_params)
{
passwordDialogDone = True;
}
char *
DoPasswordDialog()
{
Widget pshell, dialog;
char *password;
char *valueString;
pshell = XtVaCreatePopupShell("passwordDialog", transientShellWidgetClass,
toplevel, NULL);
dialog = XtVaCreateManagedWidget("dialog", dialogWidgetClass, pshell, NULL);
XtMoveWidget(pshell, WidthOfScreen(XtScreen(pshell))*2/5,
HeightOfScreen(XtScreen(pshell))*2/5);
XtPopup(pshell, XtGrabNonexclusive);
XtRealizeWidget(pshell);
passwordDialogDone = False;
while (!passwordDialogDone) {
XtAppProcessEvent(appContext, XtIMAll);
}
valueString = XawDialogGetValueString(dialog);
password = XtNewString(valueString);
XtPopdown(pshell);
return password;
}