Changeset 21 for trunk/Packages/Common/UJobProgressView.pas
- Timestamp:
- May 8, 2019, 12:11:40 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UJobProgressView.pas
r1 r21 7 7 uses 8 8 SysUtils, Variants, Classes, Graphics, Controls, Forms, Syncobjs, 9 Dialogs, ComCtrls, StdCtrls, ExtCtrls, Contnrs, UThreading, 9 Dialogs, ComCtrls, StdCtrls, ExtCtrls, Contnrs, UThreading, Math, 10 10 DateUtils; 11 11 … … 13 13 EstimatedTimeShowTreshold = 4; 14 14 EstimatedTimeShowTresholdTotal = 1; 15 MemoLogHeight = 200;16 15 UpdateInterval = 100; // ms 17 16 … … 24 23 FLock: TCriticalSection; 25 24 FOnChange: TNotifyEvent; 25 FText: string; 26 26 FValue: Integer; 27 27 FMax: Integer; 28 28 procedure SetMax(const AValue: Integer); 29 procedure SetText(AValue: string); 29 30 procedure SetValue(const AValue: Integer); 30 31 public … … 35 36 property Value: Integer read FValue write SetValue; 36 37 property Max: Integer read FMax write SetMax; 38 property Text: string read FText write SetText; 37 39 property OnChange: TNotifyEvent read FOnChange write FOnChange; 38 40 end; … … 69 71 end; 70 72 73 TJobs = class(TObjectList) 74 end; 75 71 76 TJobThread = class(TListedThread) 72 77 procedure Execute; override; … … 80 85 TFormJobProgressView = class(TForm) 81 86 ImageList1: TImageList; 87 LabelText: TLabel; 82 88 Label2: TLabel; 83 89 LabelOperation: TLabel; … … 86 92 ListViewJobs: TListView; 87 93 MemoLog: TMemo; 94 PanelText: TPanel; 88 95 PanelProgressTotal: TPanel; 89 96 PanelOperationsTitle: TPanel; … … 94 101 ProgressBarTotal: TProgressBar; 95 102 TimerUpdate: TTimer; 103 procedure FormHide(Sender: TObject); 104 procedure FormShow(Sender: TObject); 105 procedure ReloadJobList; 96 106 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 97 107 procedure FormDestroy(Sender: TObject); … … 100 110 procedure FormCreate(Sender: TObject); 101 111 procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); 112 procedure UpdateHeight; 102 113 public 103 114 JobProgressView: TJobProgressView; … … 118 129 TotalStartTime: TDateTime; 119 130 Log: TStringList; 131 FForm: TFormJobProgressView; 120 132 procedure SetTerminate(const AValue: Boolean); 121 133 procedure UpdateProgress; 122 procedure ReloadJobList;123 procedure StartJobs;124 procedure UpdateHeight;125 134 procedure JobProgressChange(Sender: TObject); 126 135 public 127 Form: TFormJobProgressView; 128 Jobs: TObjectList; // TListObject<TJob> 136 Jobs: TJobs; 129 137 CurrentJob: TJob; 130 138 CurrentJobIndex: Integer; … … 132 140 destructor Destroy; override; 133 141 procedure Clear; 134 procedureAddJob(Title: string; Method: TJobProgressViewMethod;135 NoThreaded: Boolean = False; WaitFor: Boolean = False) ;136 procedure Start (AAutoClose: Boolean = True);142 function AddJob(Title: string; Method: TJobProgressViewMethod; 143 NoThreaded: Boolean = False; WaitFor: Boolean = False): TJob; 144 procedure Start; 137 145 procedure Stop; 138 146 procedure TermSleep(Delay: Integer); 147 property Form: TFormJobProgressView read FForm; 139 148 property Terminate: Boolean read FTerminate write SetTerminate; 140 149 published … … 166 175 STotalEstimatedTime = 'Total estimated time: %s'; 167 176 SFinished = 'Finished'; 168 SOperations = 'Operations';169 177 170 178 procedure Register; … … 172 180 RegisterComponents('Common', [TJobProgressView]); 173 181 end; 182 183 { TJobThread } 174 184 175 185 procedure TJobThread.Execute; … … 190 200 end; 191 201 192 procedure TJobProgressView.AddJob(Title: string; Method: TJobProgressViewMethod; 193 NoThreaded: Boolean = False; WaitFor: Boolean = False); 202 { TFormJobProgressView } 203 204 procedure TFormJobProgressView.UpdateHeight; 194 205 var 195 NewJob: TJob; 196 begin 197 NewJob := TJob.Create; 198 NewJob.ProgressView := Self; 199 NewJob.Title := Title; 200 NewJob.Method := Method; 201 NewJob.NoThreaded := NoThreaded; 202 NewJob.WaitFor := WaitFor; 203 NewJob.Progress.Max := 100; 204 NewJob.Progress.Reset; 205 NewJob.Progress.OnChange := JobProgressChange; 206 Jobs.Add(NewJob); 206 H: Integer; 207 PanelOperationsVisible: Boolean; 208 PanelOperationsHeight: Integer; 209 PanelProgressVisible: Boolean; 210 PanelProgressTotalVisible: Boolean; 211 PanelLogVisible: Boolean; 212 MemoLogHeight: Integer = 200; 213 I: Integer; 214 ItemRect: TRect; 215 MaxH: Integer; 216 begin 217 H := PanelOperationsTitle.Height; 218 PanelOperationsVisible := JobProgressView.Jobs.Count > 0; 219 if PanelOperationsVisible <> PanelOperations.Visible then 220 PanelOperations.Visible := PanelOperationsVisible; 221 if ListViewJobs.Items.Count > 0 then begin 222 Maxh := 0; 223 for I := 0 to ListViewJobs.Items.Count - 1 do 224 begin 225 ItemRect := ListViewJobs.Items[i].DisplayRect(drBounds); 226 Maxh := Max(Maxh, ItemRect.Top + (ItemRect.Bottom - ItemRect.Top)); 227 end; 228 PanelOperationsHeight := Scale96ToScreen(12) + Maxh; 229 end else PanelOperationsHeight := Scale96ToScreen(8); 230 if PanelOperationsHeight <> PanelOperations.Height then 231 PanelOperations.Height := PanelOperationsHeight; 232 if PanelOperationsVisible then 233 H := H + PanelOperations.Height; 234 235 PanelProgressVisible := (JobProgressView.Jobs.Count > 0) and not JobProgressView.Finished; 236 if PanelProgressVisible <> PanelProgress.Visible then 237 PanelProgress.Visible := PanelProgressVisible; 238 if PanelProgressVisible then 239 H := H + PanelProgress.Height; 240 PanelProgressTotalVisible := (JobProgressView.Jobs.Count > 1) and not JobProgressView.Finished; 241 if PanelProgressTotalVisible <> PanelProgressTotal.Visible then 242 PanelProgressTotal.Visible := PanelProgressTotalVisible; 243 if PanelProgressTotalVisible then 244 H := H + PanelProgressTotal.Height; 245 Constraints.MinHeight := H; 246 PanelLogVisible := MemoLog.Lines.Count > 0; 247 if PanelLogVisible <> PanelLog.Visible then 248 PanelLog.Visible := PanelLogVisible; 249 if PanelLogVisible then 250 H := H + Scale96ToScreen(MemoLogHeight); 251 if PanelText.Visible then 252 H := H + PanelText.Height; 253 if Height <> H then begin 254 Height := H; 255 Top := (Screen.Height - H) div 2; 256 end; 257 end; 258 259 procedure TFormJobProgressView.TimerUpdateTimer(Sender: TObject); 260 var 261 ProgressBarPartVisible: Boolean; 262 ProgressBarTotalVisible: Boolean; 263 begin 264 JobProgressView.UpdateProgress; 265 if Visible and (not ProgressBarPart.Visible) and 266 Assigned(JobProgressView.CurrentJob) and 267 (JobProgressView.CurrentJob.Progress.Value > 0) then begin 268 ProgressBarPartVisible := True; 269 if ProgressBarPartVisible <> ProgressBarPart.Visible then 270 ProgressBarPart.Visible := ProgressBarPartVisible; 271 ProgressBarTotalVisible := True; 272 if ProgressBarTotalVisible <> ProgressBarTotal.Visible then 273 ProgressBarTotal.Visible := ProgressBarTotalVisible; 274 end; 275 if not Visible then begin 276 TimerUpdate.Interval := UpdateInterval; 277 if not JobProgressView.OwnerDraw then Show; 278 end; 279 if Assigned(JobProgressView.CurrentJob) then begin 280 LabelText.Caption := JobProgressView.CurrentJob.Progress.Text; 281 if LabelText.Caption <> '' then begin 282 PanelText.Visible := True; 283 UpdateHeight; 284 end; 285 end; 286 end; 287 288 procedure TFormJobProgressView.FormDestroy(Sender:TObject); 289 begin 290 end; 291 292 procedure TFormJobProgressView.ListViewJobsData(Sender: TObject; Item: TListItem); 293 begin 294 if (Item.Index >= 0) and (Item.Index < JobProgressView.Jobs.Count) then 295 with TJob(JobProgressView.Jobs[Item.Index]) do begin 296 Item.Caption := Title; 297 if Item.Index = JobProgressView.CurrentJobIndex then Item.ImageIndex := 1 298 else if Finished then Item.ImageIndex := 0 299 else Item.ImageIndex := 2; 300 Item.Data := JobProgressView.Jobs[Item.Index]; 301 end; 302 end; 303 304 procedure TFormJobProgressView.FormClose(Sender: TObject; 305 var CloseAction: TCloseAction); 306 begin 307 end; 308 309 procedure TFormJobProgressView.FormCreate(Sender: TObject); 310 begin 311 Caption := SPleaseWait; 312 try 313 //Animate1.FileName := ExtractFileDir(UTF8Encode(Application.ExeName)) + 314 // DirectorySeparator + 'horse.avi'; 315 //Animate1.Active := True; 316 except 317 318 end; 319 end; 320 321 procedure TFormJobProgressView.ReloadJobList; 322 begin 323 // Workaround for not showing first line 324 //Form.ListViewJobs.Items.Count := Jobs.Count + 1; 325 //Form.ListViewJobs.Refresh; 326 327 if ListViewJobs.Items.Count <> JobProgressView.Jobs.Count then 328 ListViewJobs.Items.Count := JobProgressView.Jobs.Count; 329 ListViewJobs.Refresh; 330 Application.ProcessMessages; 331 UpdateHeight; 332 end; 333 334 procedure TFormJobProgressView.FormShow(Sender: TObject); 335 begin 336 ReloadJobList; 337 end; 338 339 procedure TFormJobProgressView.FormHide(Sender: TObject); 340 begin 341 JobProgressView.Jobs.Clear; 342 ReloadJobList; 343 end; 344 345 procedure TFormJobProgressView.FormCloseQuery(Sender: TObject; var CanClose: Boolean); 346 begin 347 CanClose := JobProgressView.Finished; 348 JobProgressView.Terminate := True; 349 Caption := SPleaseWait + STerminate; 350 end; 351 352 353 { TJobProgressView } 354 355 function TJobProgressView.AddJob(Title: string; Method: TJobProgressViewMethod; 356 NoThreaded: Boolean = False; WaitFor: Boolean = False): TJob; 357 begin 358 Result := TJob.Create; 359 Result.ProgressView := Self; 360 Result.Title := Title; 361 Result.Method := Method; 362 Result.NoThreaded := NoThreaded; 363 Result.WaitFor := WaitFor; 364 Result.Progress.Max := 100; 365 Result.Progress.Reset; 366 Result.Progress.OnChange := JobProgressChange; 367 Jobs.Add(Result); 207 368 //ReloadJobList; 208 369 end; 209 370 210 procedure TJobProgressView.Start(AAutoClose: Boolean = True); 211 begin 212 AutoClose := AAutoClose; 213 StartJobs; 214 end; 215 216 procedure TJobProgressView.StartJobs; 371 procedure TJobProgressView.Start; 217 372 var 218 373 I: Integer; … … 229 384 Form.MemoLog.Clear; 230 385 386 Form.PanelText.Visible := False; 231 387 Form.LabelEstimatedTimePart.Visible := False; 232 388 Form.LabelEstimatedTimeTotal.Visible := False; … … 258 414 Form.ProgressBarPart.Visible := False; 259 415 //Show; 260 ReloadJobList;416 Form.ReloadJobList; 261 417 Application.ProcessMessages; 262 418 if NoThreaded then begin … … 296 452 //if Visible then Hide; 297 453 Form.MemoLog.Lines.Assign(Log); 298 if (Form.MemoLog.Lines.Count = 0) and AutoClose then begin454 if (Form.MemoLog.Lines.Count = 0) and FAutoClose then begin 299 455 Form.Hide; 300 456 end; 301 Clear;457 if not Form.Visible then Clear; 302 458 Form.Caption := SFinished; 303 459 //LabelEstimatedTimePart.Visible := False; 304 460 Finished := True; 305 461 CurrentJobIndex := -1; 306 ReloadJobList; 307 end; 308 end; 309 310 procedure TJobProgressView.UpdateHeight; 311 var 312 H: Integer; 313 PanelOperationsVisible: Boolean; 314 PanelOperationsHeight: Integer; 315 PanelProgressVisible: Boolean; 316 PanelProgressTotalVisible: Boolean; 317 PanelLogVisible: Boolean; 318 begin 319 with Form do begin 320 H := PanelOperationsTitle.Height; 321 PanelOperationsVisible := Jobs.Count > 0; 322 if PanelOperationsVisible <> PanelOperations.Visible then 323 PanelOperations.Visible := PanelOperationsVisible; 324 PanelOperationsHeight := 8 + 18 * Jobs.Count; 325 if PanelOperationsHeight <> PanelOperations.Height then 326 PanelOperations.Height := PanelOperationsHeight; 327 if PanelOperationsVisible then 328 H := H + PanelOperations.Height; 329 330 PanelProgressVisible := (Jobs.Count > 0) and not Finished; 331 if PanelProgressVisible <> PanelProgress.Visible then 332 PanelProgress.Visible := PanelProgressVisible; 333 if PanelProgressVisible then 334 H := H + PanelProgress.Height; 335 PanelProgressTotalVisible := (Jobs.Count > 1) and not Finished; 336 if PanelProgressTotalVisible <> PanelProgressTotal.Visible then 337 PanelProgressTotal.Visible := PanelProgressTotalVisible; 338 if PanelProgressTotalVisible then 339 H := H + PanelProgressTotal.Height; 340 Constraints.MinHeight := H; 341 PanelLogVisible := MemoLog.Lines.Count > 0; 342 if PanelLogVisible <> PanelLog.Visible then 343 PanelLog.Visible := PanelLogVisible; 344 if PanelLogVisible then 345 H := H + MemoLogHeight; 346 if Height <> H then Height := H; 462 Form.ReloadJobList; 347 463 end; 348 464 end; … … 352 468 if Assigned(FOnOwnerDraw) then 353 469 FOnOwnerDraw(Self); 354 end;355 356 procedure TFormJobProgressView.TimerUpdateTimer(Sender: TObject);357 var358 ProgressBarPartVisible: Boolean;359 ProgressBarTotalVisible: Boolean;360 begin361 JobProgressView.UpdateProgress;362 if Visible and (not ProgressBarPart.Visible) and363 Assigned(JobProgressView.CurrentJob) and364 (JobProgressView.CurrentJob.Progress.Value > 0) then begin365 ProgressBarPartVisible := True;366 if ProgressBarPartVisible <> ProgressBarPart.Visible then367 ProgressBarPart.Visible := ProgressBarPartVisible;368 ProgressBarTotalVisible := True;369 if ProgressBarTotalVisible <> ProgressBarTotal.Visible then370 ProgressBarTotal.Visible := ProgressBarTotalVisible;371 end;372 if not Visible then begin373 TimerUpdate.Interval := UpdateInterval;374 if not JobProgressView.OwnerDraw then Show;375 end;376 end;377 378 procedure TFormJobProgressView.FormDestroy(Sender:TObject);379 begin380 end;381 382 procedure TFormJobProgressView.ListViewJobsData(Sender: TObject; Item: TListItem);383 begin384 if (Item.Index >= 0) and (Item.Index < JobProgressView.Jobs.Count) then385 with TJob(JobProgressView.Jobs[Item.Index]) do begin386 Item.Caption := Title;387 if Item.Index = JobProgressView.CurrentJobIndex then Item.ImageIndex := 1388 else if Finished then Item.ImageIndex := 0389 else Item.ImageIndex := 2;390 Item.Data := JobProgressView.Jobs[Item.Index];391 end;392 end;393 394 procedure TFormJobProgressView.FormClose(Sender: TObject;395 var CloseAction: TCloseAction);396 begin397 ListViewJobs.Clear;398 end;399 400 procedure TFormJobProgressView.FormCreate(Sender: TObject);401 begin402 Caption := SPleaseWait;403 try404 //Animate1.FileName := ExtractFileDir(UTF8Encode(Application.ExeName)) +405 // DirectorySeparator + 'horse.avi';406 //Animate1.Active := True;407 except408 409 end;410 470 end; 411 471 … … 426 486 Sleep(Quantum); 427 487 end; 428 end;429 430 procedure TFormJobProgressView.FormCloseQuery(Sender: TObject; var CanClose: Boolean);431 begin432 CanClose := JobProgressView.Finished;433 JobProgressView.Terminate := True;434 Caption := SPleaseWait + STerminate;435 488 end; 436 489 … … 490 543 end; 491 544 492 procedure TJobProgressView.ReloadJobList;493 begin494 UpdateHeight;495 // Workaround for not showing first line496 Form.ListViewJobs.Items.Count := Jobs.Count + 1;497 Form.ListViewJobs.Refresh;498 499 if Form.ListViewJobs.Items.Count <> Jobs.Count then500 Form.ListViewJobs.Items.Count := Jobs.Count;501 Form.ListViewJobs.Refresh;502 //Application.ProcessMessages;503 end;504 505 545 constructor TJobProgressView.Create(TheOwner: TComponent); 506 546 begin 507 547 inherited; 508 548 if not (csDesigning in ComponentState) then begin 509 F orm := TFormJobProgressView.Create(Self);510 F orm.JobProgressView := Self;511 end; 512 Jobs := T ObjectList.Create;549 FForm := TFormJobProgressView.Create(Self); 550 FForm.JobProgressView := Self; 551 end; 552 Jobs := TJobs.Create; 513 553 Log := TStringList.Create; 514 554 //PanelOperationsTitle.Height := 80; 515 ShowDelay := 0; //1000; // ms 555 AutoClose := True; 556 ShowDelay := 0; 516 557 end; 517 558 … … 519 560 begin 520 561 Jobs.Clear; 562 Log.Clear; 521 563 //ReloadJobList; 522 564 end; … … 528 570 inherited; 529 571 end; 572 573 { TProgress } 530 574 531 575 procedure TProgress.SetMax(const AValue: Integer); … … 536 580 if FMax < 1 then FMax := 1; 537 581 if FValue >= FMax then FValue := FMax; 582 finally 583 FLock.Release; 584 end; 585 end; 586 587 procedure TProgress.SetText(AValue: string); 588 begin 589 try 590 FLock.Acquire; 591 if FText = AValue then Exit; 592 FText := AValue; 538 593 finally 539 594 FLock.Release; … … 563 618 end; 564 619 565 { TProgress }566 567 620 procedure TProgress.Increment; 568 621 begin
Note:
See TracChangeset
for help on using the changeset viewer.