| 19 | #include "ui_subDataWidget.h" |
| 20 | |
| 21 | class subDataWidget : public QWidget { |
| 22 | Q_OBJECT |
| 23 | |
| 24 | public: |
| 25 | explicit subDataWidget(QWidget *parent = 0); |
| 26 | void setSubData(const QIcon &stateIcon, QString name, const QIcon &langIcon, |
| 27 | const QIcon &engineIcon); |
| 28 | void setSubData(const QIcon &stateIcon, QString name); |
| 29 | void setSubData(QString name, QString ext, const QIcon &langIcon, |
| 30 | const QIcon &engineIcon); |
| 31 | void clearAll(); |
| 32 | ~subDataWidget(); |
| 33 | |
| 34 | private: |
| 35 | Ui::subDataWidget *ui; |
| 36 | }; |
| 37 | |
| 38 | #endif // SUBDATAWIDGET_H |
nothing calls this directly
no outgoing calls
no test coverage detected