diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-29 00:56:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-01 01:54:38 +0100 |
| commit | 52e7269c9d8dd9e7fcf68ba126eb4ce0a593cf76 (patch) | |
| tree | 8482144a6a0d8d6ae2960be2f9a37cd637acc1cb /src/wx/short_kdm_output_panel.h | |
| parent | 75328ad3c7adf61f9103ced9efcc441159f4ac84 (diff) | |
Add shorter output panel for KDMs on smaller screens (#2646).
Diffstat (limited to 'src/wx/short_kdm_output_panel.h')
| -rw-r--r-- | src/wx/short_kdm_output_panel.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/wx/short_kdm_output_panel.h b/src/wx/short_kdm_output_panel.h new file mode 100644 index 000000000..eed2950e0 --- /dev/null +++ b/src/wx/short_kdm_output_panel.h @@ -0,0 +1,38 @@ +/* + Copyright (C) 2024 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 wxPanel; +class wxWindow; + + +class ShortKDMOutputPanel : public KDMOutputPanel +{ +public: + ShortKDMOutputPanel(wxWindow* parent); + +private: + void fill_destination_panel(wxPanel* panel); + void fill_details_panel(wxPanel* panel); +}; + |
