summaryrefslogtreecommitdiff
path: root/src/wx/content_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-10-05 00:51:48 +0200
committerCarl Hetherington <cth@carlh.net>2022-10-05 00:51:48 +0200
commit1a7dc9ac997d7c103c07990db943d05d9bba4990 (patch)
tree55f3a5bba54138c9183bc980c99ab05a28efe61c /src/wx/content_panel.h
parentafa092638250c72a92136b0b440bb6bb7c070702 (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.h5
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;