-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/bbAssignAllToFX
Fixes conflicts from file splitting.
- Loading branch information
Showing
77 changed files
with
4,007 additions
and
2,715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* AutomationTrackView.h - declaration of class AutomationTrackView | ||
* | ||
* Copyright (c) 2008-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net> | ||
* Copyright (c) 2006-2008 Javier Serrano Polo <jasp00/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 AUTOMATION_TRACK_VIEW_H | ||
#define AUTOMATION_TRACK_VIEW_H | ||
|
||
#include "AutomationTrack.h" | ||
#include "TrackView.h" | ||
|
||
|
||
class AutomationTrackView : public TrackView | ||
{ | ||
public: | ||
AutomationTrackView( AutomationTrack* at, TrackContainerView* tcv ); | ||
virtual ~AutomationTrackView() = default; | ||
|
||
void dragEnterEvent( QDragEnterEvent * _dee ) override; | ||
void dropEvent( QDropEvent * _de ) override; | ||
} ; | ||
|
||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* BBTCOView.h | ||
* | ||
* Copyright (c) 2004-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 BB_TCO_VIEW_H | ||
#define BB_TCO_VIEW_H | ||
|
||
#include "BBTCO.h" | ||
|
||
#include <QStaticText> | ||
|
||
|
||
class BBTCOView : public TrackContentObjectView | ||
{ | ||
Q_OBJECT | ||
public: | ||
BBTCOView( TrackContentObject * _tco, TrackView * _tv ); | ||
virtual ~BBTCOView() = default; | ||
|
||
|
||
public slots: | ||
void update() override; | ||
|
||
protected slots: | ||
void openInBBEditor(); | ||
void resetName(); | ||
void changeName(); | ||
|
||
|
||
protected: | ||
void paintEvent( QPaintEvent * pe ) override; | ||
void mouseDoubleClickEvent( QMouseEvent * _me ) override; | ||
void constructContextMenu( QMenu * ) override; | ||
|
||
|
||
private: | ||
BBTCO * m_bbTCO; | ||
QPixmap m_paintPixmap; | ||
|
||
QStaticText m_staticTextName; | ||
} ; | ||
|
||
|
||
|
||
#endif |
Oops, something went wrong.