Improve GUI when jobs are inserted by other jobs.
authorCarl Hetherington <cth@carlh.net>
Tue, 25 Sep 2012 21:30:16 +0000 (22:30 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 25 Sep 2012 21:30:16 +0000 (22:30 +0100)
src/wx/job_manager_view.cc

index c9e120135af557f449ad80c10be6ab8f57f633fc..1d5c855eada8a990b0cf57dfbd2e89556738faf8 100644 (file)
@@ -67,15 +67,21 @@ JobManagerView::update ()
 {
        list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
 
+       int index = 0;
+
        for (list<shared_ptr<Job> >::iterator i = jobs.begin(); i != jobs.end(); ++i) {
                
                if (_job_records.find (*i) == _job_records.end ()) {
-                       add_label_to_sizer (_table, _panel, (*i)->name ());
+                       wxStaticText* m = new wxStaticText (_panel, wxID_ANY, std_to_wx ((*i)->name ()));
+                       _table->Insert (index, m, 0, wxALIGN_CENTER_VERTICAL | wxALL, 6);
+                       
                        JobRecord r;
                        r.gauge = new wxGauge (_panel, wxID_ANY, 100);
-                       _table->Add (r.gauge, 1, wxEXPAND | wxLEFT | wxRIGHT);
+                       _table->Insert (index + 1, r.gauge, 1, wxEXPAND | wxLEFT | wxRIGHT);
+                       
                        r.informed_of_finish = false;
-                       r.message = add_label_to_sizer (_table, _panel, "", 1);
+                       r.message = new wxStaticText (_panel, wxID_ANY, std_to_wx (""));
+                       _table->Insert (index + 2, r.message, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6);
                        
                        _job_records[*i] = r;
                }
@@ -112,6 +118,8 @@ JobManagerView::update ()
                        
                        _job_records[*i].informed_of_finish = true;
                }
+
+               index += 3;
        }
 
        _table->Layout ();