diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-02-13 17:08:55 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-02-17 15:07:24 -0500 |
| commit | d7b826112b6c2c5e7a76acb6c9507a571407173e (patch) | |
| tree | 420aa0d6ec99855714cb9482f090525eea0c81a9 | |
| parent | bef4772cfb414ff2e466f541d65c77a6b02b1eb5 (diff) | |
Add action to project browser to download missing files
| -rw-r--r-- | ui/projectbrowser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/projectbrowser.h b/ui/projectbrowser.h index 70441aac..7275a6ef 100644 --- a/ui/projectbrowser.h +++ b/ui/projectbrowser.h @@ -317,6 +317,8 @@ class BINARYNINJAUIAPI ProjectBrowser: public QWidget, public UIContextNotificat void initActions(); + std::vector<ProjectFileRef> GetSelectedFilesRecursive(); + private slots: void itemDoubleClicked(const QModelIndex& index); void openProjectFile(ProjectFileRef file, bool openWithOptions = false); @@ -337,6 +339,7 @@ protected: void PromptAnalyzeSelected(); void PromptEditProjectDetails(); void Refresh(); + void DownloadSelectedFilesRecursive(); public: ProjectBrowser(QWidget* parent, ProjectRef project); |
