diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-09-03 05:26:51 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-09-03 05:26:51 +0000 |
| commit | d890b302f1ee3059a188c3e5e470c3ccd6f38b53 (patch) | |
| tree | 967c749816f0baac446e59d024bc7bf67981f9bc /src/qmmpui/detailsdialog.h | |
| parent | 193f06b98d83c83c17e9729476b8fcadead2a8a1 (diff) | |
| download | qmmp-d890b302f1ee3059a188c3e5e470c3ccd6f38b53.tar.gz qmmp-d890b302f1ee3059a188c3e5e470c3ccd6f38b53.tar.bz2 qmmp-d890b302f1ee3059a188c3e5e470c3ccd6f38b53.zip | |
improved details dialog (Closes issue 380)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3679 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/detailsdialog.h')
| -rw-r--r-- | src/qmmpui/detailsdialog.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/qmmpui/detailsdialog.h b/src/qmmpui/detailsdialog.h index 9d439fe49..53bc3d657 100644 --- a/src/qmmpui/detailsdialog.h +++ b/src/qmmpui/detailsdialog.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2012 by Ilya Kotov * + * Copyright (C) 2009-2013 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -55,14 +55,19 @@ public: private slots: void on_buttonBox_clicked(QAbstractButton *button); void on_directoryButton_clicked(); + void on_prevButton_clicked(); + void on_nextButton_clicked(); private: Ui::DetailsDialog *m_ui; + void updatePage(); void printInfo(); - QString m_path; QString formatRow(const QString key, const QString value); + QString m_path; MetaDataModel *m_metaDataModel; - PlayListTrack *m_item; + PlayListTrack *m_track; + QList<PlayListTrack *> m_tracks; + int m_page; }; #endif |
