123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- /*
- * SampleTrack.h - class SampleTrack, a track which provides arrangement of samples
- *
- * Copyright (c) 2005-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
- *
- * This file is part of LMMS - https://lmms.io
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program (see COPYING); if not, write to the
- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301 USA.
- *
- */
- #ifndef SAMPLE_TRACK_H
- #define SAMPLE_TRACK_H
- #include <QDialog>
- #include <QLayout>
- #include "AudioPort.h"
- #include "FxMixer.h"
- #include "FxLineLcdSpinBox.h"
- #include "Track.h"
- class EffectRackView;
- class Knob;
- class SampleBuffer;
- class SampleTrackWindow;
- class TrackLabelButton;
- class QLineEdit;
- class SampleTCO : public TrackContentObject
- {
- Q_OBJECT
- mapPropertyFromModel(bool,isRecord,setRecord,m_recordModel);
- public:
- SampleTCO( Track * _track );
- virtual ~SampleTCO();
- void changeLength( const MidiTime & _length ) override;
- const QString & sampleFile() const;
- void saveSettings( QDomDocument & _doc, QDomElement & _parent ) override;
- void loadSettings( const QDomElement & _this ) override;
- inline QString nodeName() const override
- {
- return "sampletco";
- }
- SampleBuffer* sampleBuffer()
- {
- return m_sampleBuffer;
- }
- MidiTime sampleLength() const;
- void setSampleStartFrame( f_cnt_t startFrame );
- void setSamplePlayLength( f_cnt_t length );
- TrackContentObjectView * createView( TrackView * _tv ) override;
- bool isPlaying() const;
- void setIsPlaying(bool isPlaying);
- public slots:
- void setSampleBuffer( SampleBuffer* sb );
- void setSampleFile( const QString & _sf );
- void updateLength();
- void toggleRecord();
- void playbackPositionChanged();
- void updateTrackTcos();
- private:
- SampleBuffer* m_sampleBuffer;
- BoolModel m_recordModel;
- bool m_isPlaying;
- friend class SampleTCOView;
- signals:
- void sampleChanged();
- } ;
- class SampleTCOView : public TrackContentObjectView
- {
- Q_OBJECT
- public:
- SampleTCOView( SampleTCO * _tco, TrackView * _tv );
- virtual ~SampleTCOView() = default;
- public slots:
- void updateSample();
- protected:
- void contextMenuEvent( QContextMenuEvent * _cme ) override;
- void mousePressEvent( QMouseEvent * _me ) override;
- void mouseReleaseEvent( QMouseEvent * _me ) override;
- void dragEnterEvent( QDragEnterEvent * _dee ) override;
- void dropEvent( QDropEvent * _de ) override;
- void mouseDoubleClickEvent( QMouseEvent * ) override;
- void paintEvent( QPaintEvent * ) override;
- private:
- SampleTCO * m_tco;
- QPixmap m_paintPixmap;
- } ;
- class SampleTrack : public Track
- {
- Q_OBJECT
- public:
- SampleTrack( TrackContainer* tc );
- virtual ~SampleTrack();
- virtual bool play( const MidiTime & _start, const fpp_t _frames,
- const f_cnt_t _frame_base, int _tco_num = -1 ) override;
- TrackView * createView( TrackContainerView* tcv ) override;
- TrackContentObject * createTCO( const MidiTime & _pos ) override;
- virtual void saveTrackSpecificSettings( QDomDocument & _doc,
- QDomElement & _parent ) override;
- void loadTrackSpecificSettings( const QDomElement & _this ) override;
- inline IntModel * effectChannelModel()
- {
- return &m_effectChannelModel;
- }
- inline AudioPort * audioPort()
- {
- return &m_audioPort;
- }
- QString nodeName() const override
- {
- return "sampletrack";
- }
- public slots:
- void updateTcos();
- void setPlayingTcos( bool isPlaying );
- void updateEffectChannel();
- private:
- FloatModel m_volumeModel;
- FloatModel m_panningModel;
- IntModel m_effectChannelModel;
- AudioPort m_audioPort;
- friend class SampleTrackView;
- friend class SampleTrackWindow;
- } ;
- class SampleTrackView : public TrackView
- {
- Q_OBJECT
- public:
- SampleTrackView( SampleTrack* Track, TrackContainerView* tcv );
- virtual ~SampleTrackView();
- SampleTrackWindow * getSampleTrackWindow()
- {
- return m_window;
- }
- SampleTrack * model()
- {
- return castModel<SampleTrack>();
- }
- const SampleTrack * model() const
- {
- return castModel<SampleTrack>();
- }
- QMenu * createFxMenu( QString title, QString newFxLabel ) override;
- public slots:
- void showEffects();
- protected:
- void modelChanged() override;
- QString nodeName() const override
- {
- return "SampleTrackView";
- }
- void dragEnterEvent(QDragEnterEvent *dee) override;
- void dropEvent(QDropEvent *de) override;
- private slots:
- void assignFxLine( int channelIndex );
- void createFxLine();
- private:
- SampleTrackWindow * m_window;
- Knob * m_volumeKnob;
- Knob * m_panningKnob;
- TrackLabelButton * m_tlb;
- friend class SampleTrackWindow;
- } ;
- class SampleTrackWindow : public QWidget, public ModelView, public SerializingObjectHook
- {
- Q_OBJECT
- public:
- SampleTrackWindow(SampleTrackView * tv);
- virtual ~SampleTrackWindow();
- SampleTrack * model()
- {
- return castModel<SampleTrack>();
- }
- const SampleTrack * model() const
- {
- return castModel<SampleTrack>();
- }
- void setSampleTrackView(SampleTrackView * tv);
- SampleTrackView *sampleTrackView()
- {
- return m_stv;
- }
- public slots:
- void textChanged(const QString & new_name);
- void toggleVisibility(bool on);
- void updateName();
- protected:
- // capture close-events for toggling sample-track-button
- void closeEvent(QCloseEvent * ce) override;
- void saveSettings(QDomDocument & doc, QDomElement & element) override;
- void loadSettings(const QDomElement & element) override;
- private:
- void modelChanged() override;
- SampleTrack * m_track;
- SampleTrackView * m_stv;
- // widgets on the top of an sample-track-window
- QLineEdit * m_nameLineEdit;
- Knob * m_volumeKnob;
- Knob * m_panningKnob;
- FxLineLcdSpinBox * m_effectChannelNumber;
- EffectRackView * m_effectRack;
- } ;
- #endif
|