| 31 | using namespace BinaryNinjaDebuggerAPI; |
| 32 | |
| 33 | class AdapterSettingsDialog : public QDialog |
| 34 | { |
| 35 | Q_OBJECT |
| 36 | |
| 37 | private: |
| 38 | DbgRef<DebuggerController> m_controller; |
| 39 | QComboBox* m_adapterEntry; |
| 40 | QLineEdit* m_inputFile; |
| 41 | QLineEdit* m_pathEntry; |
| 42 | QLineEdit* m_workingDirectoryEntry; |
| 43 | QLineEdit* m_argumentsEntry; |
| 44 | QCheckBox* m_terminalEmulator; |
| 45 | |
| 46 | public: |
| 47 | AdapterSettingsDialog(QWidget* parent, DbgRef<DebuggerController> controller); |
| 48 | |
| 49 | private Q_SLOTS: |
| 50 | void apply(); |
| 51 | void selectAdapter(const QString& adapter); |
| 52 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected