mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 15:45:59 +01:00
2020-02-02 Fred Gleason <fredg@paravelsystems.com>
* Added a 'STATIONS.BROWSER_PATH' field to the database. * Incremented the database version to 314. * Added a 'Web Browser' control to the 'Edit Host' dialog in rdadmin(1). * Added a MusicBrainz record lookup button to the full disc ripper in rdlibrary(1). * Added a MusicBrainz record lookup button to the disc track ripper in rdlibrary(1).
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
|
||||
#include <qcombobox.h>
|
||||
#include <qlabel.h>
|
||||
#include <qpixmap.h>
|
||||
#include <qpushbutton.h>
|
||||
#include <qstringlist.h>
|
||||
#include <qtcpsocket.h>
|
||||
@@ -40,7 +41,9 @@ class RDDiscLookup : public RDDialog
|
||||
enum Result {ExactMatch=0,NoMatch=1,LookupError=2};
|
||||
RDDiscLookup(const QString &caption,FILE *profile_msgs,QWidget *parent=0);
|
||||
QSize sizeHint() const;
|
||||
virtual QString sourceName() const=0;
|
||||
virtual QString sourceName() const;
|
||||
virtual QPixmap sourceLogo() const;
|
||||
virtual QString sourceUrl() const;
|
||||
void setCddbRecord(RDDiscRecord *);
|
||||
void lookup();
|
||||
static bool isrcIsValid(const QString &isrc);
|
||||
@@ -58,7 +61,7 @@ class RDDiscLookup : public RDDialog
|
||||
protected:
|
||||
virtual void lookupRecord()=0;
|
||||
void resizeEvent(QResizeEvent *e);
|
||||
RDDiscRecord *discRecord();
|
||||
RDDiscRecord *discRecord() const;
|
||||
void profile(const QString &msg);
|
||||
QComboBox *titlesBox();
|
||||
QStringList *titlesKey();
|
||||
|
||||
Reference in New Issue
Block a user