Cleanup: add convert_to_lower() and matches_search().
[dcpomatic.git] / src / wx / job_view.h
index 4a602fc6229b0b82542e065c8a584ed0816c10dd..74518c9babc639722cbeca7a441a7f8c380dc44c 100644 (file)
 
 */
 
+
 #ifndef DCPOMATIC_JOB_VIEW_H
 #define DCPOMATIC_JOB_VIEW_H
 
+
 #include <boost/signals2.hpp>
 
+
+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