X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fbatch_job_view.h;h=6d9ccba31cc3bbfb96cb3f8d5624945bb03c9bcb;hb=92933c13e9233149e4e80244d92da81b70072214;hp=d6559686402667723cd7b98c424b231e6f19ba5d;hpb=4697fe9aef6f4c51d394691a178d5417028690bd;p=dcpomatic.git diff --git a/src/wx/batch_job_view.h b/src/wx/batch_job_view.h index d65596864..6d9ccba31 100644 --- a/src/wx/batch_job_view.h +++ b/src/wx/batch_job_view.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,13 +18,23 @@ */ + #include "job_view.h" + class BatchJobView : public JobView { public: - BatchJobView (boost::shared_ptr job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table); + BatchJobView (std::shared_ptr job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table); private: int insert_position () const; + void job_list_changed (); + + void finish_setup (wxWindow* parent, wxSizer* sizer); + void higher_priority_clicked (); + void lower_priority_clicked (); + + wxButton* _higher_priority; + wxButton* _lower_priority; };