rename tracks directly on TrackLableButton in a QLineEdit

This commit is contained in:
Steffen Baranowsky
2016-07-14 15:57:56 +02:00
parent 46c2aa32ea
commit 06726f6204
2 changed files with 43 additions and 21 deletions

View File

@@ -27,6 +27,7 @@
#define TRACK_LABEL_BUTTON_H
#include <QToolButton>
#include <QLineEdit>
class TrackView;
@@ -42,6 +43,7 @@ public:
public slots:
void rename();
void renameFinished();
protected:
@@ -55,6 +57,7 @@ protected:
private:
TrackView * m_trackView;
QString m_iconName;
QLineEdit * m_renameLineEdit;
} ;