X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fproperties_dialog.h;h=cae929e1894e19235dc84741a84ab6eab3adfda8;hb=491390fcf0174e4e5c1e88cf872f605d5f79ce12;hp=25c11e8d0025f8a206df1dbb799170ab751ba3a2;hpb=fb16d3932b49957672b5da3ced016186c926de9b;p=dcpomatic.git diff --git a/src/wx/properties_dialog.h b/src/wx/properties_dialog.h index 25c11e8d0..cae929e18 100644 --- a/src/wx/properties_dialog.h +++ b/src/wx/properties_dialog.h @@ -20,16 +20,19 @@ #include class Film; +class ThreadedStaticText; class PropertiesDialog : public wxDialog { public: - PropertiesDialog (wxWindow *, Film *); + PropertiesDialog (wxWindow *, boost::shared_ptr); private: + std::string frames_already_encoded () const; + + boost::shared_ptr _film; wxStaticText* _frames; - wxStaticText* _disk_for_frames; - wxStaticText* _total_disk; - wxStaticText* _encoded; + wxStaticText* _disk; + ThreadedStaticText* _encoded; };