mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-25 06:48:55 -05:00
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@547 0778d3d1-df1d-0410-868b-ea421aaaa00d
137 lines
2.9 KiB
C++
137 lines
2.9 KiB
C++
/*
|
|
* automation_pattern.h - declaration of class automationPattern, which contains
|
|
* all information about an automation pattern
|
|
*
|
|
* Copyright (c) 2006-2007 Javier Serrano Polo <jasp00/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
|
*
|
|
* 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_PATTERN_H
|
|
#define _AUTOMATION_PATTERN_H
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include "journalling_object.h"
|
|
|
|
|
|
class levelObject;
|
|
class midiTime;
|
|
class track;
|
|
|
|
|
|
|
|
|
|
class automationPattern : public QObject, public journallingObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
typedef QMap<int, int> timeMap;
|
|
|
|
automationPattern( track * _track, levelObject * _object );
|
|
automationPattern( const automationPattern & _pat_to_copy );
|
|
automationPattern( const automationPattern & _pat_to_copy,
|
|
levelObject * _object );
|
|
virtual ~automationPattern();
|
|
|
|
|
|
virtual midiTime length( void ) const;
|
|
|
|
midiTime FASTCALL putValue( const midiTime & _time, const int _value,
|
|
const bool _quant_pos = TRUE );
|
|
|
|
void FASTCALL removeValue( const midiTime & _time );
|
|
|
|
inline timeMap & getTimeMap( void )
|
|
{
|
|
return( m_time_map );
|
|
}
|
|
|
|
int FASTCALL valueAt( const midiTime & _time );
|
|
|
|
const QString name( void );
|
|
|
|
// settings-management
|
|
virtual void FASTCALL saveSettings( QDomDocument & _doc,
|
|
QDomElement & _parent );
|
|
virtual void FASTCALL loadSettings( const QDomElement & _this );
|
|
|
|
static inline const QString classNodeName( void )
|
|
{
|
|
return( "automation-pattern" );
|
|
}
|
|
|
|
inline virtual QString nodeName( void ) const
|
|
{
|
|
return( classNodeName() );
|
|
}
|
|
|
|
inline const track * getTrack( void ) const
|
|
{
|
|
return( m_track );
|
|
}
|
|
|
|
inline const levelObject * object( void ) const
|
|
{
|
|
return( m_object );
|
|
}
|
|
|
|
inline levelObject * object( void )
|
|
{
|
|
return( m_object );
|
|
}
|
|
|
|
void processMidiTime( const midiTime & _time );
|
|
|
|
inline bool updateFirst( void ) const
|
|
{
|
|
return( m_update_first );
|
|
}
|
|
|
|
inline void setUpdateFirst( bool _update )
|
|
{
|
|
m_update_first = _update;
|
|
}
|
|
|
|
void forgetTrack( void )
|
|
{
|
|
m_track = NULL;
|
|
}
|
|
|
|
|
|
public slots:
|
|
void openInAutomationEditor( void );
|
|
void clear( void );
|
|
|
|
|
|
private:
|
|
track * m_track;
|
|
levelObject * m_object;
|
|
timeMap m_time_map;
|
|
bool m_update_first;
|
|
bool m_dynamic;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
#endif
|