Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    COPYRIGHT NOTICE
3
 
4
    This program is the proprietary property of the Secretary of State
5
    for Defence (United Kingdom) acting through the Defence Research
6
    Agency (DRA).  Use, reproduction, production of amended versions
7
    and/or transfer of this program is permitted PROVIDED THAT:
8
 
9
    (a)	 This legend be preserved on any such reproduction and amended
10
	 version.
11
 
12
    (b)	 Any amended version of this program be clearly marked to show
13
	 the nature of the amendment and the name of the amending
14
	 organisation.
15
 
16
    (c)	 Any recipient of such reproduction or amended version accept
17
	 the conditions set out in this legend.
18
 
19
    The DRA accepts no liability whatsoever in relation to any use to
20
    which this program may be put and gives no warranty as to the
21
    program's suitability for any purpose.
22
 
23
    All rights reserved.
24
 
25
    Crown Copyright (c) 1994.
26
*/
27
 
28
/*
29
    COPYRIGHT NOTICE
30
 
31
    This program contains amendments to Motif 1.1 API headers in
32
    order to represent the Motif 1.2 API. These amendments are the
33
    property of IXI Ltd, a subsidiary of the Santa Cruz Operation (SCO).
34
    Use, reproduction, production of amended versions and/or transfer of
35
    this program is permitted PROVIDED THAT:
36
 
37
    (a)  This legend be preserved on any such reproduction and amended
38
         version.
39
 
40
    (b)  Any recipient of such reproduction or amended version accept
41
         the conditions set out in this legend.
42
 
43
    IXI accepts no liability whatsoever in relation to any use to
44
    which this program may be put and gives no warranty as to the
45
    program's suitability for any purpose.
46
 
47
    All rights reserved.
48
 
49
    Copyright (c) 1995, 1996
50
*/
51
 
52
 
53
/* SCO CID (IXI) VirtKeys.h,v 1.1 1996/08/08 14:13:55 wendland Exp */
54
 
55
#+USE "motif/1_2","Xm/Xm.h";
56
 
57
+USE "x5/t", "X11/Intrinsic.h";
58
 
59
+EXP unsigned long osfXK_BackSpace ;
60
+EXP unsigned long osfXK_Insert ;
61
+EXP unsigned long osfXK_Delete ;
62
+EXP unsigned long osfXK_Copy ;
63
+EXP unsigned long osfXK_Cut ;
64
+EXP unsigned long osfXK_Paste ;
65
 
66
+EXP unsigned long osfXK_AddMode ;
67
+EXP unsigned long osfXK_PrimaryPaste ;
68
+EXP unsigned long osfXK_QuickPaste ;
69
 
70
+EXP unsigned long osfXK_PageUp ;
71
+EXP unsigned long osfXK_PageDown ;
72
 
73
+EXP unsigned long osfXK_EndLine ;
74
+EXP unsigned long osfXK_BeginLine ;
75
 
76
+EXP unsigned long osfXK_Activate ;
77
 
78
+EXP unsigned long osfXK_MenuBar ;
79
 
80
+EXP unsigned long osfXK_Clear ;
81
+EXP unsigned long osfXK_Cancel ;
82
+EXP unsigned long osfXK_Help ;
83
+EXP unsigned long osfXK_Menu ;
84
+EXP unsigned long osfXK_Select ;
85
+EXP unsigned long osfXK_Undo ;
86
 
87
+EXP unsigned long osfXK_Left ;
88
+EXP unsigned long osfXK_Up ;
89
+EXP unsigned long osfXK_Right ;
90
+EXP unsigned long osfXK_Down ;
91
 
92
 
93
+EXP String XmVosfBackSpace ;
94
+EXP String XmVosfInsert ;
95
+EXP String XmVosfDelete ;
96
+EXP String XmVosfCopy ;
97
+EXP String XmVosfCut ;
98
+EXP String XmVosfPaste; 
99
 
100
+EXP String XmVosfAddMode; 
101
+EXP String XmVosfPrimaryPaste ;
102
+EXP String XmVosfQuickPaste ;
103
 
104
+EXP String XmVosfPageUp ;
105
+EXP String XmVosfPageDown; 
106
 
107
+EXP String XmVosfEndLine ;
108
+EXP String XmVosfBeginLine; 
109
 
110
+EXP String XmVosfActivate ;
111
 
112
+EXP String XmVosfMenuBar ;
113
 
114
+EXP String XmVosfClear ;
115
+EXP String XmVosfCancel ;
116
+EXP String XmVosfHelp ;
117
+EXP String XmVosfMenu ;
118
+EXP String XmVosfSelect; 
119
+EXP String XmVosfUndo ;
120
 
121
+EXP String XmVosfLeft ;
122
+EXP String XmVosfUp ;
123
+EXP String XmVosfRight ; 
124
+EXP String XmVosfDown ;
125
 
126
+FUNC void XmTranslateKey(Display *, KeyCode, Modifiers, Modifiers *, KeySym *);
127
 
128
+FUNC void _XmVirtKeysInitialize (Widget shell);
129
 
130
 
131
 
132
 
133