1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 
9 #ifndef _DXWDefaultResources_h
10 #define _DXWDefaultResources_h
11 
12 #if !defined(DX_NEW_KEYLAYOUT)
13 
14 String DXWindow::DefaultResources[] =
15 {
16     "*executeMenu.labelString:                    Execute",
17     "*executeMenu.mnemonic:                       x",
18     "*executeOnceOption.labelString:              Execute Once",
19     "*executeOnceOption.mnemonic:                 O",
20     "*executeOnceOption.accelerator:              Ctrl<Key>O",
21     "*executeOnceOption.acceleratorText:          Ctrl+O",
22     "*executeOnChangeOption.labelString:          Execute on Change",
23     "*executeOnChangeOption.mnemonic:             C",
24     "*executeOnChangeOption.accelerator:          Ctrl<Key>C",
25     "*executeOnChangeOption.acceleratorText:      Ctrl+C",
26     "*endExecutionOption.labelString:             End Execution",
27     "*endExecutionOption.mnemonic:                E",
28 // Switched to using osfEndLine for the accelerator instead of End
29 // because of problems on osf1.  Motif libs on (ARCH?) can't deal with
30 // an osf key name as an accelerator.
31 #if defined(aviion)
32     "*endExecutionOption.accelerator:             Ctrl<Key>End",
33 #else
34     "*endExecutionOption.accelerator:             Ctrl<Key>osfEndLine",
35 #endif
36     "*endExecutionOption.acceleratorText:         Ctrl+End",
37     "*sequencerOption.labelString:                Sequencer",
38     "*sequencerOption.mnemonic:                   S",
39 #if USE_REMAP	// 6/14/93
40     "*remapInteractorOutputsOption.labelString:   Remap Interactor Outputs",
41     "*remapInteractorOutputsOption.mnemonic:      R",
42 #endif
43 
44     "*connectionMenu.labelString:                 Connection",
45     "*connectionMenu.mnemonic:                    C",
46     "*startServerOption.labelString:              Start Server...",
47     "*startServerOption.mnemonic:                 S",
48     "*disconnectFromServerOption.labelString:     Disconnect from Server",
49     "*disconnectFromServerOption.mnemonic:        D",
50     "*resetServerOption.labelString:              Reset Server",
51     "*resetServerOption.mnemonic:                 R",
52     "*processGroupAssignmentOption.labelString:   Execution Group Assignment...",
53     "*processGroupAssignmentOption.mnemonic:      P",
54 
55     "*helpTutorialOption.labelString:             Tutorial...",
56     "*helpTutorialOption.mnemonic:                u",
57 
58     "*toggleWindowStartupOption.labelString:      Startup Window",
59     "*toggleWindowStartupOption.mnemonic:         S",
60 
61     "*connectionMenuPulldown.tearOffModel:	  XmTEAR_OFF_DISABLED",
62     "*fileHistory.labelString:			  Recent Programs",
63 
64     NULL
65 };
66 
67 
68 #else /* defined(DX_NEW_KEYLAYOUT) */
69 
70 
71 String DXWindow::DefaultResources[] =
72 {
73     "*executeMenu.labelString:                    	Execute",
74     "*executeMenu.mnemonic:                       	x",
75     "*executeOnceOption.labelString:              	Execute Once",
76     "*executeOnceOption.mnemonic:                 	O",
77     "*executeOnceOption.accelerator:              	Ctrl<Key>E",
78     "*executeOnceOption.acceleratorText:          	Ctrl+E",
79     "*executeOnChangeOption.labelString:          	Execute on Change",
80     "*executeOnChangeOption.mnemonic:             	C",
81     "*executeOnChangeOption.accelerator:          	Ctrl<Key>semicolon",
82     "*executeOnChangeOption.acceleratorText:      	Ctrl+;",
83     "*endExecutionOption.labelString:             	End Execution",
84     "*endExecutionOption.mnemonic:                	E",
85 // Switched to using osfEndLine for the accelerator instead of End
86 // because of problems on osf1.  Motif libs on (ARCH?) can't deal with
87 // an osf key name as an accelerator.
88 #if defined(aviion)
89     "*endExecutionOption.accelerator:             Ctrl<Key>End",
90     "*endExecutionOption.acceleratorText:         Ctrl+End",
91 #elif defined(macos)
92     "*endExecutionOption.accelerator:			Ctrl <Key>period",
93     "*endExecutionOption.acceleratorText:		Ctrl+.",
94 #else
95     "*endExecutionOption.accelerator:             	Ctrl<Key>osfEndLine",
96     "*endExecutionOption.acceleratorText:         	Ctrl+End",
97 #endif
98     "*sequencerOption.labelString:                	Sequencer",
99     "*sequencerOption.mnemonic:                   	S",
100 
101 #if USE_REMAP	// 6/14/93
102     "*remapInteractorOutputsOption.labelString:   Remap Interactor Outputs",
103     "*remapInteractorOutputsOption.mnemonic:      R",
104 #endif
105 
106     "*connectionMenu.labelString:                 	Connection",
107     "*connectionMenu.mnemonic:                    	C",
108     "*startServerOption.labelString:              	Start Server...",
109     "*startServerOption.mnemonic:                 	S",
110     "*disconnectFromServerOption.labelString:     	Disconnect from Server",
111     "*disconnectFromServerOption.mnemonic:        	D",
112     "*resetServerOption.labelString:              	Reset Server",
113     "*resetServerOption.mnemonic:                 	R",
114     "*resetServerOption.accelerator:			Ctrl Shift <Key>R",
115     "*resetServerOption.acceleratorText:		Ctrl+Shift+R",
116     "*processGroupAssignmentOption.labelString:   	Execution Group Assignment...",
117     "*processGroupAssignmentOption.mnemonic:      	P",
118 
119     "*helpTutorialOption.labelString:             	Tutorial...",
120     "*helpTutorialOption.mnemonic:                	u",
121 
122     "*toggleWindowStartupOption.labelString:      	Startup Window",
123     "*toggleWindowStartupOption.mnemonic:         	S",
124 
125     "*connectionMenuPulldown.tearOffModel:	  XmTEAR_OFF_DISABLED",
126 
127     "*fileHistory.labelString:			  Recent Programs",
128 
129     NULL
130 };
131 
132 
133 #endif
134 
135 #endif // _DXWDefaultResources_h
136 
137