/[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 1339 by schoenebeck, Mon Sep 10 19:56:26 2007 UTC revision 2690 by schoenebeck, Sun Jan 4 18:36:42 2015 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006, 2007 Andreas Persson   * Copyright (C) 2006-2015 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 19  Line 19 
19    
20  #include "dimregionedit.h"  #include "dimregionedit.h"
21    
22  #include <libintl.h>  #include "global.h"
23  #define _(String) gettext(String)  #include "compat.h"
24    
25    VelocityCurve::VelocityCurve(double (gig::DimensionRegion::*getter)(uint8_t)) :
26        getter(getter), dimreg(0) {
27        set_size_request(80, 80);
28    }
29    
30    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
31    bool VelocityCurve::on_expose_event(GdkEventExpose* e) {
32        const Cairo::RefPtr<Cairo::Context>& cr =
33            get_window()->create_cairo_context();
34    #if 0
35    }
36    #endif
37    #else
38    bool VelocityCurve::on_draw(const Cairo::RefPtr<Cairo::Context>& cr) {
39    #endif
40        if (dimreg) {
41            int w = get_width();
42            int h = get_height();
43    
44            for (int pass = 0 ; pass < 2 ; pass++) {
45                for (double x = 0 ; x <= w ; x++) {
46                    int vel = int(x * (127 - 1e-10) / w + 1);
47                    double y = (1 - (dimreg->*getter)(vel)) * (h - 3) + 1.5;
48    
49                    if (x < 1e-10) {
50                        cr->move_to(x, y);
51                    } else {
52                        cr->line_to(x, y);
53                    }
54                }
55                if (pass == 0) {
56                    cr->line_to(w, h);
57                    cr->line_to(0, h);
58                    cr->set_source_rgba(0.5, 0.44, 1.0, is_sensitive() ? 0.2 : 0.1);
59                    cr->fill();
60                } else {
61                    cr->set_line_width(3);
62                    cr->set_source_rgba(0.5, 0.44, 1.0, is_sensitive() ? 1.0 : 0.3);
63                    cr->stroke();
64                }
65            }
66        }
67        return true;
68    }
69    
70    
71    CrossfadeCurve::CrossfadeCurve() : dimreg(0) {
72        set_size_request(280, 80);
73    }
74    
75    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
76    bool CrossfadeCurve::on_expose_event(GdkEventExpose* e) {
77        const Cairo::RefPtr<Cairo::Context>& cr =
78            get_window()->create_cairo_context();
79    #if 0
80    }
81    #endif
82    #else
83    bool CrossfadeCurve::on_draw(const Cairo::RefPtr<Cairo::Context>& cr) {
84    #endif
85        if (dimreg) {
86            cr->translate(1.5, 0);
87    
88            // first, draw curves for the other layers
89            gig::Region* region = dimreg->GetParent();
90            int dimregno;
91            for (dimregno = 0 ; dimregno < region->DimensionRegions ; dimregno++) {
92                if (region->pDimensionRegions[dimregno] == dimreg) {
93                    break;
94                }
95            }
96            int bitcount = 0;
97            for (int dim = 0 ; dim < region->Dimensions ; dim++) {
98                if (region->pDimensionDefinitions[dim].dimension ==
99                    gig::dimension_layer) {
100                    int mask =
101                        ~(((1 << region->pDimensionDefinitions[dim].bits) - 1) <<
102                          bitcount);
103                    int c = dimregno & mask; // mask away the layer dimension
104    
105                    for (int i = 0 ; i < region->pDimensionDefinitions[dim].zones ;
106                         i++) {
107                        gig::DimensionRegion* d =
108                            region->pDimensionRegions[c + (i << bitcount)];
109                        if (d != dimreg) {
110                            draw_one_curve(cr, d, false);
111                        }
112                    }
113                    break;
114                }
115                bitcount += region->pDimensionDefinitions[dim].bits;
116            }
117    
118            // then, draw the currently selected layer
119            draw_one_curve(cr, dimreg, is_sensitive());
120        }
121        return true;
122    }
123    
124    void CrossfadeCurve::draw_one_curve(const Cairo::RefPtr<Cairo::Context>& cr,
125                                        const gig::DimensionRegion* d,
126                                        bool sensitive) {
127        int w = get_width();
128        int h = get_height();
129    
130        if (d->Crossfade.out_end) {
131            for (int pass = 0 ; pass < 2 ; pass++) {
132                cr->move_to(d->Crossfade.in_start / 127.0 * (w - 3), h);
133                cr->line_to(d->Crossfade.in_end / 127.0 * (w - 3), 1.5);
134                cr->line_to(d->Crossfade.out_start / 127.0 * (w - 3), 1.5);
135                cr->line_to(d->Crossfade.out_end / 127.0 * (w - 3), h);
136    
137                if (pass == 0) {
138                    cr->set_source_rgba(0.5, 0.44, 1.0, sensitive ? 0.2 : 0.1);
139                    cr->fill();
140                } else {
141                    cr->set_line_width(3);
142                    cr->set_source_rgba(0.5, 0.44, 1.0, sensitive ? 1.0 : 0.3);
143                    cr->stroke();
144                }
145            }
146        }
147    }
148    
149    
150  DimRegionEdit::DimRegionEdit() :  DimRegionEdit::DimRegionEdit() :
151      eEG1PreAttack("Pre-attack", 0, 100, 2),      velocity_curve(&gig::DimensionRegion::GetVelocityAttenuation),
152      eEG1Attack("Attack", 0, 60, 3),      release_curve(&gig::DimensionRegion::GetVelocityRelease),
153      eEG1Decay1("Decay 1", 0.005, 60, 3),      cutoff_curve(&gig::DimensionRegion::GetVelocityCutoff),
154      eEG1Decay2("Decay 2", 0, 60, 3),      eEG1PreAttack(_("Pre-attack Level (%)"), 0, 100, 2),
155      eEG1InfiniteSustain("Infinite sustain"),      eEG1Attack(_("Attack Time (seconds)"), 0, 60, 3),
156      eEG1Sustain("Sustain", 0, 100, 2),      eEG1Decay1(_("Decay 1 Time (seconds)"), 0.005, 60, 3),
157      eEG1Release("Release", 0, 60, 3),      eEG1Decay2(_("Decay 2 Time (seconds)"), 0, 60, 3),
158      eEG1Hold("Hold"),      eEG1InfiniteSustain(_("Infinite sustain")),
159      eEG1Controller("Controller"),      eEG1Sustain(_("Sustain Level (%)"), 0, 100, 2),
160      eEG1ControllerInvert("Controller invert"),      eEG1Release(_("Release Time (seconds)"), 0, 60, 3),
161      eEG1ControllerAttackInfluence("Controller attack influence", 0, 3),      eEG1Hold(_("Hold Attack Stage until Loop End")),
162      eEG1ControllerDecayInfluence("Controller decay influence", 0, 3),      eEG1Controller(_("Controller")),
163      eEG1ControllerReleaseInfluence("Controller release influence", 0, 3),      eEG1ControllerInvert(_("Controller invert")),
164      eLFO1Frequency("Frequency", 0.1, 10, 2),      eEG1ControllerAttackInfluence(_("Controller attack influence"), 0, 3),
165      eLFO1InternalDepth("Internal depth", 0, 1200),      eEG1ControllerDecayInfluence(_("Controller decay influence"), 0, 3),
166      eLFO1ControlDepth("Control depth", 0, 1200),      eEG1ControllerReleaseInfluence(_("Controller release influence"), 0, 3),
167      eLFO1Controller("Controller"),      eLFO1Frequency(_("Frequency"), 0.1, 10, 2),
168      eLFO1FlipPhase("Flip phase"),      eLFO1InternalDepth(_("Internal depth"), 0, 1200),
169      eLFO1Sync("Sync"),      eLFO1ControlDepth(_("Control depth"), 0, 1200),
170      eEG2PreAttack("Pre-attack", 0, 100, 2),      eLFO1Controller(_("Controller")),
171      eEG2Attack("Attack", 0, 60, 3),      eLFO1FlipPhase(_("Flip phase")),
172      eEG2Decay1("Decay 1", 0.005, 60, 3),      eLFO1Sync(_("Sync")),
173      eEG2Decay2("Decay 2", 0, 60, 3),      eEG2PreAttack(_("Pre-attack Level (%)"), 0, 100, 2),
174      eEG2InfiniteSustain("Infinite sustain"),      eEG2Attack(_("Attack Time (seconds)"), 0, 60, 3),
175      eEG2Sustain("Sustain", 0, 100, 2),      eEG2Decay1(_("Decay 1 Time (seconds)"), 0.005, 60, 3),
176      eEG2Release("Release", 0, 60, 3),      eEG2Decay2(_("Decay 2 Time (seconds)"), 0, 60, 3),
177      eEG2Controller("Controller"),      eEG2InfiniteSustain(_("Infinite sustain")),
178      eEG2ControllerInvert("Controller invert"),      eEG2Sustain(_("Sustain Level (%)"), 0, 100, 2),
179      eEG2ControllerAttackInfluence("Controller attack influence", 0, 3),      eEG2Release(_("Release Time (seconds)"), 0, 60, 3),
180      eEG2ControllerDecayInfluence("Controller decay influence", 0, 3),      eEG2Controller(_("Controller")),
181      eEG2ControllerReleaseInfluence("Controller release influence", 0, 3),      eEG2ControllerInvert(_("Controller invert")),
182      eLFO2Frequency("Frequency", 0.1, 10, 2),      eEG2ControllerAttackInfluence(_("Controller attack influence"), 0, 3),
183      eLFO2InternalDepth("Internal depth", 0, 1200),      eEG2ControllerDecayInfluence(_("Controller decay influence"), 0, 3),
184      eLFO2ControlDepth("Control depth", 0, 1200),      eEG2ControllerReleaseInfluence(_("Controller release influence"), 0, 3),
185      eLFO2Controller("Controller"),      eLFO2Frequency(_("Frequency"), 0.1, 10, 2),
186      eLFO2FlipPhase("Flip phase"),      eLFO2InternalDepth(_("Internal depth"), 0, 1200),
187      eLFO2Sync("Sync"),      eLFO2ControlDepth(_("Control depth"), 0, 1200),
188      eEG3Attack("Attack", 0, 10, 3),      eLFO2Controller(_("Controller")),
189      eEG3Depth("Depth", -1200, 1200),      eLFO2FlipPhase(_("Flip phase")),
190      eLFO3Frequency("Frequency", 0.1, 10, 2),      eLFO2Sync(_("Sync")),
191      eLFO3InternalDepth("Internal depth", 0, 1200),      eEG3Attack(_("Attack"), 0, 10, 3),
192      eLFO3ControlDepth("Control depth", 0, 1200),      eEG3Depth(_("Depth"), -1200, 1200),
193      eLFO3Controller("Controller"),      eLFO3Frequency(_("Frequency"), 0.1, 10, 2),
194      eLFO3Sync("Sync"),      eLFO3InternalDepth(_("Internal depth"), 0, 1200),
195      eVCFEnabled("Enabled"),      eLFO3ControlDepth(_("Control depth"), 0, 1200),
196      eVCFType("Type"),      eLFO3Controller(_("Controller")),
197      eVCFCutoffController("Cutoff controller"),      eLFO3Sync(_("Sync")),
198      eVCFCutoffControllerInvert("Cutoff controller invert"),      eVCFEnabled(_("Enabled")),
199      eVCFCutoff("Cutoff"),      eVCFType(_("Type")),
200      eVCFVelocityCurve("Velocity curve"),      eVCFCutoffController(_("Cutoff controller")),
201      eVCFVelocityScale("Velocity scale"),      eVCFCutoffControllerInvert(_("Cutoff controller invert")),
202      eVCFVelocityDynamicRange("Velocity dynamic range", 0, 4),      eVCFCutoff(_("Cutoff")),
203      eVCFResonance("Resonance"),      eVCFVelocityCurve(_("Velocity curve")),
204      eVCFResonanceDynamic("Resonance dynamic"),      eVCFVelocityScale(_("Velocity scale")),
205      eVCFResonanceController("Resonance controller"),      eVCFVelocityDynamicRange(_("Velocity dynamic range"), 0, 4),
206      eVCFKeyboardTracking("Keyboard tracking"),      eVCFResonance(_("Resonance")),
207      eVCFKeyboardTrackingBreakpoint("Keyboard tracking breakpoint"),      eVCFResonanceDynamic(_("Resonance dynamic")),
208      eVelocityResponseCurve("Velocity response curve"),      eVCFResonanceController(_("Resonance controller")),
209      eVelocityResponseDepth("Velocity response depth", 0, 4),      eVCFKeyboardTracking(_("Keyboard tracking")),
210      eVelocityResponseCurveScaling("Velocity response curve scaling"),      eVCFKeyboardTrackingBreakpoint(_("Keyboard tracking breakpoint")),
211      eReleaseVelocityResponseCurve("Release velocity response curve"),      eVelocityResponseCurve(_("Velocity response curve")),
212      eReleaseVelocityResponseDepth("Release velocity response depth", 0, 4),      eVelocityResponseDepth(_("Velocity response depth"), 0, 4),
213      eReleaseTriggerDecay("Release trigger decay", 0, 8),      eVelocityResponseCurveScaling(_("Velocity response curve scaling")),
214      eCrossfade_in_start("Crossfade-in start"),      eReleaseVelocityResponseCurve(_("Release velocity response curve")),
215      eCrossfade_in_end("Crossfade-in end"),      eReleaseVelocityResponseDepth(_("Release velocity response depth"), 0, 4),
216      eCrossfade_out_start("Crossfade-out start"),      eReleaseTriggerDecay(_("Release trigger decay"), 0, 8),
217      eCrossfade_out_end("Crossfade-out end"),      eCrossfade_in_start(_("Crossfade-in start")),
218      ePitchTrack("Pitch track"),      eCrossfade_in_end(_("Crossfade-in end")),
219      eDimensionBypass("Dimension bypass"),      eCrossfade_out_start(_("Crossfade-out start")),
220      ePan("Pan", -64, 63),      eCrossfade_out_end(_("Crossfade-out end")),
221      eSelfMask("Self mask"),      ePitchTrack(_("Pitch track")),
222      eAttenuationController("Attenuation controller"),      eDimensionBypass(_("Dimension bypass")),
223      eInvertAttenuationController("Invert attenuation controller"),      ePan(_("Pan"), -64, 63),
224      eAttenuationControllerThreshold("Attenuation controller threshold"),      eSelfMask(_("Kill lower velocity voices (a.k.a \"Self mask\")")),
225      eChannelOffset("Channel offset", 0, 9),      eAttenuationController(_("Attenuation controller")),
226      eSustainDefeat("Sustain defeat"),      eInvertAttenuationController(_("Invert attenuation controller")),
227      eMSDecode("MS decode"),      eAttenuationControllerThreshold(_("Attenuation controller threshold")),
228      eSampleStartOffset("Sample start offset", 0, 2000),      eChannelOffset(_("Channel offset"), 0, 9),
229      eUnityNote("Unity note"),      eSustainDefeat(_("Ignore Hold Pedal (a.k.a. \"Sustain defeat\")")),
230      eFineTune("Fine tune", -49, 50),      eMSDecode(_("Decode Mid/Side Recordings")),
231      eGain("Gain", -96, 0, 2, -655360),      eSampleStartOffset(_("Sample start offset"), 0, 2000),
232      eGainPlus6("Gain +6dB", eGain, 6 * -655360),      eUnityNote(_("Unity note")),
233      eSampleLoopEnabled("Enabled"),      eSampleFormatInfo(_("Sample Format")),
234      eSampleLoopStart("Loop start positon"),      eSampleID("Sample ID"),
235      eSampleLoopLength("Loop size"),      eFineTune(_("Fine tune"), -49, 50),
236      eSampleLoopType("Loop type"),      eGain(_("Gain"), -96, 0, 2, -655360),
237      eSampleLoopInfinite("Infinite loop"),      eGainPlus6(_("Gain +6dB"), eGain, 6 * -655360),
238      eSampleLoopPlayCount("Playback count")      eSampleLoopEnabled(_("Enabled")),
239  {      eSampleLoopStart(_("Loop start positon")),
240        eSampleLoopLength(_("Loop size")),
241        eSampleLoopType(_("Loop type")),
242        eSampleLoopInfinite(_("Infinite loop")),
243        eSampleLoopPlayCount(_("Playback count"), 1),
244        update_model(0)
245    {
246        connect(eEG1PreAttack, &gig::DimensionRegion::EG1PreAttack);
247        connect(eEG1Attack, &gig::DimensionRegion::EG1Attack);
248        connect(eEG1Decay1, &gig::DimensionRegion::EG1Decay1);
249        connect(eEG1Decay2, &gig::DimensionRegion::EG1Decay2);
250        connect(eEG1InfiniteSustain, &gig::DimensionRegion::EG1InfiniteSustain);
251        connect(eEG1Sustain, &gig::DimensionRegion::EG1Sustain);
252        connect(eEG1Release, &gig::DimensionRegion::EG1Release);
253        connect(eEG1Hold, &gig::DimensionRegion::EG1Hold);
254        connect(eEG1Controller, &gig::DimensionRegion::EG1Controller);
255        connect(eEG1ControllerInvert, &gig::DimensionRegion::EG1ControllerInvert);
256        connect(eEG1ControllerAttackInfluence,
257                &gig::DimensionRegion::EG1ControllerAttackInfluence);
258        connect(eEG1ControllerDecayInfluence,
259                &gig::DimensionRegion::EG1ControllerDecayInfluence);
260        connect(eEG1ControllerReleaseInfluence,
261                &gig::DimensionRegion::EG1ControllerReleaseInfluence);
262        connect(eLFO1Frequency, &gig::DimensionRegion::LFO1Frequency);
263        connect(eLFO1InternalDepth, &gig::DimensionRegion::LFO1InternalDepth);
264        connect(eLFO1ControlDepth, &gig::DimensionRegion::LFO1ControlDepth);
265        connect(eLFO1Controller, &gig::DimensionRegion::LFO1Controller);
266        connect(eLFO1FlipPhase, &gig::DimensionRegion::LFO1FlipPhase);
267        connect(eLFO1Sync, &gig::DimensionRegion::LFO1Sync);
268        connect(eEG2PreAttack, &gig::DimensionRegion::EG2PreAttack);
269        connect(eEG2Attack, &gig::DimensionRegion::EG2Attack);
270        connect(eEG2Decay1, &gig::DimensionRegion::EG2Decay1);
271        connect(eEG2Decay2, &gig::DimensionRegion::EG2Decay2);
272        connect(eEG2InfiniteSustain, &gig::DimensionRegion::EG2InfiniteSustain);
273        connect(eEG2Sustain, &gig::DimensionRegion::EG2Sustain);
274        connect(eEG2Release, &gig::DimensionRegion::EG2Release);
275        connect(eEG2Controller, &gig::DimensionRegion::EG2Controller);
276        connect(eEG2ControllerInvert, &gig::DimensionRegion::EG2ControllerInvert);
277        connect(eEG2ControllerAttackInfluence,
278                &gig::DimensionRegion::EG2ControllerAttackInfluence);
279        connect(eEG2ControllerDecayInfluence,
280                &gig::DimensionRegion::EG2ControllerDecayInfluence);
281        connect(eEG2ControllerReleaseInfluence,
282                &gig::DimensionRegion::EG2ControllerReleaseInfluence);
283        connect(eLFO2Frequency, &gig::DimensionRegion::LFO2Frequency);
284        connect(eLFO2InternalDepth, &gig::DimensionRegion::LFO2InternalDepth);
285        connect(eLFO2ControlDepth, &gig::DimensionRegion::LFO2ControlDepth);
286        connect(eLFO2Controller, &gig::DimensionRegion::LFO2Controller);
287        connect(eLFO2FlipPhase, &gig::DimensionRegion::LFO2FlipPhase);
288        connect(eLFO2Sync, &gig::DimensionRegion::LFO2Sync);
289        connect(eEG3Attack, &gig::DimensionRegion::EG3Attack);
290        connect(eEG3Depth, &gig::DimensionRegion::EG3Depth);
291        connect(eLFO3Frequency, &gig::DimensionRegion::LFO3Frequency);
292        connect(eLFO3InternalDepth, &gig::DimensionRegion::LFO3InternalDepth);
293        connect(eLFO3ControlDepth, &gig::DimensionRegion::LFO3ControlDepth);
294        connect(eLFO3Controller, &gig::DimensionRegion::LFO3Controller);
295        connect(eLFO3Sync, &gig::DimensionRegion::LFO3Sync);
296        connect(eVCFEnabled, &gig::DimensionRegion::VCFEnabled);
297        connect(eVCFType, &gig::DimensionRegion::VCFType);
298        connect(eVCFCutoffController,
299                &gig::DimensionRegion::SetVCFCutoffController);
300        connect(eVCFCutoffControllerInvert,
301                &gig::DimensionRegion::VCFCutoffControllerInvert);
302        connect(eVCFCutoff, &gig::DimensionRegion::VCFCutoff);
303        connect(eVCFVelocityCurve, &gig::DimensionRegion::SetVCFVelocityCurve);
304        connect(eVCFVelocityScale, &gig::DimensionRegion::SetVCFVelocityScale);
305        connect(eVCFVelocityDynamicRange,
306                &gig::DimensionRegion::SetVCFVelocityDynamicRange);
307        connect(eVCFResonance, &gig::DimensionRegion::VCFResonance);
308        connect(eVCFResonanceDynamic, &gig::DimensionRegion::VCFResonanceDynamic);
309        connect(eVCFResonanceController,
310                &gig::DimensionRegion::VCFResonanceController);
311        connect(eVCFKeyboardTracking, &gig::DimensionRegion::VCFKeyboardTracking);
312        connect(eVCFKeyboardTrackingBreakpoint,
313                &gig::DimensionRegion::VCFKeyboardTrackingBreakpoint);
314        connect(eVelocityResponseCurve,
315                &gig::DimensionRegion::SetVelocityResponseCurve);
316        connect(eVelocityResponseDepth,
317                &gig::DimensionRegion::SetVelocityResponseDepth);
318        connect(eVelocityResponseCurveScaling,
319                &gig::DimensionRegion::SetVelocityResponseCurveScaling);
320        connect(eReleaseVelocityResponseCurve,
321                &gig::DimensionRegion::SetReleaseVelocityResponseCurve);
322        connect(eReleaseVelocityResponseDepth,
323                &gig::DimensionRegion::SetReleaseVelocityResponseDepth);
324        connect(eReleaseTriggerDecay, &gig::DimensionRegion::ReleaseTriggerDecay);
325        connect(eCrossfade_in_start, &DimRegionEdit::set_Crossfade_in_start);
326        connect(eCrossfade_in_end, &DimRegionEdit::set_Crossfade_in_end);
327        connect(eCrossfade_out_start, &DimRegionEdit::set_Crossfade_out_start);
328        connect(eCrossfade_out_end, &DimRegionEdit::set_Crossfade_out_end);
329        connect(ePitchTrack, &gig::DimensionRegion::PitchTrack);
330        connect(eDimensionBypass, &gig::DimensionRegion::DimensionBypass);
331        connect(ePan, &gig::DimensionRegion::Pan);
332        connect(eSelfMask, &gig::DimensionRegion::SelfMask);
333        connect(eAttenuationController,
334                &gig::DimensionRegion::AttenuationController);
335        connect(eInvertAttenuationController,
336                &gig::DimensionRegion::InvertAttenuationController);
337        connect(eAttenuationControllerThreshold,
338                &gig::DimensionRegion::AttenuationControllerThreshold);
339        connect(eChannelOffset, &gig::DimensionRegion::ChannelOffset);
340        connect(eSustainDefeat, &gig::DimensionRegion::SustainDefeat);
341        connect(eMSDecode, &gig::DimensionRegion::MSDecode);
342        connect(eSampleStartOffset, &gig::DimensionRegion::SampleStartOffset);
343        connect(eUnityNote, &DimRegionEdit::set_UnityNote);
344        connect(eFineTune, &DimRegionEdit::set_FineTune);
345        connect(eGain, &DimRegionEdit::set_Gain);
346        connect(eGainPlus6, &DimRegionEdit::set_Gain);
347        connect(eSampleLoopEnabled, &DimRegionEdit::set_LoopEnabled);
348        connect(eSampleLoopType, &DimRegionEdit::set_LoopType);
349        connect(eSampleLoopStart, &DimRegionEdit::set_LoopStart);
350        connect(eSampleLoopLength, &DimRegionEdit::set_LoopLength);
351        connect(eSampleLoopInfinite, &DimRegionEdit::set_LoopInfinite);
352        connect(eSampleLoopPlayCount, &DimRegionEdit::set_LoopPlayCount);
353    
354      for (int i = 0 ; i < 7 ; i++) {      for (int i = 0 ; i < 7 ; i++) {
355          table[i] = new Gtk::Table(3, 1);          table[i] = new Gtk::Table(3, 1);
356          table[i]->set_col_spacings(7);          table[i]->set_col_spacings(7);
# Line 151  DimRegionEdit::DimRegionEdit() : Line 390  DimRegionEdit::DimRegionEdit() :
390            "Caution: this setting is stored on Sample side, thus is shared "            "Caution: this setting is stored on Sample side, thus is shared "
391            "among all dimension regions that use this sample!")            "among all dimension regions that use this sample!")
392      );      );
393        
394        eEG1PreAttack.set_tip(
395            "Very first level this EG starts with. It rises then in Attack Time "
396            "seconds from this initial level to 100%."
397        );
398        eEG1Attack.set_tip(
399            "Duration of the EG's Attack stage, which raises its level from "
400            "Pre-Attack Level to 100%."
401        );
402        eEG1Hold.set_tip(
403           "On looped sounds, enabling this will cause the Decay 1 stage not to "
404           "enter before the loop has been passed one time."
405        );
406        eAttenuationController.set_tip(_(
407            "If you are not using the 'Layer' dimension, then this controller "
408            "simply alters the volume. If you are using the 'Layer' dimension, "
409            "then this controller is controlling the crossfade between Layers in "
410            "real-time."
411        ));
412    
413        eLFO1Sync.set_tip(
414            "If not checked, every voice will use its own LFO instance, which "
415            "causes voices triggered at different points in time to have different "
416            "LFO levels. By enabling 'Sync' here the voices will instead use and "
417            "share one single LFO, causing all voices to have the same LFO level, "
418            "no matter when the individual notes have been triggered."
419        );
420        eLFO2Sync.set_tip(
421            "If not checked, every voice will use its own LFO instance, which "
422            "causes voices triggered at different points in time to have different "
423            "LFO levels. By enabling 'Sync' here the voices will instead use and "
424            "share one single LFO, causing all voices to have the same LFO level, "
425            "no matter when the individual notes have been triggered."
426        );
427        eLFO3Sync.set_tip(
428            "If not checked, every voice will use its own LFO instance, which "
429            "causes voices triggered at different points in time to have different "
430            "LFO levels. By enabling 'Sync' here the voices will instead use and "
431            "share one single LFO, causing all voices to have the same LFO level, "
432            "no matter when the individual notes have been triggered."
433        );
434        eLFO1FlipPhase.set_tip(
435           "Inverts the LFO's generated wave vertically."
436        );
437        eLFO2FlipPhase.set_tip(
438           "Inverts the LFO's generated wave vertically."
439        );
440    
441      pageno = 0;      pageno = 0;
442      rowno = 0;      rowno = 0;
443      firstRowInBlock = 0;      firstRowInBlock = 0;
444    
445      addHeader(_("Mandatory Settings"));      addHeader(_("Mandatory Settings"));
446      addString("Sample", lSample, wSample);      addString(_("Sample"), lSample, wSample);
447      //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);
448      tooltips.set_tip(*wSample, _("Drop a sample here"));  #ifdef OLD_TOOLTIPS
449        tooltips.set_tip(*wSample, _("Drag & drop a sample here"));
450    #else
451        wSample->set_tooltip_text(_("Drag & drop a sample here"));
452    #endif
453      addProp(eUnityNote);      addProp(eUnityNote);
454        addProp(eSampleFormatInfo);
455        addProp(eSampleID);
456      addHeader(_("Optional Settings"));      addHeader(_("Optional Settings"));
457      addProp(eSampleStartOffset);      addProp(eSampleStartOffset);
458      addProp(eChannelOffset);      addProp(eChannelOffset);
459      addHeader("Loops");      addHeader(_("Loops"));
460      addProp(eSampleLoopEnabled);      addProp(eSampleLoopEnabled);
461      addProp(eSampleLoopStart);      addProp(eSampleLoopStart);
462      addProp(eSampleLoopLength);      addProp(eSampleLoopLength);
463      {      {
464          const char* choices[] = { "normal", "bidirectional", "backward", 0 };          const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
465          static const uint32_t values[] = {          static const uint32_t values[] = {
466              gig::loop_type_normal,              gig::loop_type_normal,
467              gig::loop_type_bidirectional,              gig::loop_type_bidirectional,
# Line 190  DimRegionEdit::DimRegionEdit() : Line 482  DimRegionEdit::DimRegionEdit() :
482      addHeader(_("Amplitude Envelope (EG1)"));      addHeader(_("Amplitude Envelope (EG1)"));
483      addProp(eEG1PreAttack);      addProp(eEG1PreAttack);
484      addProp(eEG1Attack);      addProp(eEG1Attack);
485        addProp(eEG1Hold);
486      addProp(eEG1Decay1);      addProp(eEG1Decay1);
487      addProp(eEG1Decay2);      addProp(eEG1Decay2);
488      addProp(eEG1InfiniteSustain);      addProp(eEG1InfiniteSustain);
489      addProp(eEG1Sustain);      addProp(eEG1Sustain);
490      addProp(eEG1Release);      addProp(eEG1Release);
     addProp(eEG1Hold);  
491      addProp(eEG1Controller);      addProp(eEG1Controller);
492      addProp(eEG1ControllerInvert);      addProp(eEG1ControllerInvert);
493      addProp(eEG1ControllerAttackInfluence);      addProp(eEG1ControllerAttackInfluence);
# Line 209  DimRegionEdit::DimRegionEdit() : Line 501  DimRegionEdit::DimRegionEdit() :
501      addProp(eLFO1InternalDepth);      addProp(eLFO1InternalDepth);
502      addProp(eLFO1ControlDepth);      addProp(eLFO1ControlDepth);
503      {      {
504          const char* choices[] = { "internal", "modwheel", "breath",          const char* choices[] = { _("internal"), _("modwheel"), _("breath"),
505                                    "internal+modwheel", "internal+breath", 0 };                                    _("internal+modwheel"), _("internal+breath"), 0 };
506          static const gig::lfo1_ctrl_t values[] = {          static const gig::lfo1_ctrl_t values[] = {
507              gig::lfo1_ctrl_internal,              gig::lfo1_ctrl_internal,
508              gig::lfo1_ctrl_modwheel,              gig::lfo1_ctrl_modwheel,
# Line 223  DimRegionEdit::DimRegionEdit() : Line 515  DimRegionEdit::DimRegionEdit() :
515      addProp(eLFO1Controller);      addProp(eLFO1Controller);
516      addProp(eLFO1FlipPhase);      addProp(eLFO1FlipPhase);
517      addProp(eLFO1Sync);      addProp(eLFO1Sync);
518      addHeader("Crossfade");      addHeader(_("Crossfade"));
519      addProp(eAttenuationController);      addProp(eAttenuationController);
520      addProp(eInvertAttenuationController);      addProp(eInvertAttenuationController);
521      addProp(eAttenuationControllerThreshold);      addProp(eAttenuationControllerThreshold);
# Line 232  DimRegionEdit::DimRegionEdit() : Line 524  DimRegionEdit::DimRegionEdit() :
524      addProp(eCrossfade_out_start);      addProp(eCrossfade_out_start);
525      addProp(eCrossfade_out_end);      addProp(eCrossfade_out_end);
526    
527        Gtk::Frame* frame = new Gtk::Frame;
528        frame->add(crossfade_curve);
529        table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
530                              Gtk::SHRINK, Gtk::SHRINK);
531        rowno++;
532    
533        eCrossfade_in_start.signal_value_changed().connect(
534            sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
535        eCrossfade_in_end.signal_value_changed().connect(
536            sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
537        eCrossfade_out_start.signal_value_changed().connect(
538            sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
539        eCrossfade_out_end.signal_value_changed().connect(
540            sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
541    
542      nextPage();      nextPage();
543    
544      addHeader(_("General Filter Settings"));      addHeader(_("General Filter Settings"));
545      addProp(eVCFEnabled);      addProp(eVCFEnabled);
546      {      {
547          const char* choices[] = { "lowpass", "lowpassturbo", "bandpass",          const char* choices[] = { _("lowpass"), _("lowpassturbo"), _("bandpass"),
548                                    "highpass", "bandreject", 0 };                                    _("highpass"), _("bandreject"), 0 };
549          static const gig::vcf_type_t values[] = {          static const gig::vcf_type_t values[] = {
550              gig::vcf_type_lowpass,              gig::vcf_type_lowpass,
551              gig::vcf_type_lowpassturbo,              gig::vcf_type_lowpassturbo,
# Line 250  DimRegionEdit::DimRegionEdit() : Line 557  DimRegionEdit::DimRegionEdit() :
557      }      }
558      addProp(eVCFType);      addProp(eVCFType);
559      {      {
560          const char* choices[] = { "none", "none2", "modwheel", "effect1", "effect2",          const char* choices[] = { _("none"), _("none2"), _("modwheel"), _("effect1"), _("effect2"),
561                                    "breath", "foot", "sustainpedal", "softpedal",                                    _("breath"), _("foot"), _("sustainpedal"), _("softpedal"),
562                                    "genpurpose7", "genpurpose8", "aftertouch", 0 };                                    _("genpurpose7"), _("genpurpose8"), _("aftertouch"), 0 };
563          static const gig::vcf_cutoff_ctrl_t values[] = {          static const gig::vcf_cutoff_ctrl_t values[] = {
564              gig::vcf_cutoff_ctrl_none,              gig::vcf_cutoff_ctrl_none,
565              gig::vcf_cutoff_ctrl_none2,              gig::vcf_cutoff_ctrl_none2,
# Line 272  DimRegionEdit::DimRegionEdit() : Line 579  DimRegionEdit::DimRegionEdit() :
579      addProp(eVCFCutoffController);      addProp(eVCFCutoffController);
580      addProp(eVCFCutoffControllerInvert);      addProp(eVCFCutoffControllerInvert);
581      addProp(eVCFCutoff);      addProp(eVCFCutoff);
582      const char* curve_type_texts[] = { "nonlinear", "linear", "special", 0 };      const char* curve_type_texts[] = { _("nonlinear"), _("linear"), _("special"), 0 };
583      static const gig::curve_type_t curve_type_values[] = {      static const gig::curve_type_t curve_type_values[] = {
584          gig::curve_type_nonlinear,          gig::curve_type_nonlinear,
585          gig::curve_type_linear,          gig::curve_type_linear,
# Line 282  DimRegionEdit::DimRegionEdit() : Line 589  DimRegionEdit::DimRegionEdit() :
589      addProp(eVCFVelocityCurve);      addProp(eVCFVelocityCurve);
590      addProp(eVCFVelocityScale);      addProp(eVCFVelocityScale);
591      addProp(eVCFVelocityDynamicRange);      addProp(eVCFVelocityDynamicRange);
592    
593        eVCFCutoffController.signal_value_changed().connect(
594            sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
595        eVCFVelocityCurve.signal_value_changed().connect(
596            sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
597        eVCFVelocityScale.signal_value_changed().connect(
598            sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
599        eVCFVelocityDynamicRange.signal_value_changed().connect(
600            sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
601    
602        frame = new Gtk::Frame;
603        frame->add(cutoff_curve);
604        table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
605                              Gtk::SHRINK, Gtk::SHRINK);
606        rowno++;
607    
608      addProp(eVCFResonance);      addProp(eVCFResonance);
609      addProp(eVCFResonanceDynamic);      addProp(eVCFResonanceDynamic);
610      {      {
611          const char* choices[] = { "none", "genpurpose3", "genpurpose4",          const char* choices[] = { _("none"), _("genpurpose3"), _("genpurpose4"),
612                                    "genpurpose5", "genpurpose6", 0 };                                    _("genpurpose5"), _("genpurpose6"), 0 };
613          static const gig::vcf_res_ctrl_t values[] = {          static const gig::vcf_res_ctrl_t values[] = {
614              gig::vcf_res_ctrl_none,              gig::vcf_res_ctrl_none,
615              gig::vcf_res_ctrl_genpurpose3,              gig::vcf_res_ctrl_genpurpose3,
# Line 302  DimRegionEdit::DimRegionEdit() : Line 625  DimRegionEdit::DimRegionEdit() :
625    
626      nextPage();      nextPage();
627    
628      addHeader(_("Filter Cutoff Envelope (EG2)"));      lEG2 = addHeader(_("Filter Cutoff Envelope (EG2)"));
629      addProp(eEG2PreAttack);      addProp(eEG2PreAttack);
630      addProp(eEG2Attack);      addProp(eEG2Attack);
631      addProp(eEG2Decay1);      addProp(eEG2Decay1);
# Line 315  DimRegionEdit::DimRegionEdit() : Line 638  DimRegionEdit::DimRegionEdit() :
638      addProp(eEG2ControllerAttackInfluence);      addProp(eEG2ControllerAttackInfluence);
639      addProp(eEG2ControllerDecayInfluence);      addProp(eEG2ControllerDecayInfluence);
640      addProp(eEG2ControllerReleaseInfluence);      addProp(eEG2ControllerReleaseInfluence);
641      addHeader(_("Filter Cutoff Oscillator (LFO2)"));      lLFO2 = addHeader(_("Filter Cutoff Oscillator (LFO2)"));
642      addProp(eLFO2Frequency);      addProp(eLFO2Frequency);
643      addProp(eLFO2InternalDepth);      addProp(eLFO2InternalDepth);
644      addProp(eLFO2ControlDepth);      addProp(eLFO2ControlDepth);
645      {      {
646          const char* choices[] = { "internal", "modwheel", "foot",          const char* choices[] = { _("internal"), _("modwheel"), _("foot"),
647                                    "internal+modwheel", "internal+foot", 0 };                                    _("internal+modwheel"), _("internal+foot"), 0 };
648          static const gig::lfo2_ctrl_t values[] = {          static const gig::lfo2_ctrl_t values[] = {
649              gig::lfo2_ctrl_internal,              gig::lfo2_ctrl_internal,
650              gig::lfo2_ctrl_modwheel,              gig::lfo2_ctrl_modwheel,
# Line 348  DimRegionEdit::DimRegionEdit() : Line 671  DimRegionEdit::DimRegionEdit() :
671      addProp(eLFO3InternalDepth);      addProp(eLFO3InternalDepth);
672      addProp(eLFO3ControlDepth);      addProp(eLFO3ControlDepth);
673      {      {
674          const char* choices[] = { "internal", "modwheel", "aftertouch",          const char* choices[] = { _("internal"), _("modwheel"), _("aftertouch"),
675                                    "internal+modwheel", "internal+aftertouch", 0 };                                    _("internal+modwheel"), _("internal+aftertouch"), 0 };
676          static const gig::lfo3_ctrl_t values[] = {          static const gig::lfo3_ctrl_t values[] = {
677              gig::lfo3_ctrl_internal,              gig::lfo3_ctrl_internal,
678              gig::lfo3_ctrl_modwheel,              gig::lfo3_ctrl_modwheel,
# Line 364  DimRegionEdit::DimRegionEdit() : Line 687  DimRegionEdit::DimRegionEdit() :
687    
688      nextPage();      nextPage();
689    
690        addHeader(_("Velocity Response"));
691      eVelocityResponseCurve.set_choices(curve_type_texts, curve_type_values);      eVelocityResponseCurve.set_choices(curve_type_texts, curve_type_values);
692      addProp(eVelocityResponseCurve);      addProp(eVelocityResponseCurve);
693      addProp(eVelocityResponseDepth);      addProp(eVelocityResponseDepth);
694      addProp(eVelocityResponseCurveScaling);      addProp(eVelocityResponseCurveScaling);
695    
696        eVelocityResponseCurve.signal_value_changed().connect(
697            sigc::mem_fun(velocity_curve, &VelocityCurve::queue_draw));
698        eVelocityResponseDepth.signal_value_changed().connect(
699            sigc::mem_fun(velocity_curve, &VelocityCurve::queue_draw));
700        eVelocityResponseCurveScaling.signal_value_changed().connect(
701            sigc::mem_fun(velocity_curve, &VelocityCurve::queue_draw));
702    
703        frame = new Gtk::Frame;
704        frame->add(velocity_curve);
705        table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
706                              Gtk::SHRINK, Gtk::SHRINK);
707        rowno++;
708    
709        addHeader(_("Release Velocity Response"));
710      eReleaseVelocityResponseCurve.set_choices(curve_type_texts,      eReleaseVelocityResponseCurve.set_choices(curve_type_texts,
711                                                curve_type_values);                                                curve_type_values);
712      addProp(eReleaseVelocityResponseCurve);      addProp(eReleaseVelocityResponseCurve);
713      addProp(eReleaseVelocityResponseDepth);      addProp(eReleaseVelocityResponseDepth);
714    
715        eReleaseVelocityResponseCurve.signal_value_changed().connect(
716            sigc::mem_fun(release_curve, &VelocityCurve::queue_draw));
717        eReleaseVelocityResponseDepth.signal_value_changed().connect(
718            sigc::mem_fun(release_curve, &VelocityCurve::queue_draw));
719        frame = new Gtk::Frame;
720        frame->add(release_curve);
721        table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
722                              Gtk::SHRINK, Gtk::SHRINK);
723        rowno++;
724    
725      addProp(eReleaseTriggerDecay);      addProp(eReleaseTriggerDecay);
726      {      {
727          const char* choices[] = { "none", "effect4depth", "effect5depth", 0 };          const char* choices[] = { _("none"), _("effect4depth"), _("effect5depth"), 0 };
728          static const gig::dim_bypass_ctrl_t values[] = {          static const gig::dim_bypass_ctrl_t values[] = {
729              gig::dim_bypass_ctrl_none,              gig::dim_bypass_ctrl_none,
730              gig::dim_bypass_ctrl_94,              gig::dim_bypass_ctrl_94,
# Line 383  DimRegionEdit::DimRegionEdit() : Line 733  DimRegionEdit::DimRegionEdit() :
733          eDimensionBypass.set_choices(choices, values);          eDimensionBypass.set_choices(choices, values);
734      }      }
735      addProp(eDimensionBypass);      addProp(eDimensionBypass);
736        eSelfMask.widget.set_tooltip_text(_(
737            "If enabled: new notes with higher velocity value will stop older "
738            "notes with lower velocity values, that way you can save voices that "
739            "would barely be audible. This is also useful for certain drum sounds."
740        ));
741      addProp(eSelfMask);      addProp(eSelfMask);
742        eSustainDefeat.widget.set_tooltip_text(_(
743            "If enabled: sustain pedal will not hold a note. This way you can use "
744            "the sustain pedal for other purposes, for example to switch among "
745            "dimension regions."
746        ));
747      addProp(eSustainDefeat);      addProp(eSustainDefeat);
748        eMSDecode.widget.set_tooltip_text(_(
749            "Defines if Mid/Side Recordings should be decoded. Mid/Side Recordings "
750            "are an alternative way to record sounds in stereo. The sampler needs "
751            "to decode such samples to actually make use of them. Note: this "
752            "feature is currently not supported by LinuxSampler."
753        ));
754      addProp(eMSDecode);      addProp(eMSDecode);
755    
756      nextPage();      nextPage();
757    
758    
759      eEG1InfiniteSustain.signal_toggled().connect(      eEG1InfiniteSustain.signal_value_changed().connect(
760          sigc::mem_fun(*this, &DimRegionEdit::EG1InfiniteSustain_toggled) );          sigc::mem_fun(*this, &DimRegionEdit::EG1InfiniteSustain_toggled));
761      eEG2InfiniteSustain.signal_toggled().connect(      eEG2InfiniteSustain.signal_value_changed().connect(
762          sigc::mem_fun(*this, &DimRegionEdit::EG2InfiniteSustain_toggled) );          sigc::mem_fun(*this, &DimRegionEdit::EG2InfiniteSustain_toggled));
763      eEG1Controller.signal_changed().connect(      eEG1Controller.signal_value_changed().connect(
764          sigc::mem_fun(*this, &DimRegionEdit::EG1Controller_changed) );          sigc::mem_fun(*this, &DimRegionEdit::EG1Controller_changed));
765      eEG2Controller.signal_changed().connect(      eEG2Controller.signal_value_changed().connect(
766          sigc::mem_fun(*this, &DimRegionEdit::EG2Controller_changed) );          sigc::mem_fun(*this, &DimRegionEdit::EG2Controller_changed));
767      eLFO1Controller.signal_changed().connect(      eLFO1Controller.signal_value_changed().connect(
768          sigc::mem_fun(*this, &DimRegionEdit::LFO1Controller_changed) );          sigc::mem_fun(*this, &DimRegionEdit::LFO1Controller_changed));
769      eLFO2Controller.signal_changed().connect(      eLFO2Controller.signal_value_changed().connect(
770          sigc::mem_fun(*this, &DimRegionEdit::LFO2Controller_changed) );          sigc::mem_fun(*this, &DimRegionEdit::LFO2Controller_changed));
771      eLFO3Controller.signal_changed().connect(      eLFO3Controller.signal_value_changed().connect(
772          sigc::mem_fun(*this, &DimRegionEdit::LFO3Controller_changed) );          sigc::mem_fun(*this, &DimRegionEdit::LFO3Controller_changed));
773      eAttenuationController.signal_changed().connect(      eAttenuationController.signal_value_changed().connect(
774          sigc::mem_fun(*this, &DimRegionEdit::AttenuationController_changed) );          sigc::mem_fun(*this, &DimRegionEdit::AttenuationController_changed));
775      eVCFEnabled.signal_toggled().connect(      eVCFEnabled.signal_value_changed().connect(
776          sigc::mem_fun(*this, &DimRegionEdit::VCFEnabled_toggled) );          sigc::mem_fun(*this, &DimRegionEdit::VCFEnabled_toggled));
777      eVCFCutoffController.signal_changed().connect(      eVCFCutoffController.signal_value_changed().connect(
778          sigc::mem_fun(*this, &DimRegionEdit::VCFCutoffController_changed) );          sigc::mem_fun(*this, &DimRegionEdit::VCFCutoffController_changed));
779      eVCFResonanceController.signal_changed().connect(      eVCFResonanceController.signal_value_changed().connect(
780          sigc::mem_fun(*this, &DimRegionEdit::VCFResonanceController_changed) );          sigc::mem_fun(*this, &DimRegionEdit::VCFResonanceController_changed));
781    
782      eCrossfade_in_start.signal_changed_by_user().connect(      eCrossfade_in_start.signal_value_changed().connect(
783          sigc::mem_fun(*this, &DimRegionEdit::crossfade1_changed));          sigc::mem_fun(*this, &DimRegionEdit::crossfade1_changed));
784      eCrossfade_in_end.signal_changed_by_user().connect(      eCrossfade_in_end.signal_value_changed().connect(
785          sigc::mem_fun(*this, &DimRegionEdit::crossfade2_changed));          sigc::mem_fun(*this, &DimRegionEdit::crossfade2_changed));
786      eCrossfade_out_start.signal_changed_by_user().connect(      eCrossfade_out_start.signal_value_changed().connect(
787          sigc::mem_fun(*this, &DimRegionEdit::crossfade3_changed));          sigc::mem_fun(*this, &DimRegionEdit::crossfade3_changed));
788      eCrossfade_out_end.signal_changed_by_user().connect(      eCrossfade_out_end.signal_value_changed().connect(
789          sigc::mem_fun(*this, &DimRegionEdit::crossfade4_changed));          sigc::mem_fun(*this, &DimRegionEdit::crossfade4_changed));
790    
791      eSampleLoopEnabled.signal_toggled().connect(      eSampleLoopEnabled.signal_value_changed().connect(
792          sigc::mem_fun(*this, &DimRegionEdit::loop_enabled_toggled));          sigc::mem_fun(*this, &DimRegionEdit::update_loop_elements));
793      eSampleLoopStart.signal_changed_by_user().connect(      eSampleLoopStart.signal_value_changed().connect(
794          sigc::mem_fun(*this, &DimRegionEdit::updateLoopElements));          sigc::mem_fun(*this, &DimRegionEdit::loop_start_changed));
795      eSampleLoopLength.signal_changed_by_user().connect(      eSampleLoopLength.signal_value_changed().connect(
796          sigc::mem_fun(*this, &DimRegionEdit::updateLoopElements));          sigc::mem_fun(*this, &DimRegionEdit::loop_length_changed));
797      eSampleLoopInfinite.signal_toggled().connect(      eSampleLoopInfinite.signal_value_changed().connect(
798          sigc::mem_fun(*this, &DimRegionEdit::loop_infinite_toggled));          sigc::mem_fun(*this, &DimRegionEdit::loop_infinite_toggled));
799    
800      append_page(*table[0], "Sample");      append_page(*table[0], _("Sample"));
801      append_page(*table[1], "Amplitude (1)");      append_page(*table[1], _("Amplitude (1)"));
802      append_page(*table[2], "Amplitude (2)");      append_page(*table[2], _("Amplitude (2)"));
803      append_page(*table[3], "Filter (1)");      append_page(*table[3], _("Filter (1)"));
804      append_page(*table[4], "Filter (2)");      append_page(*table[4], _("Filter (2)"));
805      append_page(*table[5], "Pitch");      append_page(*table[5], _("Pitch"));
806      append_page(*table[6], "Misc");      append_page(*table[6], _("Misc"));
807  }  }
808    
809  DimRegionEdit::~DimRegionEdit()  DimRegionEdit::~DimRegionEdit()
# Line 448  void DimRegionEdit::addString(const char Line 814  void DimRegionEdit::addString(const char
814                                Gtk::Entry*& widget)                                Gtk::Entry*& widget)
815  {  {
816      label = new Gtk::Label(Glib::ustring(labelText) + ":");      label = new Gtk::Label(Glib::ustring(labelText) + ":");
817      label->set_alignment(Gtk::ALIGN_LEFT);      label->set_alignment(Gtk::ALIGN_START);
818    
819      table[pageno]->attach(*label, 1, 2, rowno, rowno + 1,      table[pageno]->attach(*label, 1, 2, rowno, rowno + 1,
820                            Gtk::FILL, Gtk::SHRINK);                            Gtk::FILL, Gtk::SHRINK);
# Line 461  void DimRegionEdit::addString(const char Line 827  void DimRegionEdit::addString(const char
827      rowno++;      rowno++;
828  }  }
829    
830  void DimRegionEdit::addHeader(const char* text)  Gtk::Label* DimRegionEdit::addHeader(const char* text)
831  {  {
832      if (firstRowInBlock < rowno - 1)      if (firstRowInBlock < rowno - 1)
833      {      {
# Line 474  void DimRegionEdit::addHeader(const char Line 840  void DimRegionEdit::addHeader(const char
840      str += "</b>";      str += "</b>";
841      Gtk::Label* label = new Gtk::Label(str);      Gtk::Label* label = new Gtk::Label(str);
842      label->set_use_markup();      label->set_use_markup();
843      label->set_alignment(Gtk::ALIGN_LEFT);      label->set_alignment(Gtk::ALIGN_START);
844      table[pageno]->attach(*label, 0, 3, rowno, rowno + 1,      table[pageno]->attach(*label, 0, 3, rowno, rowno + 1,
845                            Gtk::FILL, Gtk::SHRINK);                            Gtk::FILL, Gtk::SHRINK);
846      rowno++;      rowno++;
847      firstRowInBlock = rowno;      firstRowInBlock = rowno;
848        return label;
849  }  }
850    
851  void DimRegionEdit::nextPage()  void DimRegionEdit::nextPage()
# Line 499  void DimRegionEdit::addProp(BoolEntry& b Line 866  void DimRegionEdit::addProp(BoolEntry& b
866      table[pageno]->attach(boolentry.widget, 1, 3, rowno, rowno + 1,      table[pageno]->attach(boolentry.widget, 1, 3, rowno, rowno + 1,
867                            Gtk::FILL, Gtk::SHRINK);                            Gtk::FILL, Gtk::SHRINK);
868      rowno++;      rowno++;
     boolentry.signal_changed_by_user().connect(  
         sigc::bind(dimreg_changed_signal.make_slot(), sigc::ref(this->dimregion))  
     );  
869  }  }
870    
871  void DimRegionEdit::addProp(BoolEntryPlus6& boolentry)  void DimRegionEdit::addProp(BoolEntryPlus6& boolentry)
# Line 509  void DimRegionEdit::addProp(BoolEntryPlu Line 873  void DimRegionEdit::addProp(BoolEntryPlu
873      table[pageno]->attach(boolentry.widget, 1, 3, rowno, rowno + 1,      table[pageno]->attach(boolentry.widget, 1, 3, rowno, rowno + 1,
874                            Gtk::FILL, Gtk::SHRINK);                            Gtk::FILL, Gtk::SHRINK);
875      rowno++;      rowno++;
     boolentry.signal_changed_by_user().connect(  
         sigc::bind(dimreg_changed_signal.make_slot(), sigc::ref(this->dimregion))  
     );  
876  }  }
877    
878  void DimRegionEdit::addProp(LabelWidget& prop)  void DimRegionEdit::addProp(LabelWidget& prop)
# Line 521  void DimRegionEdit::addProp(LabelWidget& Line 882  void DimRegionEdit::addProp(LabelWidget&
882      table[pageno]->attach(prop.widget, 2, 3, rowno, rowno + 1,      table[pageno]->attach(prop.widget, 2, 3, rowno, rowno + 1,
883                            Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);                            Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
884      rowno++;      rowno++;
     prop.signal_changed_by_user().connect(  
         sigc::bind(dimreg_changed_signal.make_slot(), sigc::ref(this->dimregion))  
     );  
885  }  }
886    
887    
888  void DimRegionEdit::set_dim_region(gig::DimensionRegion* d)  void DimRegionEdit::set_dim_region(gig::DimensionRegion* d)
889  {  {
890      dimregion = d;      dimregion = d;
891        velocity_curve.set_dim_region(d);
892        release_curve.set_dim_region(d);
893        cutoff_curve.set_dim_region(d);
894        crossfade_curve.set_dim_region(d);
895    
896      set_sensitive(d);      set_sensitive(d);
897      if (!d) return;      if (!d) return;
898    
899      wSample->set_text(d->pSample ? d->pSample->pInfo->Name.c_str() : "NULL");      update_model++;
900      eEG1PreAttack.set_ptr(&d->EG1PreAttack);      eEG1PreAttack.set_value(d->EG1PreAttack);
901      eEG1Attack.set_ptr(&d->EG1Attack);      eEG1Attack.set_value(d->EG1Attack);
902      eEG1Decay1.set_ptr(&d->EG1Decay1);      eEG1Decay1.set_value(d->EG1Decay1);
903      eEG1Decay2.set_ptr(&d->EG1Decay2);      eEG1Decay2.set_value(d->EG1Decay2);
904      eEG1InfiniteSustain.set_ptr(&d->EG1InfiniteSustain);      eEG1InfiniteSustain.set_value(d->EG1InfiniteSustain);
905      eEG1Sustain.set_ptr(&d->EG1Sustain);      eEG1Sustain.set_value(d->EG1Sustain);
906      eEG1Release.set_ptr(&d->EG1Release);      eEG1Release.set_value(d->EG1Release);
907      eEG1Hold.set_ptr(&d->EG1Hold);      eEG1Hold.set_value(d->EG1Hold);
908      eEG1Controller.set_ptr(&d->EG1Controller);      eEG1Controller.set_value(d->EG1Controller);
909      eEG1ControllerInvert.set_ptr(&d->EG1ControllerInvert);      eEG1ControllerInvert.set_value(d->EG1ControllerInvert);
910      eEG1ControllerAttackInfluence.set_ptr(&d->EG1ControllerAttackInfluence);      eEG1ControllerAttackInfluence.set_value(d->EG1ControllerAttackInfluence);
911      eEG1ControllerDecayInfluence.set_ptr(&d->EG1ControllerDecayInfluence);      eEG1ControllerDecayInfluence.set_value(d->EG1ControllerDecayInfluence);
912      eEG1ControllerReleaseInfluence.set_ptr(&d->EG1ControllerReleaseInfluence);      eEG1ControllerReleaseInfluence.set_value(d->EG1ControllerReleaseInfluence);
913      eLFO1Frequency.set_ptr(&d->LFO1Frequency);      eLFO1Frequency.set_value(d->LFO1Frequency);
914      eLFO1InternalDepth.set_ptr(&d->LFO1InternalDepth);      eLFO1InternalDepth.set_value(d->LFO1InternalDepth);
915      eLFO1ControlDepth.set_ptr(&d->LFO1ControlDepth);      eLFO1ControlDepth.set_value(d->LFO1ControlDepth);
916      eLFO1Controller.set_ptr(&d->LFO1Controller);      eLFO1Controller.set_value(d->LFO1Controller);
917      eLFO1FlipPhase.set_ptr(&d->LFO1FlipPhase);      eLFO1FlipPhase.set_value(d->LFO1FlipPhase);
918      eLFO1Sync.set_ptr(&d->LFO1Sync);      eLFO1Sync.set_value(d->LFO1Sync);
919      eEG2PreAttack.set_ptr(&d->EG2PreAttack);      eEG2PreAttack.set_value(d->EG2PreAttack);
920      eEG2Attack.set_ptr(&d->EG2Attack);      eEG2Attack.set_value(d->EG2Attack);
921      eEG2Decay1.set_ptr(&d->EG2Decay1);      eEG2Decay1.set_value(d->EG2Decay1);
922      eEG2Decay2.set_ptr(&d->EG2Decay2);      eEG2Decay2.set_value(d->EG2Decay2);
923      eEG2InfiniteSustain.set_ptr(&d->EG2InfiniteSustain);      eEG2InfiniteSustain.set_value(d->EG2InfiniteSustain);
924      eEG2Sustain.set_ptr(&d->EG2Sustain);      eEG2Sustain.set_value(d->EG2Sustain);
925      eEG2Release.set_ptr(&d->EG2Release);      eEG2Release.set_value(d->EG2Release);
926      eEG2Controller.set_ptr(&d->EG2Controller);      eEG2Controller.set_value(d->EG2Controller);
927      eEG2ControllerInvert.set_ptr(&d->EG2ControllerInvert);      eEG2ControllerInvert.set_value(d->EG2ControllerInvert);
928      eEG2ControllerAttackInfluence.set_ptr(&d->EG2ControllerAttackInfluence);      eEG2ControllerAttackInfluence.set_value(d->EG2ControllerAttackInfluence);
929      eEG2ControllerDecayInfluence.set_ptr(&d->EG2ControllerDecayInfluence);      eEG2ControllerDecayInfluence.set_value(d->EG2ControllerDecayInfluence);
930      eEG2ControllerReleaseInfluence.set_ptr(&d->EG2ControllerReleaseInfluence);      eEG2ControllerReleaseInfluence.set_value(d->EG2ControllerReleaseInfluence);
931      eLFO2Frequency.set_ptr(&d->LFO2Frequency);      eLFO2Frequency.set_value(d->LFO2Frequency);
932      eLFO2InternalDepth.set_ptr(&d->LFO2InternalDepth);      eLFO2InternalDepth.set_value(d->LFO2InternalDepth);
933      eLFO2ControlDepth.set_ptr(&d->LFO2ControlDepth);      eLFO2ControlDepth.set_value(d->LFO2ControlDepth);
934      eLFO2Controller.set_ptr(&d->LFO2Controller);      eLFO2Controller.set_value(d->LFO2Controller);
935      eLFO2FlipPhase.set_ptr(&d->LFO2FlipPhase);      eLFO2FlipPhase.set_value(d->LFO2FlipPhase);
936      eLFO2Sync.set_ptr(&d->LFO2Sync);      eLFO2Sync.set_value(d->LFO2Sync);
937      eEG3Attack.set_ptr(&d->EG3Attack);      eEG3Attack.set_value(d->EG3Attack);
938      eEG3Depth.set_ptr(&d->EG3Depth);      eEG3Depth.set_value(d->EG3Depth);
939      eLFO3Frequency.set_ptr(&d->LFO3Frequency);      eLFO3Frequency.set_value(d->LFO3Frequency);
940      eLFO3InternalDepth.set_ptr(&d->LFO3InternalDepth);      eLFO3InternalDepth.set_value(d->LFO3InternalDepth);
941      eLFO3ControlDepth.set_ptr(&d->LFO3ControlDepth);      eLFO3ControlDepth.set_value(d->LFO3ControlDepth);
942      eLFO3Controller.set_ptr(&d->LFO3Controller);      eLFO3Controller.set_value(d->LFO3Controller);
943      eLFO3Sync.set_ptr(&d->LFO3Sync);      eLFO3Sync.set_value(d->LFO3Sync);
944      eVCFEnabled.set_ptr(&d->VCFEnabled);      eVCFEnabled.set_value(d->VCFEnabled);
945      eVCFType.set_ptr(&d->VCFType);      eVCFType.set_value(d->VCFType);
946      eVCFCutoffController.set_ptr(&d->VCFCutoffController);      eVCFCutoffController.set_value(d->VCFCutoffController);
947      eVCFCutoffControllerInvert.set_ptr(&d->VCFCutoffControllerInvert);      eVCFCutoffControllerInvert.set_value(d->VCFCutoffControllerInvert);
948      eVCFCutoff.set_ptr(&d->VCFCutoff);      eVCFCutoff.set_value(d->VCFCutoff);
949      eVCFVelocityCurve.set_ptr(&d->VCFVelocityCurve);      eVCFVelocityCurve.set_value(d->VCFVelocityCurve);
950      eVCFVelocityScale.set_ptr(&d->VCFVelocityScale);      eVCFVelocityScale.set_value(d->VCFVelocityScale);
951      eVCFVelocityDynamicRange.set_ptr(&d->VCFVelocityDynamicRange);      eVCFVelocityDynamicRange.set_value(d->VCFVelocityDynamicRange);
952      eVCFResonance.set_ptr(&d->VCFResonance);      eVCFResonance.set_value(d->VCFResonance);
953      eVCFResonanceDynamic.set_ptr(&d->VCFResonanceDynamic);      eVCFResonanceDynamic.set_value(d->VCFResonanceDynamic);
954      eVCFResonanceController.set_ptr(&d->VCFResonanceController);      eVCFResonanceController.set_value(d->VCFResonanceController);
955      eVCFKeyboardTracking.set_ptr(&d->VCFKeyboardTracking);      eVCFKeyboardTracking.set_value(d->VCFKeyboardTracking);
956      eVCFKeyboardTrackingBreakpoint.set_ptr(&d->VCFKeyboardTrackingBreakpoint);      eVCFKeyboardTrackingBreakpoint.set_value(d->VCFKeyboardTrackingBreakpoint);
957      eVelocityResponseCurve.set_ptr(&d->VelocityResponseCurve);      eVelocityResponseCurve.set_value(d->VelocityResponseCurve);
958      eVelocityResponseDepth.set_ptr(&d->VelocityResponseDepth);      eVelocityResponseDepth.set_value(d->VelocityResponseDepth);
959      eVelocityResponseCurveScaling.set_ptr(&d->VelocityResponseCurveScaling);      eVelocityResponseCurveScaling.set_value(d->VelocityResponseCurveScaling);
960      eReleaseVelocityResponseCurve.set_ptr(&d->ReleaseVelocityResponseCurve);      eReleaseVelocityResponseCurve.set_value(d->ReleaseVelocityResponseCurve);
961      eReleaseVelocityResponseDepth.set_ptr(&d->ReleaseVelocityResponseDepth);      eReleaseVelocityResponseDepth.set_value(d->ReleaseVelocityResponseDepth);
962      eReleaseTriggerDecay.set_ptr(&d->ReleaseTriggerDecay);      eReleaseTriggerDecay.set_value(d->ReleaseTriggerDecay);
963        eCrossfade_in_start.set_value(d->Crossfade.in_start);
964      eCrossfade_in_start.set_ptr(0);      eCrossfade_in_end.set_value(d->Crossfade.in_end);
965      eCrossfade_in_end.set_ptr(0);      eCrossfade_out_start.set_value(d->Crossfade.out_start);
966      eCrossfade_out_start.set_ptr(0);      eCrossfade_out_end.set_value(d->Crossfade.out_end);
967      eCrossfade_out_end.set_ptr(0);      ePitchTrack.set_value(d->PitchTrack);
968      eCrossfade_in_start.set_ptr(&d->Crossfade.in_start);      eDimensionBypass.set_value(d->DimensionBypass);
969      eCrossfade_in_end.set_ptr(&d->Crossfade.in_end);      ePan.set_value(d->Pan);
970      eCrossfade_out_start.set_ptr(&d->Crossfade.out_start);      eSelfMask.set_value(d->SelfMask);
971      eCrossfade_out_end.set_ptr(&d->Crossfade.out_end);      eAttenuationController.set_value(d->AttenuationController);
972        eInvertAttenuationController.set_value(d->InvertAttenuationController);
973      ePitchTrack.set_ptr(&d->PitchTrack);      eAttenuationControllerThreshold.set_value(d->AttenuationControllerThreshold);
974      eDimensionBypass.set_ptr(&d->DimensionBypass);      eChannelOffset.set_value(d->ChannelOffset);
975      ePan.set_ptr(&d->Pan);      eSustainDefeat.set_value(d->SustainDefeat);
976      eSelfMask.set_ptr(&d->SelfMask);      eMSDecode.set_value(d->MSDecode);
977      eAttenuationController.set_ptr(&d->AttenuationController);      eSampleStartOffset.set_value(d->SampleStartOffset);
978      eInvertAttenuationController.set_ptr(&d->InvertAttenuationController);      eUnityNote.set_value(d->UnityNote);
979      eAttenuationControllerThreshold.set_ptr(&d->AttenuationControllerThreshold);      // assemble sample format info string
980      eChannelOffset.set_ptr(&d->ChannelOffset);      {
981      eSustainDefeat.set_ptr(&d->SustainDefeat);          Glib::ustring s;
982      eMSDecode.set_ptr(&d->MSDecode);          if (d->pSample) {
983      eSampleStartOffset.set_ptr(&d->SampleStartOffset);              switch (d->pSample->Channels) {
984      eUnityNote.set_ptr(&d->UnityNote);                  case 1: s = _("Mono"); break;
985      eFineTune.set_ptr(&d->FineTune);                  case 2: s = _("Stereo"); break;
986      eGain.set_ptr(&d->Gain);                  default:
987      eGainPlus6.set_ptr(&d->Gain);                      s = ToString(d->pSample->Channels) + _(" audio channels");
988                        break;
989                }
990                s += " " + ToString(d->pSample->BitDepth) + " Bits";
991                s += " " + ToString(d->pSample->SamplesPerSecond/1000) + "."
992                          + ToString((d->pSample->SamplesPerSecond%1000)/100) + " kHz";
993            } else {
994                s = _("No sample assigned to this dimension region.");
995            }
996            eSampleFormatInfo.text.set_text(s);
997        }
998        // generate sample's memory address pointer string
999        {
1000            Glib::ustring s;
1001            if (d->pSample) {
1002                char buf[64] = {};
1003                snprintf(buf, sizeof(buf), "%p", d->pSample);
1004                s = buf;
1005            } else {
1006                s = "---";
1007            }
1008            eSampleID.text.set_text(s);
1009        }
1010        eFineTune.set_value(d->FineTune);
1011        eGain.set_value(d->Gain);
1012        eGainPlus6.set_value(d->Gain);
1013        eSampleLoopEnabled.set_value(d->SampleLoops);
1014        eSampleLoopType.set_value(
1015            d->SampleLoops ? d->pSampleLoops[0].LoopType : 0);
1016        eSampleLoopStart.set_value(
1017            d->SampleLoops ? d->pSampleLoops[0].LoopStart : 0);
1018        eSampleLoopLength.set_value(
1019            d->SampleLoops ? d->pSampleLoops[0].LoopLength : 0);
1020        eSampleLoopInfinite.set_value(
1021            d->pSample && d->pSample->LoopPlayCount == 0);
1022        eSampleLoopPlayCount.set_value(
1023            d->pSample ? d->pSample->LoopPlayCount : 0);
1024        update_model--;
1025    
1026      eSampleLoopEnabled.set_active(d->SampleLoops);      wSample->set_text(d->pSample ? gig_to_utf8(d->pSample->pInfo->Name) :
1027      updateLoopElements();                        _("NULL"));
1028    
1029        update_loop_elements();
1030      VCFEnabled_toggled();      VCFEnabled_toggled();
1031  }  }
1032    
1033    
1034  void DimRegionEdit::VCFEnabled_toggled()  void DimRegionEdit::VCFEnabled_toggled()
1035  {  {
1036      bool sensitive = eVCFEnabled.get_active();      bool sensitive = eVCFEnabled.get_value();
1037      eVCFType.set_sensitive(sensitive);      eVCFType.set_sensitive(sensitive);
1038      eVCFCutoffController.set_sensitive(sensitive);      eVCFCutoffController.set_sensitive(sensitive);
1039      eVCFVelocityCurve.set_sensitive(sensitive);      eVCFVelocityCurve.set_sensitive(sensitive);
1040      eVCFVelocityScale.set_sensitive(sensitive);      eVCFVelocityScale.set_sensitive(sensitive);
1041      eVCFVelocityDynamicRange.set_sensitive(sensitive);      eVCFVelocityDynamicRange.set_sensitive(sensitive);
1042        cutoff_curve.set_sensitive(sensitive);
1043      eVCFResonance.set_sensitive(sensitive);      eVCFResonance.set_sensitive(sensitive);
1044      eVCFResonanceController.set_sensitive(sensitive);      eVCFResonanceController.set_sensitive(sensitive);
1045      eVCFKeyboardTracking.set_sensitive(sensitive);      eVCFKeyboardTracking.set_sensitive(sensitive);
1046      eVCFKeyboardTrackingBreakpoint.set_sensitive(sensitive);      eVCFKeyboardTrackingBreakpoint.set_sensitive(sensitive);
1047        lEG2->set_sensitive(sensitive);
1048      eEG2PreAttack.set_sensitive(sensitive);      eEG2PreAttack.set_sensitive(sensitive);
1049      eEG2Attack.set_sensitive(sensitive);      eEG2Attack.set_sensitive(sensitive);
1050      eEG2Decay1.set_sensitive(sensitive);      eEG2Decay1.set_sensitive(sensitive);
# Line 652  void DimRegionEdit::VCFEnabled_toggled() Line 1055  void DimRegionEdit::VCFEnabled_toggled()
1055      eEG2ControllerAttackInfluence.set_sensitive(sensitive);      eEG2ControllerAttackInfluence.set_sensitive(sensitive);
1056      eEG2ControllerDecayInfluence.set_sensitive(sensitive);      eEG2ControllerDecayInfluence.set_sensitive(sensitive);
1057      eEG2ControllerReleaseInfluence.set_sensitive(sensitive);      eEG2ControllerReleaseInfluence.set_sensitive(sensitive);
1058        lLFO2->set_sensitive(sensitive);
1059      eLFO2Frequency.set_sensitive(sensitive);      eLFO2Frequency.set_sensitive(sensitive);
1060      eLFO2InternalDepth.set_sensitive(sensitive);      eLFO2InternalDepth.set_sensitive(sensitive);
1061      eLFO2ControlDepth.set_sensitive(sensitive);      eLFO2ControlDepth.set_sensitive(sensitive);
# Line 678  void DimRegionEdit::VCFEnabled_toggled() Line 1082  void DimRegionEdit::VCFEnabled_toggled()
1082    
1083  void DimRegionEdit::VCFCutoffController_changed()  void DimRegionEdit::VCFCutoffController_changed()
1084  {  {
1085      int rowno = eVCFCutoffController.get_active_row_number();      gig::vcf_cutoff_ctrl_t ctrl = eVCFCutoffController.get_value();
1086      bool hasController = rowno != 0 && rowno != 1;      bool hasController = ctrl != gig::vcf_cutoff_ctrl_none && ctrl != gig::vcf_cutoff_ctrl_none2;
1087    
1088      eVCFCutoffControllerInvert.set_sensitive(hasController);      eVCFCutoffControllerInvert.set_sensitive(hasController);
1089      eVCFCutoff.set_sensitive(!hasController);      eVCFCutoff.set_sensitive(!hasController);
1090      eVCFResonanceDynamic.set_sensitive(!hasController);      eVCFResonanceDynamic.set_sensitive(!hasController);
1091      eVCFVelocityScale.label.set_text(hasController ? "Minimum cutoff:" :      eVCFVelocityScale.label.set_text(hasController ? _("Minimum cutoff:") :
1092                                       "Velocity scale:");                                       _("Velocity scale:"));
1093  }  }
1094    
1095  void DimRegionEdit::VCFResonanceController_changed()  void DimRegionEdit::VCFResonanceController_changed()
1096  {  {
1097      bool hasController = eVCFResonanceController.get_active_row_number() != 0;      bool hasController = eVCFResonanceController.get_value() != gig::vcf_res_ctrl_none;
1098      eVCFResonance.set_sensitive(!hasController);      eVCFResonance.set_sensitive(!hasController);
1099  }  }
1100    
1101  void DimRegionEdit::EG1InfiniteSustain_toggled()  void DimRegionEdit::EG1InfiniteSustain_toggled()
1102  {  {
1103      bool infSus = eEG1InfiniteSustain.get_active();      bool infSus = eEG1InfiniteSustain.get_value();
1104      eEG1Decay2.set_sensitive(!infSus);      eEG1Decay2.set_sensitive(!infSus);
1105  }  }
1106    
1107  void DimRegionEdit::EG2InfiniteSustain_toggled()  void DimRegionEdit::EG2InfiniteSustain_toggled()
1108  {  {
1109      bool infSus = eEG2InfiniteSustain.get_active();      bool infSus = eEG2InfiniteSustain.get_value();
1110      eEG2Decay2.set_sensitive(!infSus);      eEG2Decay2.set_sensitive(!infSus);
1111  }  }
1112    
1113  void DimRegionEdit::EG1Controller_changed()  void DimRegionEdit::EG1Controller_changed()
1114  {  {
1115      bool hasController = eEG1Controller.get_active_row_number() != 0;      bool hasController = eEG1Controller.get_value().type != gig::leverage_ctrl_t::type_none;
1116      eEG1ControllerInvert.set_sensitive(hasController);      eEG1ControllerInvert.set_sensitive(hasController);
1117  }  }
1118    
1119  void DimRegionEdit::EG2Controller_changed()  void DimRegionEdit::EG2Controller_changed()
1120  {  {
1121      bool hasController = eEG2Controller.get_active_row_number() != 0;      bool hasController = eEG2Controller.get_value().type != gig::leverage_ctrl_t::type_none;
1122      eEG2ControllerInvert.set_sensitive(hasController);      eEG2ControllerInvert.set_sensitive(hasController);
1123  }  }
1124    
1125  void DimRegionEdit::AttenuationController_changed()  void DimRegionEdit::AttenuationController_changed()
1126  {  {
1127      bool hasController = eAttenuationController.get_active_row_number() != 0;      bool hasController =
1128            eAttenuationController.get_value().type != gig::leverage_ctrl_t::type_none;
1129      eInvertAttenuationController.set_sensitive(hasController);      eInvertAttenuationController.set_sensitive(hasController);
1130      eAttenuationControllerThreshold.set_sensitive(hasController);      eAttenuationControllerThreshold.set_sensitive(hasController);
1131      eCrossfade_in_start.set_sensitive(hasController);      eCrossfade_in_start.set_sensitive(hasController);
1132      eCrossfade_in_end.set_sensitive(hasController);      eCrossfade_in_end.set_sensitive(hasController);
1133      eCrossfade_out_start.set_sensitive(hasController);      eCrossfade_out_start.set_sensitive(hasController);
1134      eCrossfade_out_end.set_sensitive(hasController);      eCrossfade_out_end.set_sensitive(hasController);
1135        crossfade_curve.set_sensitive(hasController);
1136  }  }
1137    
1138  void DimRegionEdit::LFO1Controller_changed()  void DimRegionEdit::LFO1Controller_changed()
1139  {  {
1140      int rowno = eLFO1Controller.get_active_row_number();      gig::lfo1_ctrl_t ctrl = eLFO1Controller.get_value();
1141      eLFO1ControlDepth.set_sensitive(rowno != 0);      eLFO1ControlDepth.set_sensitive(ctrl != gig::lfo1_ctrl_internal);
1142      eLFO1InternalDepth.set_sensitive(rowno != 1 && rowno != 2);      eLFO1InternalDepth.set_sensitive(ctrl != gig::lfo1_ctrl_modwheel &&
1143                                         ctrl != gig::lfo1_ctrl_breath);
1144  }  }
1145    
1146  void DimRegionEdit::LFO2Controller_changed()  void DimRegionEdit::LFO2Controller_changed()
1147  {  {
1148      int rowno = eLFO2Controller.get_active_row_number();      gig::lfo2_ctrl_t ctrl = eLFO2Controller.get_value();
1149      eLFO2ControlDepth.set_sensitive(rowno != 0);      eLFO2ControlDepth.set_sensitive(ctrl != gig::lfo2_ctrl_internal);
1150      eLFO2InternalDepth.set_sensitive(rowno != 1 && rowno != 2);      eLFO2InternalDepth.set_sensitive(ctrl != gig::lfo2_ctrl_modwheel &&
1151                                         ctrl != gig::lfo2_ctrl_foot);
1152  }  }
1153    
1154  void DimRegionEdit::LFO3Controller_changed()  void DimRegionEdit::LFO3Controller_changed()
1155  {  {
1156      int rowno = eLFO3Controller.get_active_row_number();      gig::lfo3_ctrl_t ctrl = eLFO3Controller.get_value();
1157      eLFO3ControlDepth.set_sensitive(rowno != 0);      eLFO3ControlDepth.set_sensitive(ctrl != gig::lfo3_ctrl_internal);
1158      eLFO3InternalDepth.set_sensitive(rowno != 1 && rowno != 2);      eLFO3InternalDepth.set_sensitive(ctrl != gig::lfo3_ctrl_modwheel &&
1159                                         ctrl != gig::lfo3_ctrl_aftertouch);
1160  }  }
1161    
1162  void DimRegionEdit::crossfade1_changed()  void DimRegionEdit::crossfade1_changed()
1163  {  {
1164      double c1 = eCrossfade_in_start.get_value();      update_model++;
1165      double c2 = eCrossfade_in_end.get_value();      eCrossfade_in_end.set_value(dimregion->Crossfade.in_end);
1166      if (c1 > c2) eCrossfade_in_end.set_value(c1);      eCrossfade_out_start.set_value(dimregion->Crossfade.out_start);
1167        eCrossfade_out_end.set_value(dimregion->Crossfade.out_end);
1168        update_model--;
1169  }  }
1170    
1171  void DimRegionEdit::crossfade2_changed()  void DimRegionEdit::crossfade2_changed()
1172  {  {
1173      double c1 = eCrossfade_in_start.get_value();      update_model++;
1174      double c2 = eCrossfade_in_end.get_value();      eCrossfade_in_start.set_value(dimregion->Crossfade.in_start);
1175      double c3 = eCrossfade_out_start.get_value();      eCrossfade_out_start.set_value(dimregion->Crossfade.out_start);
1176        eCrossfade_out_end.set_value(dimregion->Crossfade.out_end);
1177      if (c2 < c1) eCrossfade_in_start.set_value(c2);      update_model--;
     if (c2 > c3) eCrossfade_out_start.set_value(c2);  
1178  }  }
1179    
1180  void DimRegionEdit::crossfade3_changed()  void DimRegionEdit::crossfade3_changed()
1181  {  {
1182      double c2 = eCrossfade_in_end.get_value();      update_model++;
1183      double c3 = eCrossfade_out_start.get_value();      eCrossfade_in_start.set_value(dimregion->Crossfade.in_start);
1184      double c4 = eCrossfade_out_end.get_value();      eCrossfade_in_end.set_value(dimregion->Crossfade.in_end);
1185        eCrossfade_out_end.set_value(dimregion->Crossfade.out_end);
1186      if (c3 < c2) eCrossfade_in_end.set_value(c3);      update_model--;
     if (c3 > c4) eCrossfade_out_end.set_value(c3);  
1187  }  }
1188    
1189  void DimRegionEdit::crossfade4_changed()  void DimRegionEdit::crossfade4_changed()
1190  {  {
1191      double c3 = eCrossfade_out_start.get_value();      update_model++;
1192      double c4 = eCrossfade_out_end.get_value();      eCrossfade_in_start.set_value(dimregion->Crossfade.in_start);
1193        eCrossfade_in_end.set_value(dimregion->Crossfade.in_end);
1194      if (c4 < c3) eCrossfade_out_start.set_value(c4);      eCrossfade_out_start.set_value(dimregion->Crossfade.out_start);
1195  }      update_model--;
   
 void DimRegionEdit::loop_enabled_toggled()  
 {  
     const bool active = eSampleLoopEnabled.get_active();  
     if (active) {  
         // create a new sample loop in case there is none yet  
         if (!dimregion->SampleLoops) {  
             DLS::sample_loop_t loop;  
             loop.LoopType   = gig::loop_type_normal;  
             // loop the whole sample by default  
             loop.LoopStart  = 0;  
             loop.LoopLength =  
                 (dimregion->pSample) ? dimregion->pSample->GetSize() : 0;  
             dimreg_to_be_changed_signal.emit(dimregion);  
             dimregion->AddSampleLoop(&loop);  
             dimreg_changed_signal.emit(dimregion);  
         }  
     } else {  
         if (dimregion->SampleLoops) {  
             dimreg_to_be_changed_signal.emit(dimregion);  
             // delete ALL existing sample loops  
             while (dimregion->SampleLoops) {  
                 dimregion->DeleteSampleLoop(&dimregion->pSampleLoops[0]);  
             }  
             dimreg_changed_signal.emit(dimregion);  
         }  
     }  
     updateLoopElements();  
1196  }  }
1197    
1198  void DimRegionEdit::updateLoopElements()  void DimRegionEdit::update_loop_elements()
1199  {  {
1200      const bool active = eSampleLoopEnabled.get_active();      update_model++;
1201        const bool active = eSampleLoopEnabled.get_value();
1202      eSampleLoopStart.set_sensitive(active);      eSampleLoopStart.set_sensitive(active);
1203      eSampleLoopLength.set_sensitive(active);      eSampleLoopLength.set_sensitive(active);
1204      eSampleLoopType.set_sensitive(active);      eSampleLoopType.set_sensitive(active);
1205      eSampleLoopInfinite.set_sensitive(active && dimregion && dimregion->pSample);      eSampleLoopInfinite.set_sensitive(active && dimregion && dimregion->pSample);
1206      eSampleLoopStart.set_ptr(0);      // sample loop shall never be longer than the actual sample size
1207      eSampleLoopLength.set_ptr(0);      loop_start_changed();
1208      eSampleLoopPlayCount.set_ptr(0);      loop_length_changed();
1209        eSampleLoopStart.set_value(
1210            dimregion->SampleLoops ? dimregion->pSampleLoops[0].LoopStart : 0);
1211        eSampleLoopLength.set_value(
1212            dimregion->SampleLoops ? dimregion->pSampleLoops[0].LoopLength : 0);
1213    
1214        eSampleLoopInfinite.set_value(
1215            dimregion->pSample && dimregion->pSample->LoopPlayCount == 0);
1216    
1217        loop_infinite_toggled();
1218        update_model--;
1219    }
1220    
1221    void DimRegionEdit::loop_start_changed() {
1222        if (dimregion && dimregion->SampleLoops) {
1223            eSampleLoopLength.set_upper(dimregion->pSample ?
1224                                        dimregion->pSample->SamplesTotal -
1225                                        dimregion->pSampleLoops[0].LoopStart : 0);
1226        }
1227    }
1228    
1229    void DimRegionEdit::loop_length_changed() {
1230      if (dimregion && dimregion->SampleLoops) {      if (dimregion && dimregion->SampleLoops) {
1231          eSampleLoopStart.set_ptr(&dimregion->pSampleLoops[0].LoopStart);          eSampleLoopStart.set_upper(dimregion->pSample ?
1232          eSampleLoopLength.set_ptr(&dimregion->pSampleLoops[0].LoopLength);                                     dimregion->pSample->SamplesTotal -
1233          eSampleLoopType.set_ptr(&dimregion->pSampleLoops[0].LoopType);                                     dimregion->pSampleLoops[0].LoopLength : 0);
         eSampleLoopInfinite.set_active(  
             dimregion->pSample && !dimregion->pSample->LoopPlayCount  
         );  
         // updated enabled state of loop play count widget  
         loop_infinite_toggled();  
   
         eSampleLoopPlayCount.set_ptr(  
             (dimregion->pSample) ? &dimregion->pSample->LoopPlayCount : 0  
         );  
   
         // sample loop shall never be longer than the actual sample size  
         eSampleLoopStart.set_upper(  
             (dimregion->pSample)  
                 ? dimregion->pSample->SamplesTotal -  
                   dimregion->pSampleLoops[0].LoopLength  
                 : 0  
         );  
         eSampleLoopLength.set_upper(  
             (dimregion->pSample)  
                 ? dimregion->pSample->SamplesTotal -  
                   dimregion->pSampleLoops[0].LoopStart  
                 : 0  
         );  
     } else { // no sample loop(s)  
         eSampleLoopType.set_ptr(0);  
         // updated enabled state of loop play count widget  
         loop_infinite_toggled();  
1234      }      }
1235  }  }
1236    
1237  void DimRegionEdit::loop_infinite_toggled() {  void DimRegionEdit::loop_infinite_toggled() {
1238      eSampleLoopPlayCount.set_sensitive(      eSampleLoopPlayCount.set_sensitive(
1239          dimregion && dimregion->pSample &&          dimregion && dimregion->pSample &&
1240          !eSampleLoopInfinite.get_active() &&          !eSampleLoopInfinite.get_value() &&
1241           eSampleLoopEnabled.get_active()          eSampleLoopEnabled.get_value()
1242      );      );
1243      if (eSampleLoopInfinite.get_active())      update_model++;
1244          eSampleLoopPlayCount.set_value(0);      eSampleLoopPlayCount.set_value(
1245      else if (!eSampleLoopPlayCount.get_value())          dimregion->pSample ? dimregion->pSample->LoopPlayCount : 0);
1246          eSampleLoopPlayCount.set_value(1);      update_model--;
1247  }  }
1248    
1249  bool DimRegionEdit::set_sample(gig::Sample* sample)  bool DimRegionEdit::set_sample(gig::Sample* sample, bool copy_sample_unity, bool copy_sample_tune, bool copy_sample_loop)
1250  {  {
1251      if (dimregion) {      if (dimregion) {
1252          //TODO: we should better move the code from MainWindow::on_sample_label_drop_drag_data_received() here          //TODO: we should better move the code from MainWindow::on_sample_label_drop_drag_data_received() here
# Line 879  bool DimRegionEdit::set_sample(gig::Samp Line 1254  bool DimRegionEdit::set_sample(gig::Samp
1254          // currently commented because we're sending a similar signal in MainWindow::on_sample_label_drop_drag_data_received()          // currently commented because we're sending a similar signal in MainWindow::on_sample_label_drop_drag_data_received()
1255          //dimreg_to_be_changed_signal.emit(dimregion);          //dimreg_to_be_changed_signal.emit(dimregion);
1256    
1257          gig::Sample* oldref = dimregion->pSample;          // make sure stereo samples always are the same in both
1258          dimregion->pSample = sample;          // dimregs in the samplechannel dimension
1259            int nbDimregs = 1;
1260            gig::DimensionRegion* d[2] = { dimregion, 0 };
1261            if (sample->Channels == 2) {
1262                gig::Region* region = dimregion->GetParent();
1263    
1264                int bitcount = 0;
1265                int stereo_bit = 0;
1266                for (int dim = 0 ; dim < region->Dimensions ; dim++) {
1267                    if (region->pDimensionDefinitions[dim].dimension == gig::dimension_samplechannel) {
1268                        stereo_bit = 1 << bitcount;
1269                        break;
1270                    }
1271                    bitcount += region->pDimensionDefinitions[dim].bits;
1272                }
1273    
1274          // copy sample information from Sample to DimensionRegion              if (stereo_bit) {
1275                    int dimregno;
1276                    for (dimregno = 0 ; dimregno < region->DimensionRegions ; dimregno++) {
1277                        if (region->pDimensionRegions[dimregno] == dimregion) {
1278                            break;
1279                        }
1280                    }
1281                    d[0] = region->pDimensionRegions[dimregno & ~stereo_bit];
1282                    d[1] = region->pDimensionRegions[dimregno | stereo_bit];
1283                    nbDimregs = 2;
1284                }
1285            }
1286    
1287          dimregion->UnityNote = sample->MIDIUnityNote;          gig::Sample* oldref = dimregion->pSample;
         dimregion->FineTune = sample->FineTune;  
1288    
1289          int loops = sample->Loops ? 1 : 0;          for (int i = 0 ; i < nbDimregs ; i++) {
1290          while (dimregion->SampleLoops > loops) {              d[i]->pSample = sample;
1291              dimregion->DeleteSampleLoop(&dimregion->pSampleLoops[0]);  
1292          }              // copy sample information from Sample to DimensionRegion
1293          while (dimregion->SampleLoops < sample->Loops) {              if (copy_sample_unity)
1294              DLS::sample_loop_t loop;                  d[i]->UnityNote = sample->MIDIUnityNote;
1295              dimregion->AddSampleLoop(&loop);              if (copy_sample_tune)
1296          }                  d[i]->FineTune = sample->FineTune;
1297          if (loops) {              if (copy_sample_loop) {
1298              dimregion->pSampleLoops[0].Size = sizeof(DLS::sample_loop_t);                  int loops = sample->Loops ? 1 : 0;
1299              dimregion->pSampleLoops[0].LoopType = sample->LoopType;                  while (d[i]->SampleLoops > loops) {
1300              dimregion->pSampleLoops[0].LoopStart = sample->LoopStart;                      d[i]->DeleteSampleLoop(&d[i]->pSampleLoops[0]);
1301              dimregion->pSampleLoops[0].LoopLength = sample->LoopEnd - sample->LoopStart + 1;                  }
1302                    while (d[i]->SampleLoops < sample->Loops) {
1303                        DLS::sample_loop_t loop;
1304                        d[i]->AddSampleLoop(&loop);
1305                    }
1306                    if (loops) {
1307                        d[i]->pSampleLoops[0].Size = sizeof(DLS::sample_loop_t);
1308                        d[i]->pSampleLoops[0].LoopType = sample->LoopType;
1309                        d[i]->pSampleLoops[0].LoopStart = sample->LoopStart;
1310                        d[i]->pSampleLoops[0].LoopLength = sample->LoopEnd - sample->LoopStart + 1;
1311                    }
1312                }
1313          }          }
1314    
1315          // update ui          // update ui
1316          wSample->set_text(dimregion->pSample->pInfo->Name);          update_model++;
1317          eUnityNote.set_ptr(&dimregion->UnityNote);          wSample->set_text(gig_to_utf8(dimregion->pSample->pInfo->Name));
1318          eFineTune.set_ptr(&dimregion->FineTune);          eUnityNote.set_value(dimregion->UnityNote);
1319          eSampleLoopEnabled.set_active(dimregion->SampleLoops);          eFineTune.set_value(dimregion->FineTune);
1320          updateLoopElements();          eSampleLoopEnabled.set_value(dimregion->SampleLoops);
1321            update_loop_elements();
1322            update_model--;
1323    
1324          sample_ref_changed_signal.emit(oldref, sample);          sample_ref_changed_signal.emit(oldref, sample);
1325          // currently commented because we're sending a similar signal in MainWindow::on_sample_label_drop_drag_data_received()          // currently commented because we're sending a similar signal in MainWindow::on_sample_label_drop_drag_data_received()
# Line 928  sigc::signal<void, gig::DimensionRegion* Line 1340  sigc::signal<void, gig::DimensionRegion*
1340  sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& DimRegionEdit::signal_sample_ref_changed() {  sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& DimRegionEdit::signal_sample_ref_changed() {
1341      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1342  }  }
1343    
1344    
1345    void DimRegionEdit::set_UnityNote(gig::DimensionRegion* d, uint8_t value)
1346    {
1347        d->UnityNote = value;
1348    }
1349    
1350    void DimRegionEdit::set_FineTune(gig::DimensionRegion* d, int16_t value)
1351    {
1352        d->FineTune = value;
1353    }
1354    
1355    void DimRegionEdit::set_Crossfade_in_start(gig::DimensionRegion* d,
1356                                               uint8_t value)
1357    {
1358        d->Crossfade.in_start = value;
1359        if (d->Crossfade.in_end < value) set_Crossfade_in_end(d, value);
1360    }
1361    
1362    void DimRegionEdit::set_Crossfade_in_end(gig::DimensionRegion* d,
1363                                             uint8_t value)
1364    {
1365        d->Crossfade.in_end = value;
1366        if (value < d->Crossfade.in_start) set_Crossfade_in_start(d, value);
1367        if (value > d->Crossfade.out_start) set_Crossfade_out_start(d, value);
1368    }
1369    
1370    void DimRegionEdit::set_Crossfade_out_start(gig::DimensionRegion* d,
1371                                                uint8_t value)
1372    {
1373        d->Crossfade.out_start = value;
1374        if (value < d->Crossfade.in_end) set_Crossfade_in_end(d, value);
1375        if (value > d->Crossfade.out_end) set_Crossfade_out_end(d, value);
1376    }
1377    
1378    void DimRegionEdit::set_Crossfade_out_end(gig::DimensionRegion* d,
1379                                              uint8_t value)
1380    {
1381        d->Crossfade.out_end = value;
1382        if (value < d->Crossfade.out_start) set_Crossfade_out_start(d, value);
1383    }
1384    
1385    void DimRegionEdit::set_Gain(gig::DimensionRegion* d, int32_t value)
1386    {
1387        d->SetGain(value);
1388    }
1389    
1390    void DimRegionEdit::set_LoopEnabled(gig::DimensionRegion* d, bool value)
1391    {
1392        if (value) {
1393            // create a new sample loop in case there is none yet
1394            if (!d->SampleLoops) {
1395                DLS::sample_loop_t loop;
1396                loop.LoopType = gig::loop_type_normal;
1397                // loop the whole sample by default
1398                loop.LoopStart  = 0;
1399                loop.LoopLength =
1400                    (d->pSample) ? d->pSample->SamplesTotal : 0;
1401                dimreg_to_be_changed_signal.emit(d);
1402                d->AddSampleLoop(&loop);
1403                dimreg_changed_signal.emit(d);
1404            }
1405        } else {
1406            if (d->SampleLoops) {
1407                dimreg_to_be_changed_signal.emit(d);
1408                // delete ALL existing sample loops
1409                while (d->SampleLoops) {
1410                    d->DeleteSampleLoop(&d->pSampleLoops[0]);
1411                }
1412                dimreg_changed_signal.emit(d);
1413            }
1414        }
1415    }
1416    
1417    void DimRegionEdit::set_LoopType(gig::DimensionRegion* d, uint32_t value)
1418    {
1419        if (d->SampleLoops) d->pSampleLoops[0].LoopType = value;
1420    }
1421    
1422    void DimRegionEdit::set_LoopStart(gig::DimensionRegion* d, uint32_t value)
1423    {
1424        if (d->SampleLoops) {
1425            d->pSampleLoops[0].LoopStart =
1426                d->pSample ?
1427                std::min(value, uint32_t(d->pSample->SamplesTotal -
1428                                         d->pSampleLoops[0].LoopLength)) :
1429                0;
1430        }
1431    }
1432    
1433    void DimRegionEdit::set_LoopLength(gig::DimensionRegion* d, uint32_t value)
1434    {
1435        if (d->SampleLoops) {
1436            d->pSampleLoops[0].LoopLength =
1437                d->pSample ?
1438                std::min(value, uint32_t(d->pSample->SamplesTotal -
1439                                         d->pSampleLoops[0].LoopStart)) :
1440                0;
1441        }
1442    }
1443    
1444    void DimRegionEdit::set_LoopInfinite(gig::DimensionRegion* d, bool value)
1445    {
1446        if (d->pSample) {
1447            if (value) d->pSample->LoopPlayCount = 0;
1448            else if (d->pSample->LoopPlayCount == 0) d->pSample->LoopPlayCount = 1;
1449        }
1450    }
1451    
1452    void DimRegionEdit::set_LoopPlayCount(gig::DimensionRegion* d, uint32_t value)
1453    {
1454        if (d->pSample) d->pSample->LoopPlayCount = value;
1455    }

Legend:
Removed from v.1339  
changed lines
  Added in v.2690

  ViewVC Help
Powered by ViewVC