From ededa7e3ef24a8cea9e513fa008ef481c1675457 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Fri, 30 Aug 2019 11:43:58 -0400 Subject: Initial check in Initial check in of the original repository: git://github.com/AGLExport/genivi-navi-yelp-client.git as of commit c2691cb265d9198542482a860f1df378e8c2708b. Bug-AGL: SPEC-2787 Signed-off-by: Scott Murray Change-Id: I7405367387622fb788a5712ed24005ee6d7ce495 --- InfoPanelLabel.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 InfoPanelLabel.h (limited to 'InfoPanelLabel.h') diff --git a/InfoPanelLabel.h b/InfoPanelLabel.h new file mode 100644 index 0000000..81fc206 --- /dev/null +++ b/InfoPanelLabel.h @@ -0,0 +1,21 @@ +#ifndef __INFO_PANEL_LABEL_H__ +#define __INFO_PANEL_LABEL_H__ + +#include +#include +#include +#include +#include + +class InfoPanelLabel : public QLabel +{ + Q_OBJECT + public: + InfoPanelLabel(QWidget *parent, QRect &r); + void Init(int pos, int height, const QString &text, QFont *font = NULL); + + private: + QRect rect; +}; + +#endif // __INFO_PANEL_LABEL_H__ -- cgit 1.2.3-korg