File: CliP.h

package info (click to toggle)
gridengine 6.2-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 51,532 kB
  • ctags: 51,172
  • sloc: ansic: 418,155; java: 37,080; sh: 22,593; jsp: 7,699; makefile: 5,292; csh: 4,244; xml: 2,901; cpp: 2,086; perl: 1,895; tcl: 1,188; lisp: 669; ruby: 642; yacc: 393; lex: 266
file content (116 lines) | stat: -rw-r--r-- 4,311 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* 
 * Motif Tools Library, Version 3.1
 * $Id$
 * 
 * Written by David Flanagan.
 * Copyright (c) 1992-2001 by David Flanagan.
 * All Rights Reserved.  See the file COPYRIGHT for details.
 * This is open source software.  See the file LICENSE for details.
 * There is no warranty for this software.  See NO_WARRANTY for details.
 *
 * $Log$
 * Revision 1.1.1.1  2001/07/18 11:06:02  root
 * Initial checkin.
 *
 * Revision 1.2  2001/06/12 16:25:28  andre
 * *** empty log message ***
 *
 *
 */

#ifndef _XmtCliP_h
#define _XmtCliP_h    

#include <Xmt/Xmt.h>
#include <Xm/TextP.h>
#include <Xm/TextOutP.h>
#include <Xmt/Cli.h>

typedef struct {
    String translations;
    XtPointer extension;
} XmtCliClassPart;

typedef struct _XmtCliClassRec {
    CoreClassPart core_class;
    XmPrimitiveClassPart primitive_class;
    XmTextClassPart text_class;
    XmtCliClassPart cli_class;
} XmtCliClassRec;

externalref XmtCliClassRec xmtCliClassRec;

typedef struct _XmtCliPart {
    /* resources */
    Boolean save_history;     /* whether to save input in command history */
    char **history;           /* the command history */
    short history_num_items;  /* how many filled slots in the history */
    short history_max_items;  /* how many entries in command history */
    Boolean escape_newlines;  /* whether \ at end of line escapes newline */
    short save_lines;         /* minimum # of lines to save */
    Boolean display_stdout;   /* grab and display output to stdout? */
    Boolean display_stderr;   /* grab and display output to stderr? */
    int fildes;               /* display anything read from this descriptor */
    Boolean page_mode;        /* simulate the more command for long output? */
    String page_string;       /* the string to display for pager */
    XtCallbackList input_callback;  /* called when Return is typed */
    String prompt;            /* string displayed after each input */
    Widget page_widget;       /* an XmLabel widget */
    XtTranslations translations;

    /* private state */
    XmTextPosition inputpos;  /* where editable user input text begins */
    int total_lines;          /* total lines currently in widget */
    int last_read_line;       /* last line displayed, when paging */
    Boolean blocking;         /* flag when blocked in XmtCliGets */
    Boolean paging;           /* flag when paging output */
    int historypos;           /* the current location in the history */
    int pipes[2];             /* pipes for stdin and stdout */
    XtInputId stdID;          /* handle for stdin and stdout input proc */
    XtInputId fildesID;       /* handle for XmtNfildes input proc */
    int save_stdout;          /* a dup'ed copy of stdout */
    int save_stderr;          /* a dup'ed copy of stderr */
    XmTextPosition saved_cursor_position;  /* to restore cursor after drag */
    Boolean permissive;       /* disable motion & modify verify callbacks */
    Widget blank_widget;      /* to blank out the rest of the paging line */
    String input_string;      /* copy of the input string for modal input */
    Boolean has_newlines;     /* whether we need to remove \ \n sequences */
} XmtCliPart;

typedef struct _XmtCliRec {
    CorePart core;
    XmPrimitivePart primitive;
    XmTextPart text;
    XmtCliPart cli;
} XmtCliRec;

/*
 * macros for getting at the internal state of the text widget.
 * These work in both Motif 1.1 and Motif 1.2
 */
#define XmtCliTotalLines(w) (((XmtCliWidget)(w))->text.total_lines)
#define XmtCliTopLine(w) (((XmtCliWidget)(w))->text.top_line)
#define XmtCliVBar(w) (((XmtCliWidget)(w))->text.output->data->vbar)
#define XmtCliNumRows(w)\
    (((XmtCliWidget)(w))->text.output->data->number_lines)
#define XmtCliFontList(w)\
    (((XmtCliWidget)(w))->text.output->data->fontlist)
#define XmtCliLineHeight(w)\
    (((XmtCliWidget)(w))->text.output->data->lineheight)
#define XmtCliMarginHeight(w)\
    (((XmtCliWidget)(w))->text.margin_height)
#define XmtCliMarginWidth(w)\
    (((XmtCliWidget)(w))->text.margin_width)

/*
 * 1.1 to 1.2 portability stuff
 */
#if XmVersion == 1001
#define XmGetFocusWidget(w) _XmGetActiveItem(w)
#define XmTextDisableRedisplay(w) _XmTextDisableRedisplay((XmTextWidget)w,True)
#define XmTextEnableRedisplay(w) _XmTextEnableRedisplay((XmTextWidget)w)
#endif

#endif