X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fproperties_dialog.h;h=aeb8927b254458db68138dd4bbabe13d22e5e7b2;hb=625bc8d73f3d32468a374d24e372a6de7588e069;hp=f72c8341945f06cd34be59caba16cf11fba15375;hpb=c0ed407fb02891f0dd364e78b6192f0e6dbe1d8d;p=dcpomatic.git diff --git a/src/wx/properties_dialog.h b/src/wx/properties_dialog.h index f72c83419..aeb8927b2 100644 --- a/src/wx/properties_dialog.h +++ b/src/wx/properties_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,22 +18,22 @@ */ #include +#include "table_dialog.h" class Film; class ThreadedStaticText; -class PropertiesDialog : public wxDialog +class PropertiesDialog : public TableDialog { public: - PropertiesDialog (wxWindow *, Film *); + PropertiesDialog (wxWindow *, boost::shared_ptr); private: std::string frames_already_encoded () const; - Film* _film; + boost::shared_ptr _film; wxStaticText* _frames; - wxStaticText* _disk_for_frames; - wxStaticText* _total_disk; + wxStaticText* _disk; ThreadedStaticText* _encoded; };