defuze.me
Client
|
00001 /************************************************************************** 00002 ** defuze.me Epitech Innovative Project 00003 ** 00004 ** Copyright 2010-2011 00005 ** Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard 00006 ** Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier 00007 ** 00008 ** All rights reserved. 00009 **************************************************************************/ 00010 00011 #ifndef VUMETER_HPP 00012 #define VUMETER_HPP 00013 00014 #include "ui_vumeter.h" 00015 00016 class VUMeter : public QWidget, private Ui::VUMeter 00017 { 00018 Q_OBJECT 00019 00020 public: 00021 explicit VUMeter(QWidget *parent = 0); 00022 void setLevels(double left, double right); 00023 00024 protected: 00025 void changeEvent(QEvent *e); 00026 }; 00027 00028 #endif // VUMETER_HPP