summaryrefslogtreecommitdiff
path: root/src/wx/tall_kdm_output_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-28 23:25:09 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-01 01:54:38 +0100
commit2a569aa08d8827a9a14dcd6db2c4ea1bbc8a32fd (patch)
tree74731487d34451c9811949163c669da08e3cdc3d /src/wx/tall_kdm_output_panel.h
parent0073b9b1dd9f916f543012a5f53d37882960527d (diff)
Split KDMOutputPanel into TallKDMOutputPanel and a base.
The TallKDMOutputPanel is just responsible for layout out the controls.
Diffstat (limited to 'src/wx/tall_kdm_output_panel.h')
-rw-r--r--src/wx/tall_kdm_output_panel.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/wx/tall_kdm_output_panel.h b/src/wx/tall_kdm_output_panel.h
new file mode 100644
index 000000000..9fdad586f
--- /dev/null
+++ b/src/wx/tall_kdm_output_panel.h
@@ -0,0 +1,29 @@
+/*
+ Copyright (C) 2015-2022 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 "kdm_output_panel.h"
+
+
+class TallKDMOutputPanel : public KDMOutputPanel
+{
+public:
+ TallKDMOutputPanel(wxWindow* parent);
+};