aboutsummaryrefslogtreecommitdiffstats
path: root/wpa_supplicant/wpa_gui-qt4/signalbar.h
blob: 37da5dd2ce94172c20d561e8712741f5c79baa4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * wpa_gui - SignalBar class
 * Copyright (c) 2011, Kel Modderman <kel@otaku42.de>
 *
 * This software may be distributed under the terms of the BSD license.
 * See README for more details.
 */

#ifndef SIGNALBAR_H
#define SIGNALBAR_H

#include <QObject>
#include <QStyledItemDelegate>

class SignalBar : public QStyledItemDelegate
{
	Q_OBJECT

public:
	SignalBar(QObject *parent = 0);
	~SignalBar();

	virtual void paint(QPainter *painter,
			   const QStyleOptionViewItem &option,
			   const QModelIndex &index) const ;
};

#endif /* SIGNALBAR_H */