Fix login denied (67) errors when trying to download certificates
[dcpomatic.git] / src / wx / content_view.h
index 0da53f636f139ff0d1838ec1793ad011bc1c821a..3f4a65ab1bc1e58f1258ea6a6de219ee2e7c17a4 100644 (file)
 
 */
 
+#include "lib/content_store.h"
+#include "lib/warnings.h"
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/listctrl.h>
+DCPOMATIC_ENABLE_WARNINGS
 #include <boost/shared_ptr.hpp>
 #include <boost/weak_ptr.hpp>
 #include <vector>
 class Content;
 class Film;
 
-class ContentView : public wxListCtrl
+class ContentView : public wxListCtrl, public ContentStore
 {
 public:
-       ContentView (wxWindow* parent, boost::weak_ptr<Film> film);
+       ContentView (wxWindow* parent);
 
        boost::shared_ptr<Content> selected () const;
        void update ();
 
+       boost::shared_ptr<Content> get (std::string digest) const;
+
 private:
        void add (boost::shared_ptr<Content> content);