Add 2017 to copyright
[staging/HomeScreen.git] / HomeScreen / src / popupwidget.h
index a54a602..7f3aaa8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
+ * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,8 +18,8 @@
 #define POPUPWIDGET_H
 
 #include <QWidget>
-#include "../interfaces/popup.h"
-#include "popup_adapter.h"
+#include <include/popup.hpp>
+#include "popup_adaptor.h"
 
 namespace Ui {
 class PopupWidget;
@@ -35,17 +35,24 @@ public:
 public slots:
     void updateColorScheme();
 
-    // from popup_adapter.h
+    // from popup_adaptor.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