123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /*
- * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
- * ALL RIGHTS RESERVED
- */
- /*
- * Motif Release 1.2.1
- */
- /*
- * (c) Copyright 1987, 1988, 1989, 1990 HEWLETT-PACKARD COMPANY */
- /*
- * Included Files:
- */
- #include "WmGlobal.h"
- #include <locale.h>
- #include <Dt/Message.h>
- #include <Dt/EnvControlP.h>
- /*
- * include extern functions
- */
- #include "WmCEvent.h"
- #include "WmEvent.h"
- #include "WmInitWs.h"
- #include "WmError.h"
- #include "WmIPC.h"
- #include "WmBackdrop.h"
- /*
- * Function Declarations:
- */
- int WmReturnIdentity (int argc, char *argv[], char *environ[]);
- #define ManagedRoot(w) (!XFindContext (DISPLAY, (w), wmGD.screenContextType, \
- (caddr_t *)&pSD) ? (SetActiveScreen (pSD), True) : \
- (IsBackdropWindow (ACTIVE_PSD, (w))))
- WmScreenData *pSD;
- /*
- * Global Variables:
- */
- WmGlobalData wmGD;
- #ifndef NO_MESSAGE_CATALOG
- NlsStrings wmNLS;
- #endif
- int WmIdentity;
- /*************************************<->*************************************
- *
- * main (argc, argv, environ)
- *
- *
- * Description:
- * -----------
- * This is the main window manager function. It calls window manager
- * initializtion functions and has the main event processing loop.
- *
- *
- * Inputs:
- * ------
- * argc = number of command line arguments (+1)
- *
- * argv = window manager command line arguments
- *
- * environ = window manager environment
- *
- *************************************<->***********************************/
- int
- main (int argc, char *argv [], char *environ [])
- {
- XEvent event;
- Boolean dispatchEvent;
- setlocale(LC_ALL, "");
- /*
- * Set up environment variables for this HP DT client
- */
- _DtEnvControl(DT_ENV_SET);
- /*
- * Force LANG lookup early.
- * (Front end may change $LANG to 'C' as part
- * of string space reduction optimization.)
- */
- {
- char * foo = ((char *)GETMESSAGE(44, 1, ""));
- }
- XtSetLanguageProc (NULL, (XtLanguageProc)NULL, NULL);
- /*
- * Get Identity
- */
- WmIdentity = WmReturnIdentity(argc, argv, environ);
- /*
- * Initialize the workspace:
- */
- InitWmGlobal (argc, argv, environ);
- /*
- * Set up PATH variable if it must run as standalone command
- * invoker
- */
- if (wmGD.dtLite)
- {
- _DtEnvControl(DT_ENV_SET_BIN);
- }
-
- /*
- * MAIN EVENT HANDLING LOOP:
- */
- for (;;)
- {
- XtAppNextEvent (wmGD.mwmAppContext, &event);
- /*
- * Check for, and process non-widget events. The events may be
- * reported to the root window, to some client frame window,
- * to an icon window, or to a "special" window management window.
- * The lock modifier is "filtered" out for window manager processing.
- */
- wmGD.attributesWindow = 0L;
- if ((event.type == ButtonPress) ||
- (event.type == ButtonRelease))
- {
- if ((wmGD.evLastButton.button != 0) &&
- ReplayedButtonEvent (&(wmGD.evLastButton),
- &(event.xbutton)))
- {
- wmGD.bReplayedButton = True;
- }
- else
- {
- /* save this button for next comparison */
- memcpy (&wmGD.evLastButton, &event, sizeof (XButtonEvent));
- wmGD.bReplayedButton = False;
- }
- }
- dispatchEvent = True;
- if (wmGD.menuActive)
- {
- /*
- * Do special menu event preprocessing.
- */
- if (wmGD.checkHotspot || wmGD.menuUnpostKeySpec ||
- wmGD.menuActive->accelKeySpecs)
- {
- dispatchEvent = WmDispatchMenuEvent ((XButtonEvent *) &event);
- }
- }
- if (dispatchEvent)
- {
- if (ManagedRoot(event.xany.window))
- {
- dispatchEvent = WmDispatchWsEvent (&event);
- }
- else
- {
- dispatchEvent = WmDispatchClientEvent (&event);
- }
- if (dispatchEvent)
- {
- /*
- * Dispatch widget related event:
- */
- XtDispatchEvent (&event);
- }
- }
- }
- } /* END OF FUNCTION main */
- /******************************<->*************************************
- *
- * WmReturnIdentity (argc, argv, environ)
- *
- *
- * Description:
- * -----------
- * This function checks the last component of the (path)name
- * contained in argv[0] and makes a global decision as to whether
- * it should fetch resources as mwm or dtwm.
- *
- * Inputs:
- * ------
- * argc = number of command line arguments (+1)
- *
- * argv = window manager command line arguments
- *
- * environ = window manager environment
- *
- ******************************<->***********************************/
- int WmReturnIdentity ( int argc, char *argv[], char *environ[])
- {
- char *tempString;
- char *origPtr;
- /* assume it's dtwm until proven differently */
- int retVal = DT_MWM;
- if (!(tempString =
- (char *)(XtMalloc ((unsigned int)(strlen (argv[0]) + 1)))))
- {
- Warning(((char *)GETMESSAGE(44, 2, "Insufficient memory for name of window manager")));
- exit(WM_ERROR_EXIT_VALUE);
- }
- origPtr = tempString;
- if (strrchr(argv[0], '/'))
- {
-
- strcpy(tempString, (strrchr(argv[0], '/')));
- tempString++;
- }
- else
- strcpy(tempString, argv[0]);
- if (!(strcmp(tempString, WM_RESOURCE_NAME)))
- /*
- *
- * If it's explicity "mwm", then set our identity anew.
- *
- */
- {
- retVal = MWM;
- }
- XtFree((char *)origPtr);
- return(retVal);
- } /* END OF FUNCTION WmReturnIdentity */
- /************************* eof ******************************/
|