Skip to content

Commit

Permalink
Split Track.cpp and Track.h (LMMS#5806) (Fixes LMMS#5592)
Browse files Browse the repository at this point in the history
  • Loading branch information
M374LX authored and devnexen committed Apr 10, 2021
1 parent 2d00858 commit 68016ec
Show file tree
Hide file tree
Showing 39 changed files with 3,831 additions and 3,464 deletions.
2 changes: 1 addition & 1 deletion include/AutomationPattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <QtCore/QMap>
#include <QtCore/QPointer>

#include "Track.h"
#include "TrackContentObject.h"


class AutomationTrack;
Expand Down
2 changes: 1 addition & 1 deletion include/AutomationPatternView.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "AutomationPattern.h"
#include "Song.h"
#include "SongEditor.h"
#include "Track.h"
#include "TrackContentObjectView.h"


class AutomationPatternView : public TrackContentObjectView
Expand Down
1 change: 1 addition & 0 deletions include/AutomationTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#define AUTOMATION_TRACK_H

#include "Track.h"
#include "TrackView.h"


class AutomationTrack : public Track
Expand Down
1 change: 1 addition & 0 deletions include/BBEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#ifndef BB_EDITOR_H
#define BB_EDITOR_H


#include "Editor.h"
#include "TrackContainerView.h"

Expand Down
2 changes: 2 additions & 0 deletions include/BBTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
#include <QtCore/QMap>
#include <QStaticText>

#include "TrackContentObjectView.h"
#include "Track.h"
#include "TrackView.h"

class TrackLabelButton;
class TrackContainer;
Expand Down
1 change: 1 addition & 0 deletions include/InstrumentTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "Pitch.h"
#include "Plugin.h"
#include "Track.h"
#include "TrackView.h"



Expand Down
8 changes: 1 addition & 7 deletions include/Pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,10 @@


#include "Note.h"
#include "Track.h"
#include "TrackContentObjectView.h"


class QAction;
class QProgressBar;
class QPushButton;

class InstrumentTrack;
class SampleBuffer;



class LMMS_EXPORT Pattern : public TrackContentObject
Expand Down
1 change: 1 addition & 0 deletions include/PresetPreviewPlayHandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "NotePlayHandle.h"


class DataFile;
class InstrumentTrack;
class PreviewTrackContainer;

Expand Down
2 changes: 2 additions & 0 deletions include/SampleTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
#include "FxMixer.h"
#include "FxLineLcdSpinBox.h"
#include "Track.h"
#include "TrackContentObjectView.h"
#include "TrackView.h"

class EffectRackView;
class Knob;
Expand Down
2 changes: 2 additions & 0 deletions include/Song.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

#include <QtCore/QSharedMemory>
#include <QtCore/QVector>
#include <QHash>
#include <QString>

#include "TrackContainer.h"
#include "Controller.h"
Expand Down
Loading

0 comments on commit 68016ec

Please sign in to comment.