blob: 1b619bbf48243edbfb63740ef301791c4306c862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|