|
3 | 3 |
|
4 | 4 | // Constants for all texts shown throughout the application |
5 | 5 | // TODO: Actually pull all texts into here, not only tooltips |
| 6 | +// TODO: Put actual strings into a *.cpp file to reduce compile times |
6 | 7 |
|
7 | 8 | namespace Tooltips { |
8 | 9 | inline const QString EnergiesStacked = QStringLiteral("If selected, the energies are plotted as areas stacked on top of each other.\nOtherwise each energy is drawn as an individual line."); |
9 | 10 | inline const QString EnergiesByPart = QStringLiteral("Group energies by the component they belong to (limbs, string, arrow)"); |
10 | 11 | inline const QString EnergiesByType = QStringLiteral("Group enegies by the type they belong to (potential, kinetic, damping)"); |
11 | 12 |
|
| 13 | + inline const QString HandleTypeDefinition = QStringLiteral("Selects the type of handle for this bow"); |
| 14 | + inline const QString HandleTypeFlexible = QStringLiteral("The handle is flexible and modelled as part of the bow limbs"); |
| 15 | + inline const QString HandleTypeRigid = QStringLiteral("The handle is modelled as a separate rigid section between the bow limbs"); |
| 16 | + inline const QString HandleLength = QStringLiteral("Length of the handle section"); |
| 17 | + inline const QString HandleAngle = QStringLiteral("Attachment angle of the limbs (positive = reflex, negative = deflex)"); |
| 18 | + inline const QString HandlePivot = QStringLiteral("Position of the pivot point (positive = reflex, negative = deflex)"); |
| 19 | + |
| 20 | + inline const QString BraceHeight = QStringLiteral("Brace height of the bow, i.e. distance between string and the handle's pivot point in the braced state"); |
| 21 | + inline const QString DrawLength = QStringLiteral("Draw length of the bow, i.e. distance between string and the handle's pivot point in the fully drawn state"); |
| 22 | + |
12 | 23 | inline const QString DrawForceShowLine = QStringLiteral("Show a hypothetical line connecting the start- and endpoint of the draw force curve"); |
13 | 24 | inline const QString DrawForceShowStiffness = QStringLiteral("Show the stiffness of the draw force curve, i.e. force increase per length increase"); |
14 | 25 |
|
15 | | - inline const QString ArrowMassDefinition = QStringLiteral("Select how the arrow mass is to be defined"); |
16 | | - inline const QString ArrowMassAbsolute = QStringLiteral("Arrow mass (absolute value)"); |
| 26 | + inline const QString ArrowMassDefinition = QStringLiteral("Selects how the arrow mass is specified"); |
| 27 | + inline const QString ArrowMassAbsolute = QStringLiteral("Arrow mass as an absolute value"); |
17 | 28 | inline const QString ArrowMassPerForce = QStringLiteral("Arrow mass relative to the final draw force of the bow"); |
18 | | - inline const QString ArrowMassPerEnergy = QStringLiteral("Arrow mass relative to the input energy of the bow"); |
| 29 | + inline const QString ArrowMassPerEnergy = QStringLiteral("Arrow mass relative to the stored energy of the bow"); |
19 | 30 |
|
20 | 31 | inline const QString MassStringCenter = QStringLiteral("Additional mass(es) at the string center (e.g. serving, nocking point)"); |
21 | 32 | inline const QString MassStringTip = QStringLiteral("Additional mass(es) at the string tip (e.g. serving)"); |
22 | 33 | inline const QString MassLimbTip = QStringLiteral("Additional mass(es) at the limb tip (e.g. tip overlay)"); |
23 | 34 |
|
24 | | - inline const QString DrawLengthDefinition = QStringLiteral("Select how the draw length is to be defined"); |
| 35 | + inline const QString DrawLengthDefinition = QStringLiteral("Selects the draw length definition to be used"); |
25 | 36 | inline const QString DrawLengthStandard = QStringLiteral("Draw length as measured from the pivot point of the handle"); |
26 | 37 | inline const QString DrawLengthAMO = QStringLiteral("Draw length as measured from the pivot point of the handle + 1.75\" according to the AMO definition"); |
27 | 38 |
|
@@ -76,17 +87,4 @@ namespace Tooltips { |
76 | 87 |
|
77 | 88 | inline const QString DampingRatioLimbs = QStringLiteral("Damping ratio of the limbs"); |
78 | 89 | inline const QString DampingRatioString = QStringLiteral("Damping ratio of the string"); |
79 | | - |
80 | | - inline const QString HandleReference = QStringLiteral("Reference point at the limb base from which the handle dimensions as well as the brace height and draw length are measured"); |
81 | | - inline const QString HandleReferenceBack = QStringLiteral("Measure from the back of the bow"); |
82 | | - inline const QString HandleReferenceBelly = QStringLiteral("Measure from the belly of the bow"); |
83 | | - inline const QString HandleReferenceProfile = QStringLiteral("Measure from the profile curve"); |
84 | | - |
85 | | - inline const QString HandleLength = QStringLiteral("Length of the handle, i.e. distance between the upper and lower limb as measured by the reference points"); |
86 | | - inline const QString HandleOffset = QStringLiteral("Offset of the handle's pivot point in the direction of draw"); |
87 | | - inline const QString HandleAngle = QStringLiteral("Angle at which the limbs are attached to the handle"); |
88 | | - inline const QString BraceHeight = QStringLiteral("Brace height of the bow, i.e. distance between string and the handle's pivot point in the braced state"); |
89 | | - inline const QString DrawLength = QStringLiteral("Draw length of the bow, i.e. distance between string and the handle's pivot point in the fully drawn state"); |
90 | | - |
91 | | - |
92 | 90 | } |
0 commit comments