summaryrefslogtreecommitdiffstats
path: root/src/dlgcoverartfullsize.h
blob: c7f86bf0e9676310105cf5397f47dae064378d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef DLGCOVERARTFULLSIZE_H
#define DLGCOVERARTFULLSIZE_H

#include <QDialog>

#include "ui_dlgcoverartfullsize.h"
#include "util/singleton.h"

class DlgCoverArtFullSize
        : public QDialog,
          public Ui::DlgCoverArtFullSize,
          public Singleton<DlgCoverArtFullSize>
{
    Q_OBJECT
  public:
    void init();

  protected:
    DlgCoverArtFullSize();
    virtual ~DlgCoverArtFullSize();
    friend class Singleton<DlgCoverArtFullSize>;

  private slots:
    void slotPixmapFound(int trackId, QPixmap pixmap);

  private:
    QPixmap m_cover;
};

#endif // DLGCOVERARTFULLSIZE_H