diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-05 00:51:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-05 00:51:48 +0200 |
| commit | 1a7dc9ac997d7c103c07990db943d05d9bba4990 (patch) | |
| tree | 55f3a5bba54138c9183bc980c99ab05a28efe61c /src/wx/content_panel.h | |
| parent | afa092638250c72a92136b0b440bb6bb7c070702 (diff) | |
Support drag and drop onto the content list (#1220).v2.16.29
Diffstat (limited to 'src/wx/content_panel.h')
| -rw-r--r-- | src/wx/content_panel.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h index eec062284..896c81880 100644 --- a/src/wx/content_panel.h +++ b/src/wx/content_panel.h @@ -113,6 +113,10 @@ public: return _film_viewer; } + void add_files(std::vector<boost::filesystem::path> files); + void add_dcp(boost::filesystem::path dcp); + void add_folder(boost::filesystem::path folder); + boost::signals2::signal<void (void)> SelectionChanged; private: @@ -131,7 +135,6 @@ private: void setup_sensitivity (); void set_selected_state(int item, bool state); - void add_files (std::vector<boost::filesystem::path>); std::list<ContentSubPanel *> panels () const; LimitedSplitter* _splitter; |
