1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-13 20:48:42 +01:00
LibrePilot/ground/openpilotgcs/src/plugins/uavobjectwidgetutils/popupwidget.h

43 lines
791 B
C
Raw Normal View History

2012-07-13 22:44:56 +02:00
#ifndef POPUPWIDGET_H
#define POPUPWIDGET_H
#include <QtGui>
#include <QWidget>
#include <QDialog>
#include "uavobjectwidgetutils_global.h"
namespace Ui {
class PopupWidget;
}
class UAVOBJECTWIDGETUTILS_EXPORT PopupWidget : public QDialog
{
Q_OBJECT
public:
explicit PopupWidget(QWidget *parent = 0);
void popUp(QWidget* widget = 0);
2012-07-13 22:44:56 +02:00
void setWidget(QWidget* widget);
QWidget* getWidget() { return m_widget; }
QHBoxLayout* getLayout() { return m_layout; }
signals:
public slots:
bool close();
void done(int result);
2012-07-13 22:44:56 +02:00
private slots:
void closePopup();
private:
QHBoxLayout* m_layout;
QWidget* m_widget;
QWidget* m_widgetParent;
QPushButton* m_closeButton;
};
#endif // POPUPWIDGET_H