diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-12 21:48:06 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-12 21:48:06 +0000 |
| commit | 9b78074e1487ac263f84fd1132735fba83045719 (patch) | |
| tree | 286f931e307356ec7d4d9d226aa0d862bcd02987 /src/wx/job_manager_view.cc | |
| parent | b77dd4f1ef4d6a1c0c36499f82835e0457469dbd (diff) | |
Add details button to job manager; stretch jobs across the whole of the bottom of the frame; give a better error on low disc space conditions (#48).
Diffstat (limited to 'src/wx/job_manager_view.cc')
| -rw-r--r-- | src/wx/job_manager_view.cc | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/wx/job_manager_view.cc b/src/wx/job_manager_view.cc index a5c02b163..75842a8d4 100644 --- a/src/wx/job_manager_view.cc +++ b/src/wx/job_manager_view.cc @@ -30,6 +30,7 @@ using std::string; using std::list; +using std::map; using boost::shared_ptr; /** Must be called in the GUI thread */ @@ -41,7 +42,7 @@ JobManagerView::JobManagerView (wxWindow* parent) sizer->Add (_panel, 1, wxEXPAND); SetSizer (sizer); - _table = new wxFlexGridSizer (3, 6, 6); + _table = new wxFlexGridSizer (4, 6, 6); _table->AddGrowableCol (1, 1); _panel->SetSizer (_table); @@ -83,6 +84,11 @@ JobManagerView::update () r.message = new wxStaticText (_panel, wxID_ANY, std_to_wx ("")); _table->Insert (index + 2, r.message, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6); + + r.details = new wxButton (_panel, wxID_ANY, _("Details...")); + r.details->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (JobManagerView::details_clicked), 0, this); + r.details->Enable (false); + _table->Insert (index + 3, r.details, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6); _job_records[*i] = r; } @@ -104,6 +110,9 @@ JobManagerView::update () _job_records[*i].gauge->SetValue (100); _job_records[*i].message->SetLabel (std_to_wx (st)); _job_records[*i].finalised = true; + if (!(*i)->error_details().empty ()) { + _job_records[*i].details->Enable (true); + } } index += 3; @@ -112,3 +121,17 @@ JobManagerView::update () _table->Layout (); FitInside (); } + +void +JobManagerView::details_clicked (wxCommandEvent& ev) +{ + wxObject* o = ev.GetEventObject (); + + for (map<boost::shared_ptr<Job>, JobRecord>::iterator i = _job_records.begin(); i != _job_records.end(); ++i) { + if (i->second.details == o) { + string s = i->first->error_summary(); + s[0] = toupper (s[0]); + error_dialog (this, String::compose ("%1.\n\n%2", s, i->first->error_details())); + } + } +} |
