Implementing app launch and app surface control workflow. Using WindowManager to...
[staging/HomeScreen.git] / HomeScreen / src / popupwidget.h
index a54a602..eaf41de 100644 (file)
@@ -18,7 +18,7 @@
 #define POPUPWIDGET_H
 
 #include <QWidget>
-#include "../interfaces/popup.h"
+#include <include/popup.hpp>
 #include "popup_adapter.h"
 
 namespace Ui {
@@ -38,14 +38,21 @@ public slots:
     // from popup_adapter.h
 public Q_SLOTS: // METHODS
     void showPopup(int /*type*/, const QString &text);
+    void showPopupComboBox(const QString &text, const QStringList &choices);
 
 private slots:
     void on_pushButton_OK_clicked();
 
+signals:
+    void comboBoxResult(QString choice);
+
 private:
     Ui::PopupWidget *mp_ui;
 
     PopupAdaptor *mp_popupAdaptor;
+    bool m_sendComboBoxChoice;
+    // for showPupupFor LayoutSelection
+    //QList<QPushButton> m_pushButtons;
 };
 
 #endif // POPUPWIDGET_H