Rename timeLine to Timeline
This commit is contained in:
@@ -43,7 +43,7 @@ class QScrollBar;
|
||||
|
||||
class comboBox;
|
||||
class NotePlayHandle;
|
||||
class timeLine;
|
||||
class Timeline;
|
||||
class toolButton;
|
||||
|
||||
|
||||
@@ -258,7 +258,7 @@ private:
|
||||
editModes m_editMode;
|
||||
|
||||
|
||||
timeLine * m_timeLine;
|
||||
Timeline * m_timeLine;
|
||||
bool m_scrollBack;
|
||||
|
||||
void drawCross( QPainter & _p );
|
||||
|
||||
@@ -47,7 +47,7 @@ class QSignalMapper;
|
||||
class comboBox;
|
||||
class NotePlayHandle;
|
||||
class Pattern;
|
||||
class timeLine;
|
||||
class Timeline;
|
||||
class toolButton;
|
||||
|
||||
class PianoRoll : public QWidget, public SerializingObject
|
||||
@@ -350,7 +350,7 @@ private:
|
||||
bool m_mouseDownLeft; //true if left click is being held down
|
||||
bool m_mouseDownRight; //true if right click is being held down
|
||||
|
||||
timeLine * m_timeLine;
|
||||
Timeline * m_timeLine;
|
||||
bool m_scrollBack;
|
||||
|
||||
void copy_to_clipboard( const NoteVector & _notes ) const;
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
class AutomationTrack;
|
||||
class Pattern;
|
||||
class timeLine;
|
||||
class Timeline;
|
||||
|
||||
|
||||
const bpm_t MinTempo = 10;
|
||||
@@ -83,7 +83,7 @@ public:
|
||||
{
|
||||
return m_currentFrame;
|
||||
}
|
||||
timeLine * m_timeLine;
|
||||
Timeline * m_timeLine;
|
||||
bool m_timeLineUpdate;
|
||||
|
||||
private:
|
||||
|
||||
@@ -38,7 +38,7 @@ class LcdSpinBox;
|
||||
class MeterDialog;
|
||||
class Song;
|
||||
class textFloat;
|
||||
class timeLine;
|
||||
class Timeline;
|
||||
class toolButton;
|
||||
|
||||
class positionLine : public QWidget
|
||||
@@ -110,7 +110,7 @@ private:
|
||||
toolButton * m_stopButton;
|
||||
LcdSpinBox * m_tempoSpinBox;
|
||||
|
||||
timeLine * m_timeLine;
|
||||
Timeline * m_timeLine;
|
||||
|
||||
MeterDialog * m_timeSigDisplay;
|
||||
automatableSlider * m_masterVolumeSlider;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* timeline.h - class timeLine, representing a time-line with position marker
|
||||
* Timeline.h - class timeLine, representing a time-line with position marker
|
||||
*
|
||||
* Copyright (c) 2004-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
||||
*
|
||||
@@ -36,7 +36,7 @@ class nStateButton;
|
||||
class textFloat;
|
||||
|
||||
|
||||
class timeLine : public QWidget, public JournallingObject
|
||||
class Timeline : public QWidget, public JournallingObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
@@ -60,9 +60,9 @@ public:
|
||||
} ;
|
||||
|
||||
|
||||
timeLine( int _xoff, int _yoff, float _ppt, Song::playPos & _pos,
|
||||
Timeline( int _xoff, int _yoff, float _ppt, Song::playPos & _pos,
|
||||
const MidiTime & _begin, QWidget * _parent );
|
||||
virtual ~timeLine();
|
||||
virtual ~Timeline();
|
||||
|
||||
inline Song::playPos & pos()
|
||||
{
|
||||
Reference in New Issue
Block a user