You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
939 B
48 lines
939 B
#ifndef CDDBDLG_H
|
|
#define CDDBDLG_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include "libkcddb/cdinfo.h"
|
|
#include "libkcddb/cddb.h"
|
|
#include "libkcddb/client.h"
|
|
|
|
class CDInfoDialogBase;
|
|
|
|
class CDDBDlg : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
CDDBDlg(TQWidget* parent, const char* name = 0);
|
|
~CDDBDlg();
|
|
|
|
void setData(
|
|
const KCDDB::CDInfo &_cddbInfo,
|
|
const KCDDB::TrackOffsetList &_trackStartFrames,
|
|
const TQStringList &_playlist);
|
|
|
|
private slots:
|
|
void save();
|
|
void upload();
|
|
void submitFinished(CDDB::Result);
|
|
|
|
signals:
|
|
void cddbQuery();
|
|
void newCDInfoStored(KCDDB::CDInfo);
|
|
void play(int i);
|
|
|
|
private:
|
|
bool validInfo();
|
|
void updateFromDialog();
|
|
TQString framesTime(unsigned frames);
|
|
|
|
CDInfoDialogBase *m_dlgBase;
|
|
KCDDB::CDInfo cddbInfo;
|
|
KCDDB::TrackOffsetList trackStartFrames;
|
|
TQStringList playlist;
|
|
KCDDB::Client *cddbClient;
|
|
};
|
|
#endif // CDDBDLG_H
|