/[svn]/gigedit/trunk/src/gigedit/dimregionedit.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/dimregionedit.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2507 by persson, Sun Jan 12 19:37:55 2014 UTC revision 2536 by schoenebeck, Mon Apr 21 17:49:17 2014 UTC
# Line 221  DimRegionEdit::DimRegionEdit() : Line 221  DimRegionEdit::DimRegionEdit() :
221      ePitchTrack(_("Pitch track")),      ePitchTrack(_("Pitch track")),
222      eDimensionBypass(_("Dimension bypass")),      eDimensionBypass(_("Dimension bypass")),
223      ePan(_("Pan"), -64, 63),      ePan(_("Pan"), -64, 63),
224      eSelfMask(_("Self mask")),      eSelfMask(_("One note/voice per key (a.k.a \"Self mask\")")),
225      eAttenuationController(_("Attenuation controller")),      eAttenuationController(_("Attenuation controller")),
226      eInvertAttenuationController(_("Invert attenuation controller")),      eInvertAttenuationController(_("Invert attenuation controller")),
227      eAttenuationControllerThreshold(_("Attenuation controller threshold")),      eAttenuationControllerThreshold(_("Attenuation controller threshold")),
228      eChannelOffset(_("Channel offset"), 0, 9),      eChannelOffset(_("Channel offset"), 0, 9),
229      eSustainDefeat(_("Sustain defeat")),      eSustainDefeat(_("Ignore Hold Pedal (a.k.a. \"Sustain defeat\")")),
230      eMSDecode(_("MS decode")),      eMSDecode(_("MS decode")),
231      eSampleStartOffset(_("Sample start offset"), 0, 2000),      eSampleStartOffset(_("Sample start offset"), 0, 2000),
232      eUnityNote(_("Unity note")),      eUnityNote(_("Unity note")),
# Line 397  DimRegionEdit::DimRegionEdit() : Line 397  DimRegionEdit::DimRegionEdit() :
397      addString(_("Sample"), lSample, wSample);      addString(_("Sample"), lSample, wSample);
398      //TODO: the following would break drag&drop:   wSample->property_editable().set_value(false);  or this:    wSample->set_editable(false);      //TODO: the following would break drag&drop:   wSample->property_editable().set_value(false);  or this:    wSample->set_editable(false);
399  #ifdef OLD_TOOLTIPS  #ifdef OLD_TOOLTIPS
400      tooltips.set_tip(*wSample, _("Drop a sample here"));      tooltips.set_tip(*wSample, _("Drag & drop a sample here"));
401  #else  #else
402      wSample->set_tooltip_text(_("Drop a sample here"));      wSample->set_tooltip_text(_("Drag & drop a sample here"));
403  #endif  #endif
404      addProp(eUnityNote);      addProp(eUnityNote);
405      addHeader(_("Optional Settings"));      addHeader(_("Optional Settings"));
# Line 682  DimRegionEdit::DimRegionEdit() : Line 682  DimRegionEdit::DimRegionEdit() :
682          eDimensionBypass.set_choices(choices, values);          eDimensionBypass.set_choices(choices, values);
683      }      }
684      addProp(eDimensionBypass);      addProp(eDimensionBypass);
685        eSelfMask.widget.set_tooltip_text(_("If enabled: high velocity notes will stop low velocity notes at the same note, that way you can save voices that wouldn't be audible anyway."));
686      addProp(eSelfMask);      addProp(eSelfMask);
687        eSustainDefeat.widget.set_tooltip_text(_("If enabled: sustain pedal will not hold a note."));
688      addProp(eSustainDefeat);      addProp(eSustainDefeat);
689        eMSDecode.widget.set_tooltip_text(_("Gigastudio specific flag: defines if Mid Side Recordings should be decoded."));
690      addProp(eMSDecode);      addProp(eMSDecode);
691    
692      nextPage();      nextPage();

Legend:
Removed from v.2507  
changed lines
  Added in v.2536

  ViewVC Help
Powered by ViewVC