Move LimitedSplitter into the header file.
authorCarl Hetherington <cth@carlh.net>
Tue, 20 Oct 2020 14:39:09 +0000 (16:39 +0200)
committerCarl Hetherington <cth@carlh.net>
Tue, 20 Oct 2020 14:39:09 +0000 (16:39 +0200)
src/wx/content_panel.cc
src/wx/content_panel.h

index 3a162d7713504981139c847925a27b0962ecb824..2c5fea79bee8596190813e00c707525fe313f09a 100644 (file)
@@ -66,24 +66,6 @@ using namespace dcpomatic;
 using namespace boost::placeholders;
 #endif
 
-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);
-       }
-
-       bool OnSashPositionChange (int new_position)
-       {
-               /* Try to stop the top bit of the splitter getting so small that buttons disappear */
-               return new_position > 220;
-       }
-};
 
 ContentPanel::ContentPanel (wxNotebook* n, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
        : _video_panel (0)
index a4a172a7fc822a57ecba1f87d5a7c7df659cced3..7b3217605064a94a9c460e51bb66ff0e66e1649b 100644 (file)
@@ -41,6 +41,27 @@ class TimingPanel;
 class Film;
 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);
+       }
+
+       bool OnSashPositionChange (int new_position)
+       {
+               /* Try to stop the top bit of the splitter getting so small that buttons disappear */
+               return new_position > 220;
+       }
+};
+
+
 class ContentPanel : public boost::noncopyable
 {
 public: