mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 10:48:33 +01:00
92 lines
2.2 KiB
C++
92 lines
2.2 KiB
C++
/* This file is part of Clementine.
|
|
|
|
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 PROJECTMVISUALISATION_H
|
|
#define PROJECTMVISUALISATION_H
|
|
|
|
#include <QGraphicsScene>
|
|
#include <QBasicTimer>
|
|
#include <QSet>
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
#include "engines/bufferconsumer.h"
|
|
|
|
class projectM;
|
|
|
|
class ProjectMPresetModel;
|
|
|
|
class QTemporaryFile;
|
|
|
|
class ProjectMVisualisation : public QGraphicsScene, public BufferConsumer {
|
|
Q_OBJECT
|
|
public:
|
|
ProjectMVisualisation(QObject *parent = 0);
|
|
~ProjectMVisualisation();
|
|
|
|
enum Mode {
|
|
Random = 0,
|
|
FromList = 1,
|
|
};
|
|
|
|
QString preset_url() const;
|
|
ProjectMPresetModel* preset_model() const { return preset_model_; }
|
|
|
|
Mode mode() const { return mode_; }
|
|
|
|
// BufferConsumer
|
|
void ConsumeBuffer(GstBuffer *buffer, GstEnginePipeline*);
|
|
|
|
public slots:
|
|
void SetTextureSize(int size);
|
|
void SetDuration(int seconds);
|
|
|
|
void SetSelected(const QStringList& paths, bool selected);
|
|
void ClearSelected();
|
|
void SetImmediatePreset(const QString& path);
|
|
void SetMode(Mode mode);
|
|
|
|
void Lock(bool lock);
|
|
|
|
protected:
|
|
// QGraphicsScene
|
|
void drawBackground(QPainter *painter, const QRectF &rect);
|
|
|
|
private slots:
|
|
void SceneRectChanged(const QRectF& rect);
|
|
|
|
private:
|
|
void InitProjectM();
|
|
void Load();
|
|
void Save();
|
|
|
|
int IndexOfPreset(const QString& path) const;
|
|
|
|
private:
|
|
boost::scoped_ptr<projectM> projectm_;
|
|
ProjectMPresetModel* preset_model_;
|
|
Mode mode_;
|
|
int duration_;
|
|
|
|
boost::scoped_ptr<QTemporaryFile> temporary_font_;
|
|
|
|
std::vector<int> default_rating_list_;
|
|
|
|
int texture_size_;
|
|
};
|
|
|
|
#endif // PROJECTMVISUALISATION_H
|