123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- /*
- * 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
- */
- /* $XConsortium: SmHelp.c /main/4 1995/10/30 09:35:21 rswiston $ */
- /* *
- * (c) Copyright 1993, 1994 Hewlett-Packard Company *
- * (c) Copyright 1993, 1994 International Business Machines Corp. *
- * (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
- * (c) Copyright 1993, 1994 Novell, Inc. *
- */
- /*************************************<+>*************************************
- *****************************************************************************
- **
- ** File: SmHelp.c
- **
- ** Project: HP DT Session Manager (dtsession)
- **
- ** Description:
- ** -----------
- ** This module is in charge of all interaction between the session
- ** manager and the help subsystem. Anytime the user requests help,
- ** it goes through this routine.
- **
- **
- **
- *******************************************************************
- ** (c) Copyright Hewlett-Packard Company, 1990. All rights are
- ** reserved. Copying or other reproduction of this program
- ** except for archival purposes is prohibited without prior
- ** written consent of Hewlett-Packard Company.
- ********************************************************************
- **
- **
- **
- *****************************************************************************
- *************************************<+>*************************************/
- #include <stdio.h>
- #include <X11/Intrinsic.h>
- #include <X11/Shell.h>
- #include <Xm/Xm.h>
- #include <Xm/MwmUtil.h>
- #include <Dt/HelpQuickD.h>
- #include "Sm.h"
- #include "SmUI.h"
- #include "SmHelp.h"
- #include "SmGlobals.h"
- /*
- * #define statements
- */
- /*
- * Global variables
- */
- /*
- * Local Function Declarations
- */
- static void CloseHelpDialog (Widget, XtPointer, XtPointer);
- /*************************************<->*************************************
- *
- * TopicHelpRequested ()
- *
- *
- * Description:
- * -----------
- * When a user requests help on a given topic - display that topic in a
- * new or cached help dialog
- *
- *
- * Inputs:
- * ------
- * client_data - the id that is sent to Cache Creek which tells it which
- * topic to display
- *
- *
- * Outputs:
- * -------
- * None.
- *
- *
- * Comments:
- * --------
- *
- *************************************<->***********************************/
- void
- TopicHelpRequested(
- Widget w,
- XtPointer client_data,
- XtPointer call_data )
- {
- int i;
- char *locationId = (char *) client_data;
- Widget transientShell;
- Arg setArgs2[5];
- int n2;
- Widget printButton = NULL;
- Widget helpButton = NULL;
- Widget backButton = NULL;
- Widget okButton = NULL;
- /*
- * Find the shell to make this a transient for for
- */
- transientShell = w;
- while(!XtIsSubclass(transientShell, shellWidgetClass))
- {
- transientShell = XtParent(transientShell);
- }
- if((smDD.smHelpDialog != NULL) &&
- (XtIsManaged(smDD.smHelpDialog)))
- {
- return ;
- }
- /*
- * Use the help dialog already created if it has been - otherwise
- * create it
- */
- if (smDD.smHelpDialog != NULL)
- {
- i = 0;
- XtSetArg(uiArgs[i], DtNlocationId,locationId); i++;
- XtSetValues(smDD.smHelpDialog, uiArgs, i);
- i = 0;
- XtSetArg(uiArgs[i], XmNtransientFor, transientShell); i++;
- XtSetValues(XtParent(smDD.smHelpDialog), uiArgs, i);
-
- XtManageChild(smDD.smHelpDialog);
- }
- else
- {
- i = 0;
- XtSetArg(uiArgs[i], XmNtitle, GETMESSAGE(29, 1,
- "Session Manager Help")); i++;
- XtSetArg (uiArgs[i],DtNhelpVolume, SM_HELP_VOLUME); i++;
- XtSetArg (uiArgs[i],DtNhelpType, DtHELP_TYPE_TOPIC); i++;
- XtSetArg (uiArgs[i], DtNlocationId,locationId); i++;
- smDD.smHelpDialog = DtCreateHelpQuickDialog(smGD.topLevelWid,
- "helpWidget", uiArgs, i);
- i = 0;
- XtSetArg(uiArgs[i], XmNtransientFor, transientShell); i++;
- XtSetValues(XtParent(smDD.smHelpDialog), uiArgs, i);
-
-
- XtAddCallback(smDD.smHelpDialog, DtNcloseCallback,
- CloseHelpDialog, NULL);
- okButton = DtHelpQuickDialogGetChild(smDD.smHelpDialog,
- DtHELP_QUICK_CLOSE_BUTTON );
- n2=0;
- XtSetArg (setArgs2[n2], XmNlabelString, smDD.okString); n2++;
- XtSetValues(okButton, setArgs2, n2);
- printButton = DtHelpQuickDialogGetChild(smDD.smHelpDialog,
- DtHELP_QUICK_PRINT_BUTTON );
- helpButton = DtHelpQuickDialogGetChild(smDD.smHelpDialog,
- DtHELP_QUICK_HELP_BUTTON );
- backButton = DtHelpQuickDialogGetChild(smDD.smHelpDialog,
- DtHELP_QUICK_BACK_BUTTON );
- XtUnmanageChild(printButton);
- XtUnmanageChild(helpButton);
- XtUnmanageChild(backButton);
-
- XtAddCallback (XtParent(smDD.smHelpDialog), XmNpopupCallback,
- DialogUp, NULL);
- XtManageChild(smDD.smHelpDialog);
- }
- }
- /*************************************<->*************************************
- *
- * CloseHelpDialog ()
- *
- *
- * Description:
- * -----------
- * This callback is called when the user wishes to dismiss the help callback
- *
- *
- * Inputs:
- * ------
- *
- *
- * Outputs:
- * -------
- *
- *
- * Comments:
- * --------
- *
- *************************************<->***********************************/
- static void
- CloseHelpDialog (Widget w,
- XtPointer clientData,
- XtPointer callData)
- {
- XtUnmanageChild(smDD.smHelpDialog);
- }
|