2006-11-26 03:43:56 -07:00
|
|
|
|
/* $Xorg: mainwin.c,v 1.4 2001/02/09 02:06:01 xorgcvs Exp $ */
|
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
|
|
Copyright 1993, 1998 The Open Group
|
|
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
the above copyright notice appear in all copies and that both that
|
|
|
|
|
copyright notice and this permission notice appear in supporting
|
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
Except as contained in this notice, the name of The Open Group shall not be
|
|
|
|
|
used in advertising or otherwise to promote the sale, use or other dealings
|
|
|
|
|
in this Software without prior written authorization from The Open Group.
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
/* $XFree86: xc/programs/xsm/mainwin.c,v 1.4 2001/01/17 23:46:29 dawes Exp $ */
|
|
|
|
|
|
|
|
|
|
#include "xsm.h"
|
|
|
|
|
#include "info.h"
|
|
|
|
|
#include "save.h"
|
|
|
|
|
#include "log.h"
|
|
|
|
|
#include "mainwin.h"
|
|
|
|
|
|
|
|
|
|
#include <X11/Shell.h>
|
|
|
|
|
#include <X11/Xaw/Form.h>
|
|
|
|
|
#include <X11/Xaw/Command.h>
|
|
|
|
|
#include <X11/Xaw/SimpleMenu.h>
|
|
|
|
|
#include <X11/Xaw/MenuButton.h>
|
|
|
|
|
#include <X11/Xaw/SmeBSB.h>
|
|
|
|
|
|
|
|
|
|
Widget mainWindow;
|
|
|
|
|
Widget clientInfoButton;
|
|
|
|
|
Widget logButton;
|
|
|
|
|
Widget checkPointButton;
|
|
|
|
|
Widget shutdownButton;
|
2010-10-31 14:17:58 -06:00
|
|
|
|
static Widget shutdownMenu;
|
|
|
|
|
static Widget shutdownSave;
|
2006-11-26 03:43:56 -07:00
|
|
|
|
Widget shutdownDontSave;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
DelMainWinAction(Widget w, XEvent *event, String *params, Cardinal *num_params)
|
|
|
|
|
{
|
|
|
|
|
XtCallCallbacks (shutdownSave, XtNcallback, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
create_main_window (void)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Main window
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static XtActionsRec actions[] = {
|
|
|
|
|
{"DelMainWinAction", DelMainWinAction}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
mainWindow = XtVaCreateManagedWidget (
|
|
|
|
|
"mainWindow", formWidgetClass, topLevel,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
clientInfoButton = XtVaCreateManagedWidget (
|
|
|
|
|
"clientInfoButton", commandWidgetClass, mainWindow,
|
|
|
|
|
XtNfromHoriz, NULL,
|
|
|
|
|
XtNfromVert, NULL,
|
|
|
|
|
XtNresizable, True,
|
|
|
|
|
XtNjustify, XtJustifyLeft,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
XtAddCallback (clientInfoButton, XtNcallback, ClientInfoXtProc, NULL);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
|
|
|
|
|
logButton = XtVaCreateManagedWidget (
|
|
|
|
|
"logButton", commandWidgetClass, mainWindow,
|
|
|
|
|
XtNfromHoriz, clientInfoButton,
|
|
|
|
|
XtNfromVert, NULL,
|
|
|
|
|
XtNresizable, True,
|
|
|
|
|
XtNjustify, XtJustifyLeft,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
XtAddCallback (logButton, XtNcallback, DisplayLogXtProc, NULL);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
|
|
|
|
|
checkPointButton = XtVaCreateManagedWidget (
|
|
|
|
|
"checkPointButton", commandWidgetClass, mainWindow,
|
|
|
|
|
XtNfromHoriz, NULL,
|
|
|
|
|
XtNfromVert, clientInfoButton,
|
|
|
|
|
XtNresizable, True,
|
|
|
|
|
XtNjustify, XtJustifyLeft,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
XtAddCallback (checkPointButton, XtNcallback, CheckPointXtProc, NULL);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
|
|
|
|
|
shutdownButton = XtVaCreateManagedWidget (
|
|
|
|
|
"shutdownButton", menuButtonWidgetClass, mainWindow,
|
|
|
|
|
XtNmenuName, "shutdownMenu",
|
|
|
|
|
XtNfromHoriz, checkPointButton,
|
|
|
|
|
XtNfromVert, clientInfoButton,
|
|
|
|
|
XtNresizable, True,
|
|
|
|
|
XtNjustify, XtJustifyLeft,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
shutdownMenu = XtVaCreatePopupShell (
|
|
|
|
|
"shutdownMenu", simpleMenuWidgetClass, mainWindow,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
shutdownSave = XtVaCreateManagedWidget (
|
|
|
|
|
"shutdownSave", smeBSBObjectClass, shutdownMenu,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
shutdownDontSave = XtVaCreateManagedWidget (
|
|
|
|
|
"shutdownDontSave", smeBSBObjectClass, shutdownMenu,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
XtAddCallback (shutdownSave, XtNcallback, ShutdownSaveXtProc, NULL);
|
|
|
|
|
XtAddCallback (shutdownDontSave, XtNcallback, ShutdownDontSaveXtProc, NULL);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
|
|
|
|
|
XtAppAddActions (appContext, actions, XtNumber (actions));
|
|
|
|
|
}
|