Clementine-audio-player-Mac.../src/widgets/nowplayingwidget.h

164 lines
4.0 KiB
C
Raw Normal View History

2010-06-17 00:00:39 +02:00
/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
2010-06-17 00:00:39 +02:00
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NOWPLAYINGWIDGET_H
#define NOWPLAYINGWIDGET_H
#include <QWidget>
2020-09-18 16:15:19 +02:00
#include <memory>
2010-06-17 00:00:39 +02:00
#include "core/song.h"
#include "covers/albumcoverloaderoptions.h"
class AlbumCoverChoiceController;
class Application;
class FullscreenHypnotoad;
class KittenLoader;
2010-06-17 00:00:39 +02:00
class QAction;
class QActionGroup;
class QMenu;
class QMovie;
2010-06-17 00:00:39 +02:00
class QTextDocument;
class QTimeLine;
class NowPlayingWidget : public QWidget {
Q_OBJECT
public:
NowPlayingWidget(QWidget* parent = nullptr);
~NowPlayingWidget();
2010-06-17 00:00:39 +02:00
static const char* kSettingsGroup;
2010-06-17 00:00:39 +02:00
static const int kPadding;
static const int kGradientHead;
static const int kGradientTail;
static const int kMaxCoverSize;
static const int kBottomOffset;
static const int kTopBorder;
// Values are saved in QSettings
enum Mode {
SmallSongDetails = 0,
LargeSongDetails = 1,
LargeSongDetailsBelow = 2,
LargeNoSongDetails = 3,
};
2010-06-17 00:00:39 +02:00
void SetApplication(Application* app);
2010-06-17 00:00:39 +02:00
void set_ideal_height(int height);
bool show_above_status_bar() const;
2010-06-17 00:00:39 +02:00
QSize sizeHint() const;
2020-09-18 16:15:19 +02:00
signals:
void ShowAboveStatusBarChanged(bool above);
public slots:
2010-06-17 00:00:39 +02:00
void Stopped();
void AllHail(bool hypnotoad);
2010-12-10 15:26:29 +01:00
void EnableKittens(bool aww);
2010-06-17 00:00:39 +02:00
protected:
2010-06-17 00:00:39 +02:00
void paintEvent(QPaintEvent* e);
void resizeEvent(QResizeEvent*);
void contextMenuEvent(QContextMenuEvent* e);
void mouseReleaseEvent(QMouseEvent*);
void dragEnterEvent(QDragEnterEvent* e);
void dropEvent(QDropEvent* e);
2010-06-17 00:00:39 +02:00
private slots:
void SetMode(int mode);
void ShowAboveStatusBar(bool above);
void FitCoverWidth(bool fit);
void AlbumArtLoaded(const Song& metadata, const QString& uri,
const QImage& image);
void KittenLoaded(quint64 id, const QImage& image);
2010-06-17 00:00:39 +02:00
void SetVisible(bool visible);
void SetHeight(int height);
void FadePreviousTrack(qreal value);
void LoadCoverFromFile();
void SaveCoverToFile();
void LoadCoverFromURL();
void SearchForCover();
void UnsetCover();
void ShowCover();
void SearchCoverAutomatically();
void Bask();
void AutomaticCoverSearchDone();
private:
void CreateModeAction(Mode mode, const QString& text, QActionGroup* group);
void UpdateDetailsText();
void UpdateHeight();
2010-06-17 00:00:39 +02:00
void DrawContents(QPainter* p);
void SetImage(const QImage& image);
void ScaleCover();
bool GetCoverAutomatically();
2010-06-17 00:00:39 +02:00
private:
Application* app_;
AlbumCoverChoiceController* album_cover_choice_controller_;
Mode mode_;
QMenu* menu_;
QAction* above_statusbar_action_;
QAction* fit_cover_width_action_;
2010-06-17 00:00:39 +02:00
bool visible_;
int small_ideal_height_;
AlbumCoverLoaderOptions cover_loader_options_;
int total_height_;
bool fit_width_;
2010-06-17 00:00:39 +02:00
QTimeLine* show_hide_animation_;
QTimeLine* fade_animation_;
// Information about the current track
2010-06-17 00:00:39 +02:00
Song metadata_;
QPixmap cover_;
// A copy of the original, unscaled album cover.
QImage original_;
2010-06-17 00:00:39 +02:00
QTextDocument* details_;
// Holds the last track while we're fading to the new track
2010-06-17 00:00:39 +02:00
QPixmap previous_track_;
qreal previous_track_opacity_;
static const char* kHypnotoadPath;
QAction* bask_in_his_glory_action_;
std::unique_ptr<QMovie> hypnotoad_;
std::unique_ptr<FullscreenHypnotoad> big_hypnotoad_;
2010-12-10 15:26:29 +01:00
std::unique_ptr<QMovie> spinner_animation_;
bool downloading_covers_;
2010-12-10 15:26:29 +01:00
bool aww_;
KittenLoader* kittens_;
quint64 pending_kitten_;
2010-06-17 00:00:39 +02:00
};
#endif // NOWPLAYINGWIDGET_H