Full-screen mode for player.
authorCarl Hetherington <cth@carlh.net>
Tue, 11 Sep 2018 18:58:28 +0000 (19:58 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 11 Sep 2018 18:58:28 +0000 (19:58 +0100)
ChangeLog
src/tools/dcpomatic_player.cc
src/wx/film_viewer.cc

index 4420c78a81dd1191c33d439ebb77cce4c63a9350..93029bab772fd6506019f969bd2a25d78cd5c3bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-09-11  Carl Hetherington  <cth@carlh.net>
+
+       * Full-screen mode for player (#1329).
+
 2018-09-10  Carl Hetherington  <cth@carlh.net>
 
        * Basic export of multiple reels to multiple files.
index a95476fc10bf06376821f900c028d89976ddcc62..9a9316717b9efc86d33b644db2fe115655feb990 100644 (file)
@@ -85,7 +85,8 @@ enum {
        ID_file_close = 100,
        ID_view_cpl,
        /* Allow spare IDs for CPLs */
-       ID_view_closed_captions = 200,
+       ID_view_full_screen = 200,
+       ID_view_closed_captions,
        ID_view_scale_appropriate,
        ID_view_scale_full,
        ID_view_scale_half,
@@ -107,6 +108,7 @@ public:
                , _update_news_requested (false)
                , _info (0)
                , _config_dialog (0)
+               , _full_screen (false)
                , _file_menu (0)
                , _history_items (0)
                , _history_position (0)
@@ -137,6 +139,7 @@ public:
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this), ID_file_close);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this), wxID_EXIT);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this), wxID_PREFERENCES);
+               Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_full_screen, this), ID_view_full_screen);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this), ID_view_closed_captions);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_cpl, this, _1), ID_view_cpl, ID_view_cpl + MAX_CPLS);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(0)), ID_view_scale_full);
@@ -150,17 +153,17 @@ public:
                /* Use a panel as the only child of the Frame so that we avoid
                   the dark-grey background on Windows.
                */
-               wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
+               _overall_panel = new wxPanel (this, wxID_ANY);
 
-               _viewer.reset (new FilmViewer (overall_panel));
-               _controls = new Controls (overall_panel, _viewer);
+               _viewer.reset (new FilmViewer (_overall_panel));
+               _controls = new Controls (_overall_panel, _viewer);
                _viewer->set_dcp_decode_reduction (Config::instance()->decode_reduction ());
-               _info = new PlayerInformation (overall_panel, _viewer);
+               _info = new PlayerInformation (_overall_panel, _viewer);
                wxSizer* main_sizer = new wxBoxSizer (wxVERTICAL);
-               main_sizer->Add (_viewer->panel(), 1, wxEXPAND | wxALL, 6);
+               main_sizer->Add (_viewer->panel(), 1, wxEXPAND);
                main_sizer->Add (_controls, 0, wxEXPAND | wxALL, 6);
                main_sizer->Add (_info, 0, wxEXPAND | wxALL, 6);
-               overall_panel->SetSizer (main_sizer);
+               _overall_panel->SetSizer (main_sizer);
 
 #ifdef __WXOSX__
                int accelerators = 4;
@@ -274,6 +277,7 @@ private:
                wxMenu* view = new wxMenu;
                optional<int> c = Config::instance()->decode_reduction();
                _view_cpl = view->Append(ID_view_cpl, _("CPL"), _cpl_menu);
+               view->AppendCheckItem(ID_view_full_screen, _("Full screen\tF11"))->Check(_full_screen);
                view->Append(ID_view_closed_captions, _("Closed captions..."));
                view->AppendSeparator();
                view->AppendRadioItem(ID_view_scale_appropriate, _("Set decode resolution to match display"))->Check(!static_cast<bool>(c));
@@ -438,6 +442,15 @@ private:
                dcp->examine (shared_ptr<Job>());
        }
 
+       void view_full_screen ()
+       {
+               _full_screen = !_full_screen;
+               _controls->Show (!_full_screen);
+               _info->Show (!_full_screen);
+               _overall_panel->SetBackgroundColour (_full_screen ? wxColour(0, 0, 0) : wxNullColour);
+               ShowFullScreen (_full_screen);
+       }
+
        void view_closed_captions ()
        {
                _viewer->show_closed_captions ();
@@ -646,6 +659,8 @@ private:
        bool _update_news_requested;
        PlayerInformation* _info;
        wxPreferencesEditor* _config_dialog;
+       bool _full_screen;
+       wxPanel* _overall_panel;
        wxMenu* _file_menu;
        wxMenuItem* _view_cpl;
        wxMenu* _cpl_menu;
index bd83821be0b783560b5c0f475c1ad46c04e3a26d..c062524e93fce32db1d51a4a1de90a66d4e1fa4f 100644 (file)
@@ -91,6 +91,7 @@ FilmViewer::FilmViewer (wxWindow* p)
 #endif
 
        _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
+       _panel->SetBackgroundColour (*wxBLACK);
 
        _panel->Bind            (wxEVT_PAINT,               boost::bind (&FilmViewer::paint_panel,     this));
        _panel->Bind            (wxEVT_SIZE,                boost::bind (&FilmViewer::panel_sized,     this, _1));