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
|
2009-12-24 20:16:07 +01:00
|
|
|
public:
|
2010-03-21 18:22:05 +01:00
|
|
|
Q_INVOKABLE TurbineAnalyzer( QWidget *parent ) : BoomAnalyzer( parent ) {}
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-03-21 18:22:05 +01:00
|
|
|
void analyze( QPainter& p, const Scope& );
|
|
|
|
|
|
|
|
static const char* kName;
|
2009-12-24 20:16:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|