Delete COPYING as LICENSE is to be used
[apps/poi-yelp.git] / InfoPanelLabel.h
1 #ifndef __INFO_PANEL_LABEL_H__
2 #define __INFO_PANEL_LABEL_H__
3
4 #include <QWidget>
5 #include <QLabel>
6 #include <QRect>
7 #include <QFont>
8 #include <QString>
9
10 class InfoPanelLabel : public QLabel
11 {
12     Q_OBJECT
13     public:
14         InfoPanelLabel(QWidget *parent, QRect &r);
15         void Init(int pos, int height, const QString &text, QFont *font = NULL);
16
17     private:
18         QRect rect;
19 };
20
21 #endif // __INFO_PANEL_LABEL_H__