summaryrefslogtreecommitdiff
path: root/src/wx/content_advanced_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-17 23:18:15 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-18 01:37:25 +0200
commitd9ab996fa416ba27b69bb65f047a1a1aa4063f1b (patch)
treec5fbddc15be5d7977e17b68743cc13cf4a14dab0 /src/wx/content_advanced_dialog.h
parent5fa43b4073033a5874106cc817c904bf3d58e4bf (diff)
Add a new "Advanced settings" dialog for content, accessible
from the right-click menu. Move the "use video" checkbox into here, as it feels like excessive clutter to have it in the main video panel. Maybe other things should be hidden in here. I'm looking at you, video filters...
Diffstat (limited to 'src/wx/content_advanced_dialog.h')
-rw-r--r--src/wx/content_advanced_dialog.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/wx/content_advanced_dialog.h b/src/wx/content_advanced_dialog.h
new file mode 100644
index 000000000..79b4be85c
--- /dev/null
+++ b/src/wx/content_advanced_dialog.h
@@ -0,0 +1,39 @@
+/*
+ Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ DCP-o-matic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+
+#include "table_dialog.h"
+#include <boost/shared_ptr.hpp>
+
+
+class Content;
+
+
+class ContentAdvancedDialog : public TableDialog
+{
+public:
+ ContentAdvancedDialog (wxWindow* parent, boost::shared_ptr<Content> content);
+
+private:
+ void ignore_video_changed (wxCommandEvent& ev);
+
+ boost::shared_ptr<Content> _content;
+};
+