commit | author | age
|
45edef
|
1 |
// tooltiptext.h |
JS |
2 |
|
|
3 |
#ifndef TOOLTIPTEXT_H_ |
|
4 |
#define TOOLTIPTEXT_H_ |
|
5 |
|
|
6 |
enum { |
|
7 |
TT_SRC_CHKBOX, |
|
8 |
TT_PNO_ENTRY, |
|
9 |
TT_LD_CAL_BUTTON, |
|
10 |
TT_HEM_COMBO, |
|
11 |
TT_FLR_COMBO, |
|
12 |
TT_CAL_STATUS, |
|
13 |
TT_SRC_FREQ_LABEL, |
|
14 |
TT_OPEN_BUTTON, |
|
15 |
TT_CREATE_BUTTON, |
|
16 |
TT_POS_UNITS, |
|
17 |
TT_ATT_UNITS, |
|
18 |
TT_NUMBER_TIPS |
|
19 |
}; |
|
20 |
|
|
21 |
|
|
22 |
const char* tooltip_text[TT_NUMBER_TIPS]={ |
|
23 |
"Check this box to activate the controls on this line to enter data for a source.", |
|
24 |
"Enter the Position and Orientation of the sources in these boxes", |
|
25 |
"Select this button to specify which calibration file will be used for this source", |
|
26 |
"Use this control to select the proper starting hemisphere for a source. This value is " \ |
|
27 |
"relative to the source itself.", |
|
28 |
"Use this control to select a floor compensation model.", |
|
29 |
"This status indicates whether a calibration file has been selected for this particular source.", |
|
30 |
"This indicates which frequency has been loaded with the source calibration.", |
|
31 |
"Use this button to open an existing G4 Source Configuration File (*.g4c).", |
|
32 |
"Use this button to create a new G4 Source Configuration File (*.g4c) using the data shown.", |
|
33 |
"Use these buttons to select the proper units for the source position data.", |
|
34 |
"Use these buttons to select the proper units for the source orientation data." |
|
35 |
}; |
|
36 |
|
|
37 |
|
|
38 |
|
|
39 |
#endif |