mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-24 06:18:10 -05:00
Fixed the rendering of the tact numbers in the timeline widget. Before this fix they were not readable because they were too big. Interestingly in this case the fix is to use a font size in pixels (half the height of the widget). The numbers are now also rendered a bit darker than the lines. Also removed the pixmap for the timeline from the code and from the filesystem. It was only used to determine the fixed height of the widget but not rendered. Therefore it was removed and the height is now directly set to 18 pixels which was the height of the pixmap.
202 lines
3.9 KiB
C++
202 lines
3.9 KiB
C++
/*
|
|
* TimeLineWidget.h - class timeLine, representing a time-line with position marker
|
|
*
|
|
* Copyright (c) 2004-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of LMMS - http://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 TIMELINE_H
|
|
#define TIMELINE_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "Song.h"
|
|
|
|
|
|
class QPixmap;
|
|
class QToolBar;
|
|
class NStateButton;
|
|
class TextFloat;
|
|
class SongEditor;
|
|
|
|
|
|
class TimeLineWidget : public QWidget, public JournallingObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum AutoScrollStates
|
|
{
|
|
AutoScrollEnabled,
|
|
AutoScrollDisabled
|
|
} ;
|
|
|
|
enum LoopPointStates
|
|
{
|
|
LoopPointsDisabled,
|
|
LoopPointsEnabled
|
|
} ;
|
|
|
|
enum BehaviourAtStopStates
|
|
{
|
|
BackToZero,
|
|
BackToStart,
|
|
KeepStopPosition
|
|
} ;
|
|
|
|
|
|
TimeLineWidget( int xoff, int yoff, float ppt, Song::PlayPos & pos,
|
|
const MidiTime & begin, QWidget * parent );
|
|
virtual ~TimeLineWidget();
|
|
|
|
inline Song::PlayPos & pos()
|
|
{
|
|
return( m_pos );
|
|
}
|
|
|
|
AutoScrollStates autoScroll() const
|
|
{
|
|
return m_autoScroll;
|
|
}
|
|
|
|
BehaviourAtStopStates behaviourAtStop() const
|
|
{
|
|
return m_behaviourAtStop;
|
|
}
|
|
|
|
bool loopPointsEnabled() const
|
|
{
|
|
return m_loopPoints == LoopPointsEnabled;
|
|
}
|
|
|
|
inline const MidiTime & loopBegin() const
|
|
{
|
|
return ( m_loopPos[0] < m_loopPos[1] ) ?
|
|
m_loopPos[0] : m_loopPos[1];
|
|
}
|
|
|
|
inline const MidiTime & loopEnd() const
|
|
{
|
|
return ( m_loopPos[0] > m_loopPos[1] ) ?
|
|
m_loopPos[0] : m_loopPos[1];
|
|
}
|
|
|
|
inline void savePos( const MidiTime & _pos )
|
|
{
|
|
m_savedPos = _pos;
|
|
}
|
|
inline const MidiTime & savedPos() const
|
|
{
|
|
return m_savedPos;
|
|
}
|
|
|
|
inline void setPixelsPerTact( float _ppt )
|
|
{
|
|
m_ppt = _ppt;
|
|
update();
|
|
}
|
|
|
|
void addToolButtons(QToolBar* _tool_bar );
|
|
|
|
|
|
virtual void saveSettings( QDomDocument & _doc, QDomElement & _parent );
|
|
virtual void loadSettings( const QDomElement & _this );
|
|
inline virtual QString nodeName() const
|
|
{
|
|
return "timeline";
|
|
}
|
|
|
|
inline int markerX( const MidiTime & _t ) const
|
|
{
|
|
return m_xOffset + static_cast<int>( ( _t - m_begin ) *
|
|
m_ppt / MidiTime::ticksPerTact() );
|
|
}
|
|
|
|
signals:
|
|
|
|
void regionSelectedFromPixels( int, int );
|
|
void selectionFinished();
|
|
|
|
|
|
public slots:
|
|
void updatePosition( const MidiTime & );
|
|
void updatePosition()
|
|
{
|
|
updatePosition( MidiTime() );
|
|
}
|
|
void toggleAutoScroll( int _n );
|
|
void toggleLoopPoints( int _n );
|
|
void toggleBehaviourAtStop( int _n );
|
|
|
|
|
|
protected:
|
|
virtual void paintEvent( QPaintEvent * _pe );
|
|
virtual void mousePressEvent( QMouseEvent * _me );
|
|
virtual void mouseMoveEvent( QMouseEvent * _me );
|
|
virtual void mouseReleaseEvent( QMouseEvent * _me );
|
|
|
|
|
|
private:
|
|
static QPixmap * s_posMarkerPixmap;
|
|
static QPixmap * s_loopPointBeginPixmap;
|
|
static QPixmap * s_loopPointEndPixmap;
|
|
static QPixmap * s_loopPointDisabledPixmap;
|
|
|
|
AutoScrollStates m_autoScroll;
|
|
LoopPointStates m_loopPoints;
|
|
BehaviourAtStopStates m_behaviourAtStop;
|
|
|
|
bool m_changedPosition;
|
|
|
|
int m_xOffset;
|
|
int m_posMarkerX;
|
|
float m_ppt;
|
|
Song::PlayPos & m_pos;
|
|
const MidiTime & m_begin;
|
|
MidiTime m_loopPos[2];
|
|
|
|
MidiTime m_savedPos;
|
|
|
|
|
|
TextFloat * m_hint;
|
|
int m_initalXSelect;
|
|
|
|
|
|
enum actions
|
|
{
|
|
NoAction,
|
|
MovePositionMarker,
|
|
MoveLoopBegin,
|
|
MoveLoopEnd,
|
|
SelectSongTCO,
|
|
} m_action;
|
|
|
|
int m_moveXOff;
|
|
|
|
|
|
signals:
|
|
void positionChanged( const MidiTime & _t );
|
|
void loopPointStateLoaded( int _n );
|
|
|
|
} ;
|
|
|
|
|
|
#endif
|