swaroop: only disable next button if skippable (not previous).
[dcpomatic.git] / src / wx / hints_dialog.h
index 06f979a74fde34d575dc07afed42354ce759dd12..2755c70fdf8f8f9c47b9a6e047a3828dc8f5d2b4 100644 (file)
@@ -18,6 +18,7 @@
 
 */
 
+#include "lib/types.h"
 #include <wx/wx.h>
 #include <boost/weak_ptr.hpp>
 #include <boost/signals2.hpp>
@@ -32,7 +33,8 @@ public:
        HintsDialog (wxWindow* parent, boost::weak_ptr<Film>, bool ok);
 
 private:
-       void film_changed ();
+       void film_change (ChangeType);
+       void film_content_change (ChangeType type);
        void shut_up (wxCommandEvent& ev);
        void update ();
        void hint (std::string text);
@@ -47,6 +49,6 @@ private:
        boost::shared_ptr<Hints> _hints;
        std::list<std::string> _current;
 
-       boost::signals2::scoped_connection _film_changed_connection;
-       boost::signals2::scoped_connection _film_content_changed_connection;
+       boost::signals2::scoped_connection _film_change_connection;
+       boost::signals2::scoped_connection _film_content_change_connection;
 };