std::shared_ptr
[dcpomatic.git] / src / wx / content_panel.h
index 7b3217605064a94a9c460e51bb66ff0e66e1649b..6a9ef3f4a561724cc442b2931c4ceaaa7a12dcff 100644 (file)
@@ -22,7 +22,6 @@
 #include "lib/types.h"
 #include "lib/film.h"
 #include <wx/splitter.h>
-#include <boost/shared_ptr.hpp>
 #include <list>
 
 class wxNotebook;
@@ -45,35 +44,36 @@ 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;
 };
 
 
 class ContentPanel : public boost::noncopyable
 {
 public:
-       ContentPanel (wxNotebook *, boost::shared_ptr<Film>, boost::weak_ptr<FilmViewer> viewer);
+       ContentPanel (wxNotebook *, std::shared_ptr<Film>, std::weak_ptr<FilmViewer> viewer);
 
-       boost::shared_ptr<Film> film () const {
+       std::shared_ptr<Film> film () const {
                return _film;
        }
 
-       void set_film (boost::shared_ptr<Film>);
+       void set_film (std::shared_ptr<Film>);
        void set_general_sensitivity (bool s);
-       void set_selection (boost::weak_ptr<Content>);
+       void set_selection (std::weak_ptr<Content>);
        void set_selection (ContentList cl);
 
        void film_changed (Film::Property p);
@@ -99,7 +99,7 @@ public:
        bool remove_clicked (bool hotkey);
        void timeline_clicked ();
 
-       boost::weak_ptr<FilmViewer> film_viewer () const {
+       std::weak_ptr<FilmViewer> film_viewer () const {
                return _film_viewer;
        }
 
@@ -123,7 +123,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;
@@ -143,8 +143,8 @@ private:
        wxNotebook* _parent;
        wxWindow* _last_selected_tab;
 
-       boost::shared_ptr<Film> _film;
-       boost::weak_ptr<FilmViewer> _film_viewer;
+       std::shared_ptr<Film> _film;
+       std::weak_ptr<FilmViewer> _film_viewer;
        bool _generally_sensitive;
        bool _ignore_deselect;
        bool _no_check_selection;