add mp3 and ogg torrent url info to JamendoAlbum
[amarok.git] / src / trackpickerdialog.h
blobac949fa463833a33eaed619e2ad9e2a84f7f0f99
1 /***************************************************************************
2 begin : Sat Sep 6 2003
3 copyright : (C) 2003 - 2004 by Scott Wheeler
4 email : wheeler@kde.org
5 ***************************************************************************/
7 /***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
16 #ifndef TRACKPICKERDIALOG_H
17 #define TRACKPICKERDIALOG_H
19 #include "config-amarok.h"
21 #if HAVE_TUNEPIMP
23 #include <KDialog.h>
25 #include "ktrm.h"
27 class TrackPickerDialogBase;
30 class TrackPickerDialog : public KDialog
32 Q_OBJECT
34 signals:
35 void sigSelectionMade( KTRMResult );
37 public:
38 TrackPickerDialog(const QString &name, const KTRMResultList &results, QWidget *parent = 0);
40 KTRMResult result() const;
42 private slots:
43 void accept();
45 private:
46 TrackPickerDialogBase *m_base;
49 #endif // HAVE_TUNEPIMP
51 #endif