diff options
Diffstat (limited to 'client-qt/udm-client-qt/download_add_widget.h')
-rw-r--r-- | client-qt/udm-client-qt/download_add_widget.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client-qt/udm-client-qt/download_add_widget.h b/client-qt/udm-client-qt/download_add_widget.h new file mode 100644 index 0000000..1b619bb --- /dev/null +++ b/client-qt/udm-client-qt/download_add_widget.h @@ -0,0 +1,28 @@ +#ifndef DOWNLOAD_ADD_WIDGET_H +#define DOWNLOAD_ADD_WIDGET_H + +#include <QWidget> +#include "../../protocol/udm.pb.h" + +class QGridLayout; + + +class download_add_widget : public QWidget +{ + Q_OBJECT +public: + explicit download_add_widget(std::list<module_info> &modules, QWidget *parent = 0); + +signals: + +public slots: +protected slots: + void combo_modules_currentIndexChanged(QString); + void btn_ok_clicked(); + void btn_cancel_clicked(); +private: + std::list<module_info> &modules; + QGridLayout *layout_settings; +}; + +#endif // DOWNLOAD_ADD_WIDGET_H |