~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/Xmt310/Xmt/ScreenP.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Motif Tools Library, Version 3.1
 
3
 * $Id$
 
4
 * 
 
5
 * Written by David Flanagan.
 
6
 * Copyright (c) 1992-2001 by David Flanagan.
 
7
 * All Rights Reserved.  See the file COPYRIGHT for details.
 
8
 * This is open source software.  See the file LICENSE for details.
 
9
 * There is no warranty for this software.  See NO_WARRANTY for details.
 
10
 *
 
11
 * $Log$
 
12
 * Revision 1.1.1.1  2001/07/18 11:06:03  root
 
13
 * Initial checkin.
 
14
 *
 
15
 * Revision 1.2  2001/06/12 16:25:28  andre
 
16
 * *** empty log message ***
 
17
 *
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef _XmtScreenP_h
 
22
#define _XmtScreenP_h
 
23
 
 
24
#include <Xmt/DialogsP.h>
 
25
 
 
26
typedef struct {
 
27
    Widget topmost_shell;  /* used as dialog parent */
 
28
    XmtDialogCache help_dialog_cache;
 
29
    Widget working_dialog;
 
30
    Widget string_dialog;     /* dialog for XmtAskForString() */
 
31
    Widget boolean_dialog;    /* dialog for XmtAskForBoolean() */
 
32
    Widget file_dialog;       /* dialog for by XmtAskForFilename() */
 
33
    Widget item_dialog;       /* dialog for XmtAskForItem[Number]() */
 
34
/* _AA added XmtAskForTime(), XmtAskForMemory() */
 
35
    Widget time_dialog;
 
36
    Widget memory_dialog;
 
37
    Widget items_dialog;
 
38
/******_AA******************/
 
39
    struct {                  /* internal widgets of the boolean dialog */
 
40
        Widget icon, message;
 
41
        Widget yes, no, cancel, help;
 
42
        Boolean show_cancel_button;
 
43
    } boolean_internals;
 
44
    Boolean blocked;          /* flag for recursive event loops */
 
45
    XmtButtonType button;     /* which button was pressed */
 
46
    StringConst help_text;    /* help message used by _XmtHelpCallback() */
 
47
    StringConst file_mode;    /* whether and how to open the FSB file */
 
48
    FILE *selected_file;      /* temp. storage for the opened file */
 
49
} XmtPerScreenInfo;
 
50
 
 
51
_XFUNCPROTOBEGIN
 
52
#if NeedFunctionPrototypes
 
53
extern XmtPerScreenInfo *XmtGetPerScreenInfo(Widget);
 
54
#else
 
55
extern XmtPerScreenInfo *XmtGetPerScreenInfo();
 
56
#endif
 
57
_XFUNCPROTOEND
 
58
 
 
59
#endif /* _XmtScreenP_h */