~kulthauskante/nsynth/devel

« back to all changes in this revision

Viewing changes to Synth/SynthManager/SynthManager.h

  • Committer: Karsten Krispin
  • Date: 2011-04-26 15:34:14 UTC
  • Revision ID: karsten@nonlimited.org-20110426153414-c4bsiry51d0s099n
- added SampleWidget (specialized version for SampleTangible )
- added DurationTab (which lets you select a duration in fractions to the main beat )
- Sequencers Step Duration is now selectable by DurationTab
- Sequencer now heads to the right sink
- replaced QList<qreal> by Delay in Tangible/Trigger History-Buffer (List were causing segfaults sometimes)
- Distorion now does "real" distorion
- Cleaned up TabContainerWidget (some polishing in display as well)

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        
45
45
        private:
46
46
                
 
47
                static SynthManager * _self;
47
48
                FlowManager _flowManager;
48
49
 
49
50
                GLuint _sponsorImage;
74
75
                
75
76
                SynthManager();
76
77
                ~SynthManager();
 
78
                static SynthManager & instance() { return *_self; }
77
79
                
78
80
                bool Start();
79
81
 
89
91
 
90
92
 
91
93
                        void postprocessHop(quint64 currentHop);
 
94
 
 
95
 
 
96
                static void paintText(qreal x, qreal y, const QString & text);
92
97
};
93
98
 
94
99
#endif