X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_view.h;h=74518c9babc639722cbeca7a441a7f8c380dc44c;hb=7ac2d256ba45896693c68da63e8810e910b3d835;hp=4a602fc6229b0b82542e065c8a584ed0816c10dd;hpb=b249700e1da7dd6631a8b4440587f4093a2bdef1;p=dcpomatic.git diff --git a/src/wx/job_view.h b/src/wx/job_view.h index 4a602fc62..74518c9ba 100644 --- a/src/wx/job_view.h +++ b/src/wx/job_view.h @@ -18,22 +18,26 @@ */ + #ifndef DCPOMATIC_JOB_VIEW_H #define DCPOMATIC_JOB_VIEW_H + #include + +class CheckBox; class Job; -class wxScrolledWindow; -class wxWindow; -class wxFlexGridSizer; -class wxCommandEvent; class wxBoxSizer; -class wxGauge; -class wxStaticText; class wxButton; +class wxCommandEvent; +class wxFlexGridSizer; +class wxGauge; +class wxScrolledWindow; class wxSizer; -class wxCheckBox; +class wxStaticText; +class wxWindow; + class JobView { @@ -63,7 +67,7 @@ protected: wxFlexGridSizer* _table; /** sizer for buttons (cancel, details, pause etc.) */ wxBoxSizer* _buttons; - /** sizer for the guage and the message underneath it */ + /** sizer for the gauge and the message underneath it */ wxBoxSizer* _gauge_message; private: @@ -81,7 +85,7 @@ private: wxStaticText* _message; wxButton* _cancel; wxButton* _details; - wxCheckBox* _notify; + CheckBox* _notify; /** sizer for all right-hand-size controls */ wxBoxSizer* _controls; std::string _last_message; @@ -90,4 +94,5 @@ private: boost::signals2::scoped_connection _finished_connection; }; + #endif