-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwidget.h
More file actions
45 lines (31 loc) · 710 Bytes
/
widget.h
File metadata and controls
45 lines (31 loc) · 710 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
namespace Annotator {
namespace Plugins {
class NCS;
}
}
namespace Ui {
class Widget;
}
class Widget : public QWidget {
Q_OBJECT
public:
explicit Widget(QWidget *parent = 0);
~Widget();
void setNCS(Annotator::Plugins::NCS *ncs);
signals:
void labelFileChanged(QString);
void graphFileChanged(QString);
private slots:
void on_graphButton_clicked();
void on_labelsButton_clicked();
void on_alexNetRadioButton_toggled(bool checked);
void on_googleNetRadioButton_toggled(bool checked);
void on_squeezeNetRadioButton_toggled(bool checked);
private:
Ui::Widget *ui;
Annotator::Plugins::NCS *ncs;
};
#endif // WIDGET_H