Add accessor for butler.
[dcpomatic.git] / src / wx / fonts_dialog.h
index e251ddab183d9412d958126c81bab8ae50b156f2..ba98e0963877b82ccf05982b4b81da161dd4ce99 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 #include <boost/filesystem.hpp>
 
 class Content;
+class TextContent;
 
 class FontsDialog : public wxDialog
 {
 public:
-       FontsDialog (wxWindow* parent, boost::shared_ptr<Content>);
+       FontsDialog (wxWindow* parent, boost::shared_ptr<Content>, boost::shared_ptr<TextContent> caption);
 
 private:
        void setup ();
@@ -38,6 +39,7 @@ private:
        void edit_clicked ();
 
        boost::weak_ptr<Content> _content;
+       boost::weak_ptr<TextContent> _caption;
        wxListCtrl* _fonts;
        wxButton* _edit;
 };