Files
lmms/include/automation_pattern.h
2006-07-22 03:24:43 +00:00

127 lines
2.8 KiB
C++

/*
* automation_pattern.h - declaration of class automationPattern, which contains
* all information about an automation pattern
*
* Copyright (c) 2006 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., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
#ifndef _AUTOMATION_PATTERN_H
#define _AUTOMATION_PATTERN_H
#include "qt3support.h"
#include "track.h"
#include "level_object.h"
class automationPattern : public QObject, public journallingObject
{
Q_OBJECT
public:
typedef QMap<midiTime, int> timeMap;
automationPattern( track * _track, levelObject * _object );
automationPattern( engine * _engine, levelObject * _object );
automationPattern( const automationPattern & _pat_to_copy );
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 track * getTrack( void )
{
return( m_track );
}
inline levelObject * object( void )
{
return( m_object );
}
void processMidiTime( const midiTime & _time );
inline bool updateFirst( void )
{
return( m_update_first );
}
inline void setUpdateFirst( bool _update )
{
m_update_first = _update;
}
void forgetTrack()
{
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;
void init( void );
} ;
#endif