Use a LanguageTag for closed caption tracks.
[dcpomatic.git] / src / wx / content_panel.h
index 7b3217605064a94a9c460e51bb66ff0e66e1649b..df5c58ebd0450ebaaa7240cb0bab3839ffcfce1b 100644 (file)
@@ -45,20 +45,21 @@ class FilmViewer;
 class LimitedSplitter : public wxSplitterWindow
 {
 public:
-       LimitedSplitter (wxWindow* parent)
-               : wxSplitterWindow (parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSP_NOBORDER | wxSP_3DSASH | wxSP_LIVE_UPDATE)
-       {
-               /* This value doesn't really mean much but we just want to stop double-click on the
-                  divider from shrinking the bottom panel (#1601).
-               */
-               SetMinimumPaneSize (64);
-       }
+       LimitedSplitter (wxWindow* parent);
 
        bool OnSashPositionChange (int new_position)
        {
                /* Try to stop the top bit of the splitter getting so small that buttons disappear */
                return new_position > 220;
        }
+
+       void first_shown (wxWindow* top, wxWindow* bottom);
+
+private:
+       void sized (wxSizeEvent& ev);
+
+       bool _first_shown;
+       int const _top_panel_minimum_size;
 };
 
 
@@ -123,7 +124,7 @@ private:
        void add_files (std::list<boost::filesystem::path>);
        std::list<ContentSubPanel *> panels () const;
 
-       wxSplitterWindow* _splitter;
+       LimitedSplitter* _splitter;
        wxPanel* _top_panel;
        wxNotebook* _notebook;
        wxListCtrl* _content;