moved peridic update-timer from songEditor to mainWindow

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1567 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-09-07 12:08:10 +00:00
parent dc895f4850
commit ae8ed9e183
4 changed files with 26 additions and 35 deletions

View File

@@ -27,11 +27,8 @@
#ifndef _SONG_EDITOR_H
#define _SONG_EDITOR_H
#include <QtCore/QBasicTimer>
#include "track_container_view.h"
class QLabel;
class QScrollBar;
@@ -53,10 +50,6 @@ public:
virtual ~songEditor();
signals:
void periodicUpdate( void );
public slots:
void scrolled( int _new_pos );
@@ -86,18 +79,13 @@ private slots:
private:
virtual void keyPressEvent( QKeyEvent * _ke );
virtual void paintEvent( QPaintEvent * _pe );
virtual void timerEvent( QTimerEvent * _ev );
virtual void wheelEvent( QWheelEvent * _we );
virtual bool allowRubberband( void ) const;
song * m_s;
QBasicTimer m_updateTimer;
QScrollBar * m_leftRightScroll;
QWidget * m_toolBar;