123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /* $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;
- static Widget shutdownMenu;
- static Widget shutdownSave;
- 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);
- XtAddCallback (clientInfoButton, XtNcallback, ClientInfoXtProc, NULL);
- logButton = XtVaCreateManagedWidget (
- "logButton", commandWidgetClass, mainWindow,
- XtNfromHoriz, clientInfoButton,
- XtNfromVert, NULL,
- XtNresizable, True,
- XtNjustify, XtJustifyLeft,
- NULL);
- XtAddCallback (logButton, XtNcallback, DisplayLogXtProc, NULL);
- checkPointButton = XtVaCreateManagedWidget (
- "checkPointButton", commandWidgetClass, mainWindow,
- XtNfromHoriz, NULL,
- XtNfromVert, clientInfoButton,
- XtNresizable, True,
- XtNjustify, XtJustifyLeft,
- NULL);
- XtAddCallback (checkPointButton, XtNcallback, CheckPointXtProc, NULL);
- 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);
- XtAddCallback (shutdownSave, XtNcallback, ShutdownSaveXtProc, NULL);
- XtAddCallback (shutdownDontSave, XtNcallback, ShutdownDontSaveXtProc, NULL);
- XtAppAddActions (appContext, actions, XtNumber (actions));
- }
|