blob: 65b597f618aa0b8918f0d4f8f034f3e528bd6716 [file] [log] [blame]
Olivier SOLDANOdd878662017-03-27 16:00:06 -04001#ifndef SENDCONTACTREQUESTWIDGET_H
2#define SENDCONTACTREQUESTWIDGET_H
3
4#include <QWidget>
5
6namespace Ui {
7class SendContactRequestWidget;
8}
9
10class SendContactRequestWidget : public QWidget
11{
12 Q_OBJECT
13
14public:
15 explicit SendContactRequestWidget(QWidget *parent = 0);
16 ~SendContactRequestWidget();
17 void setup(const QModelIndex& nodeIdx);
18 void sendCR(const QModelIndex& nodeIdx);
19
20private:
21 QMetaObject::Connection sendCRClickedConnection_;
22 Ui::SendContactRequestWidget *ui;
23
24signals:
25 void sendCRclicked();
26};
27
28#endif // SENDCONTACTREQUESTWIDGET_H