Clementine-audio-player-Mac.../src/analyzers/turbine.h

25 lines
512 B
C
Raw Normal View History

2009-12-24 20:16:07 +01:00
//
// Amarok BarAnalyzer 3 - Jet Turbine: Symmetric version of analyzer 1
//
// Author: Stanislav Karchebny <berkus@users.sf.net>, (C) 2003
//
// Copyright: like rest of Amarok
//
#ifndef ANALYZER_TURBINE_H
#define ANALYZER_TURBINE_H
#include "boomanalyzer.h"
class TurbineAnalyzer : public BoomAnalyzer {
2010-03-21 18:22:05 +01:00
Q_OBJECT
public:
Q_INVOKABLE TurbineAnalyzer(QWidget* parent) : BoomAnalyzer(parent) {}
2009-12-24 20:16:07 +01:00
2014-05-13 14:46:22 +02:00
void analyze(QPainter& p, const Analyzer::Scope&, bool new_frame);
2010-03-21 18:22:05 +01:00
static const char* kName;
2009-12-24 20:16:07 +01:00
};
#endif