Store subtitle language(s) in Film, and allow setup of those
[dcpomatic.git] / src / wx / content_panel.h
index a4a172a7fc822a57ecba1f87d5a7c7df659cced3..df5c58ebd0450ebaaa7240cb0bab3839ffcfce1b 100644 (file)
@@ -41,6 +41,28 @@ class TimingPanel;
 class Film;
 class FilmViewer;
 
+
+class LimitedSplitter : public wxSplitterWindow
+{
+public:
+       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;
+};
+
+
 class ContentPanel : public boost::noncopyable
 {
 public:
@@ -102,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;