summaryrefslogtreecommitdiffstats
path: root/InfoPanel.h
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2019-08-30 11:43:58 -0400
committerScott Murray <scott.murray@konsulko.com>2019-08-30 11:45:55 -0400
commitededa7e3ef24a8cea9e513fa008ef481c1675457 (patch)
tree86a4c79d066b9638b11c0f127ad8f3c66c38c4f7 /InfoPanel.h
parent706ad73eb02caf8532deaf5d38995bd258725cb8 (diff)
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 <scott.murray@konsulko.com> Change-Id: I7405367387622fb788a5712ed24005ee6d7ce495
Diffstat (limited to 'InfoPanel.h')
-rw-r--r--InfoPanel.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/InfoPanel.h b/InfoPanel.h
new file mode 100644
index 0000000..0602c9f
--- /dev/null
+++ b/InfoPanel.h
@@ -0,0 +1,33 @@
+#ifndef __INFO_PANEL_H__
+#define __INFO_PANEL_H__
+
+#include <QWidget>
+#include <QNetworkAccessManager>
+#include <QRect>
+#include <QPushButton>
+
+#include "Business.h"
+#include "InfoPanelLabel.h"
+
+class InfoPanel
+{
+ public:
+ InfoPanel(QWidget *parent, Business & business, QRect rect);
+ virtual ~InfoPanel(){}
+ QPushButton * getCancelButton() { return &cancelButton; }
+ QPushButton * getGoButton() { return &goButton; }
+
+ private:
+ InfoPanelLabel nameLabel;
+ InfoPanelLabel imageLabel;
+ InfoPanelLabel addressLabel;
+ InfoPanelLabel phoneLabel;
+ InfoPanelLabel imgRatingLabel;
+ InfoPanelLabel nbReviewsLabel;
+ InfoPanelLabel btnsBackground;
+ QPushButton cancelButton;
+ QPushButton goButton;
+ QNetworkAccessManager networkManager;
+};
+
+#endif // __INFO_PANEL_H__