mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 04:50:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #ifndef METERWIDGET_H
 | |
| #define METERWIDGET_H
 | |
| 
 | |
| #include <QWidget>
 | |
| #include <QtGui>
 | |
| #include <QQueue>
 | |
| 
 | |
| class MeterWidget : public QWidget
 | |
| {
 | |
|     Q_OBJECT
 | |
| public:
 | |
|     explicit MeterWidget(QWidget *parent = 0);
 | |
|     
 | |
| signals:
 | |
|     
 | |
| public slots:
 | |
|     void setValue(int value);
 | |
| 
 | |
| private:
 | |
|     QQueue<int> signalQueue;
 | |
| 
 | |
|     int m_signal;
 | |
|     int m_sigPeak;
 | |
| 
 | |
| protected:
 | |
|     void paintEvent( QPaintEvent * );
 | |
|     
 | |
| };
 | |
| 
 | |
| #endif // METERWIDGET_H
 |