Changeset 200
- Timestamp:
- Aug 31, 2018, 3:38:01 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r187 r200 14 14 OnDestroy = FormDestroy 15 15 OnHide = FormHide 16 OnResize = FormResize 16 17 OnShow = FormShow 17 18 LCLVersion = '1.8.2.0' … … 104 105 Top = 0 105 106 Width = 847 107 AutoSize = True 106 108 Bands = < 107 109 item … … 140 142 Height = 28 141 143 Top = 5 142 Width = 13 2144 Width = 135 143 145 Align = alNone 144 146 AutoSize = True … … 182 184 Height = 28 183 185 Top = 5 184 Width = 1 17186 Width = 120 185 187 Align = alNone 186 188 AutoSize = True … … 222 224 Height = 28 223 225 Top = 5 224 Width = 59226 Width = 62 225 227 Align = alNone 226 228 AutoSize = True … … 252 254 Height = 28 253 255 Top = 5 254 Width = 88256 Width = 91 255 257 Align = alNone 256 258 AutoSize = True -
trunk/Forms/UFormMain.pas
r184 r200 125 125 procedure EditSearchChange(Sender: TObject); 126 126 procedure FormHide(Sender: TObject); 127 procedure FormResize(Sender: TObject); 127 128 procedure FormShow(Sender: TObject); 128 129 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); … … 228 229 end; 229 230 231 procedure TFormMain.FormResize(Sender: TObject); 232 begin 233 CoolBar1.AutosizeBands; 234 end; 235 230 236 procedure TFormMain.FormClose(Sender: TObject; var CloseAction: TCloseAction); 231 237 begin … … 517 523 ListViewFilter1.StringGrid.SetFocus; 518 524 end; 525 Core.ScaleDPI1.ScaleControl(CoolBar1, Core.ScaleDPI1.DesignDPI); 526 CoolBar1.AutosizeBands; 519 527 end; 520 528 -
trunk/Languages/AcronymDecoder.cs.po
r199 r200 1101 1101 msgid "Process import sources" 1102 1102 msgstr "Zpracovat zdroje importu" 1103 -
trunk/Packages/Common/Languages/UJobProgressView.cs.po
r181 r200 24 24 msgstr "Dokončené" 25 25 26 #: ujobprogressview.soperations 27 msgid "Operations:" 28 msgstr "" 29 26 30 #: ujobprogressview.spleasewait 27 31 msgid "Please wait..." -
trunk/Packages/Common/Languages/UJobProgressView.po
r181 r200 14 14 msgstr "" 15 15 16 #: ujobprogressview.soperations 17 msgid "Operations:" 18 msgstr "" 19 16 20 #: ujobprogressview.spleasewait 17 21 msgid "Please wait..." -
trunk/Packages/Common/UCommon.pas
r187 r200 72 72 function MergeArray(A, B: array of string): TArrayOfString; 73 73 function LoadFileToStr(const FileName: TFileName): AnsiString; 74 procedure SaveStringToFile(S, FileName: string); 74 75 procedure SearchFiles(AList: TStrings; Dir: string; 75 76 FilterMethod: TFilterMethodMethod = nil); 76 77 function GetStringPart(var Text: string; Separator: string): string; 78 function StripTags(const S: string): string; 77 79 function PosFromIndex(SubStr: string; Text: string; 78 80 StartIndex: Integer): Integer; … … 527 529 end; 528 530 531 procedure SaveStringToFile(S, FileName: string); 532 var 533 F: TextFile; 534 begin 535 AssignFile(F, FileName); 536 try 537 ReWrite(F); 538 Write(F, S); 539 finally 540 CloseFile(F); 541 end; 542 end; 543 529 544 procedure SearchFiles(AList: TStrings; Dir: string; 530 545 FilterMethod: TFilterMethodMethod = nil); … … 561 576 Result := Trim(Result); 562 577 Text := Trim(Text); 578 end; 579 580 function StripTags(const S: string): string; 581 var 582 Len: Integer; 583 584 function ReadUntil(const ReadFrom: Integer; const C: Char): Integer; 585 var 586 J: Integer; 587 begin 588 for J := ReadFrom to Len do 589 if (S[j] = C) then 590 begin 591 Result := J; 592 Exit; 593 end; 594 Result := Len + 1; 595 end; 596 597 var 598 I, APos: Integer; 599 begin 600 Len := Length(S); 601 I := 0; 602 Result := ''; 603 while (I <= Len) do begin 604 Inc(I); 605 APos := ReadUntil(I, '<'); 606 Result := Result + Copy(S, I, APos - i); 607 I := ReadUntil(APos + 1, '>'); 608 end; 563 609 end; 564 610 … … 608 654 end; 609 655 656 610 657 initialization 611 658 -
trunk/Packages/Common/UJobProgressView.lfm
r181 r200 1 1 object FormJobProgressView: TFormJobProgressView 2 2 Left = 467 3 Height = 2463 Height = 345 4 4 Top = 252 5 Width = 3285 Width = 539 6 6 BorderIcons = [biSystemMenu] 7 ClientHeight = 2468 ClientWidth = 3287 ClientHeight = 345 8 ClientWidth = 539 9 9 DesignTimePPI = 120 10 Font.Height = -1111 Font.Name = 'MS Sans Serif'12 10 OnClose = FormClose 13 11 OnCloseQuery = FormCloseQuery 14 12 OnCreate = FormCreate 15 13 OnDestroy = FormDestroy 14 OnHide = FormHide 15 OnShow = FormShow 16 16 Position = poScreenCenter 17 17 LCLVersion = '1.8.2.0' 18 18 object PanelOperationsTitle: TPanel 19 19 Left = 0 20 Height = 2420 Height = 32 21 21 Top = 0 22 Width = 32823 Align = alTop 24 BevelOuter = bvNone 25 ClientHeight = 2426 ClientWidth = 32822 Width = 539 23 Align = alTop 24 BevelOuter = bvNone 25 ClientHeight = 32 26 ClientWidth = 539 27 27 FullRepaint = False 28 28 TabOrder = 0 29 29 object LabelOperation: TLabel 30 30 Left = 8 31 Height = 1331 Height = 20 32 32 Top = 8 33 Width = 6633 Width = 76 34 34 Caption = 'Operations:' 35 Font.Height = -1136 Font.Name = 'MS Sans Serif'37 Font.Style = [fsBold]38 35 ParentColor = False 39 36 ParentFont = False … … 42 39 object PanelLog: TPanel 43 40 Left = 0 44 Height = 1 2245 Top = 12446 Width = 32841 Height = 133 42 Top = 212 43 Width = 539 47 44 Align = alClient 48 45 BevelOuter = bvSpace 49 ClientHeight = 1 2250 ClientWidth = 32846 ClientHeight = 133 47 ClientWidth = 539 51 48 TabOrder = 1 52 49 object MemoLog: TMemo 53 50 Left = 8 54 Height = 1 0651 Height = 117 55 52 Top = 8 56 Width = 31253 Width = 523 57 54 Anchors = [akTop, akLeft, akRight, akBottom] 58 55 ReadOnly = True … … 63 60 object PanelProgress: TPanel 64 61 Left = 0 65 Height = 3866 Top = 5067 Width = 32868 Align = alTop 69 BevelOuter = bvNone 70 ClientHeight = 3871 ClientWidth = 32862 Height = 54 63 Top = 106 64 Width = 539 65 Align = alTop 66 BevelOuter = bvNone 67 ClientHeight = 54 68 ClientWidth = 539 72 69 TabOrder = 2 73 70 object ProgressBarPart: TProgressBar 74 Left = 875 Height = 1776 Top = 1677 Width = 31271 Left = 10 72 Height = 24 73 Top = 24 74 Width = 523 78 75 Anchors = [akTop, akLeft, akRight] 79 76 TabOrder = 0 … … 81 78 object LabelEstimatedTimePart: TLabel 82 79 Left = 8 83 Height = 1380 Height = 20 84 81 Top = -2 85 Width = 7182 Width = 103 86 83 Caption = 'Estimated time:' 87 84 ParentColor = False … … 90 87 object PanelOperations: TPanel 91 88 Left = 0 92 Height = 2693 Top = 2494 Width = 32895 Align = alTop 96 BevelOuter = bvNone 97 ClientHeight = 2698 ClientWidth = 32889 Height = 42 90 Top = 64 91 Width = 539 92 Align = alTop 93 BevelOuter = bvNone 94 ClientHeight = 42 95 ClientWidth = 539 99 96 FullRepaint = False 100 97 TabOrder = 3 101 98 object ListViewJobs: TListView 102 99 Left = 8 103 Height = 16100 Height = 32 104 101 Top = 5 105 Width = 312102 Width = 523 106 103 Anchors = [akTop, akLeft, akRight, akBottom] 107 104 AutoWidthLastColumn = True … … 110 107 Columns = < 111 108 item 112 Width = 312109 Width = 523 113 110 end> 114 111 OwnerData = True … … 123 120 object PanelProgressTotal: TPanel 124 121 Left = 0 125 Height = 36126 Top = 88127 Width = 328128 Align = alTop 129 BevelOuter = bvNone 130 ClientHeight = 36131 ClientWidth = 328122 Height = 52 123 Top = 160 124 Width = 539 125 Align = alTop 126 BevelOuter = bvNone 127 ClientHeight = 52 128 ClientWidth = 539 132 129 TabOrder = 4 133 130 object LabelEstimatedTimeTotal: TLabel 134 131 Left = 8 135 Height = 13132 Height = 20 136 133 Top = 0 137 Width = 97134 Width = 141 138 135 Caption = 'Total estimated time:' 139 136 ParentColor = False … … 141 138 object ProgressBarTotal: TProgressBar 142 139 Left = 8 143 Height = 16144 Top = 16145 Width = 312140 Height = 24 141 Top = 24 142 Width = 523 146 143 Anchors = [akTop, akLeft, akRight] 147 144 TabOrder = 0 145 end 146 end 147 object PanelText: TPanel 148 Left = 0 149 Height = 32 150 Top = 32 151 Width = 539 152 Align = alTop 153 BevelOuter = bvNone 154 ClientHeight = 32 155 ClientWidth = 539 156 TabOrder = 5 157 object LabelText: TLabel 158 Left = 8 159 Height = 24 160 Top = 8 161 Width = 525 162 Anchors = [akTop, akLeft, akRight] 163 AutoSize = False 164 ParentColor = False 148 165 end 149 166 end -
trunk/Packages/Common/UJobProgressView.pas
r181 r200 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'; 177 SOperations = 'Operations:'; 168 178 169 179 procedure Register; … … 171 181 RegisterComponents('Common', [TJobProgressView]); 172 182 end; 183 184 { TJobThread } 173 185 174 186 procedure TJobThread.Execute; … … 189 201 end; 190 202 191 procedure TJobProgressView.AddJob(Title: string; Method: TJobProgressViewMethod; 192 NoThreaded: Boolean = False; WaitFor: Boolean = False); 203 { TFormJobProgressView } 204 205 procedure TFormJobProgressView.UpdateHeight; 193 206 var 194 NewJob: TJob; 195 begin 196 NewJob := TJob.Create; 197 NewJob.ProgressView := Self; 198 NewJob.Title := Title; 199 NewJob.Method := Method; 200 NewJob.NoThreaded := NoThreaded; 201 NewJob.WaitFor := WaitFor; 202 NewJob.Progress.Max := 100; 203 NewJob.Progress.Reset; 204 NewJob.Progress.OnChange := JobProgressChange; 205 Jobs.Add(NewJob); 207 H: Integer; 208 PanelOperationsVisible: Boolean; 209 PanelOperationsHeight: Integer; 210 PanelProgressVisible: Boolean; 211 PanelProgressTotalVisible: Boolean; 212 PanelLogVisible: Boolean; 213 MemoLogHeight: Integer = 200; 214 I: Integer; 215 ItemRect: TRect; 216 MaxH: Integer; 217 begin 218 H := PanelOperationsTitle.Height; 219 PanelOperationsVisible := JobProgressView.Jobs.Count > 0; 220 if PanelOperationsVisible <> PanelOperations.Visible then 221 PanelOperations.Visible := PanelOperationsVisible; 222 if ListViewJobs.Items.Count > 0 then begin 223 Maxh := 0; 224 for I := 0 to ListViewJobs.Items.Count - 1 do 225 begin 226 ItemRect := ListViewJobs.Items[i].DisplayRect(drBounds); 227 Maxh := Max(Maxh, ItemRect.Top + (ItemRect.Bottom - ItemRect.Top)); 228 end; 229 PanelOperationsHeight := Scale96ToScreen(12) + Maxh; 230 end else PanelOperationsHeight := Scale96ToScreen(8); 231 if PanelOperationsHeight <> PanelOperations.Height then 232 PanelOperations.Height := PanelOperationsHeight; 233 if PanelOperationsVisible then 234 H := H + PanelOperations.Height; 235 236 PanelProgressVisible := (JobProgressView.Jobs.Count > 0) and not JobProgressView.Finished; 237 if PanelProgressVisible <> PanelProgress.Visible then 238 PanelProgress.Visible := PanelProgressVisible; 239 if PanelProgressVisible then 240 H := H + PanelProgress.Height; 241 PanelProgressTotalVisible := (JobProgressView.Jobs.Count > 1) and not JobProgressView.Finished; 242 if PanelProgressTotalVisible <> PanelProgressTotal.Visible then 243 PanelProgressTotal.Visible := PanelProgressTotalVisible; 244 if PanelProgressTotalVisible then 245 H := H + PanelProgressTotal.Height; 246 Constraints.MinHeight := H; 247 PanelLogVisible := MemoLog.Lines.Count > 0; 248 if PanelLogVisible <> PanelLog.Visible then 249 PanelLog.Visible := PanelLogVisible; 250 if PanelLogVisible then 251 H := H + Scale96ToScreen(MemoLogHeight); 252 if PanelText.Visible then 253 H := H + PanelText.Height; 254 if Height <> H then begin 255 Height := H; 256 Top := (Screen.Height - H) div 2; 257 end; 258 end; 259 260 procedure TFormJobProgressView.TimerUpdateTimer(Sender: TObject); 261 var 262 ProgressBarPartVisible: Boolean; 263 ProgressBarTotalVisible: Boolean; 264 begin 265 JobProgressView.UpdateProgress; 266 if Visible and (not ProgressBarPart.Visible) and 267 Assigned(JobProgressView.CurrentJob) and 268 (JobProgressView.CurrentJob.Progress.Value > 0) then begin 269 ProgressBarPartVisible := True; 270 if ProgressBarPartVisible <> ProgressBarPart.Visible then 271 ProgressBarPart.Visible := ProgressBarPartVisible; 272 ProgressBarTotalVisible := True; 273 if ProgressBarTotalVisible <> ProgressBarTotal.Visible then 274 ProgressBarTotal.Visible := ProgressBarTotalVisible; 275 end; 276 if not Visible then begin 277 TimerUpdate.Interval := UpdateInterval; 278 if not JobProgressView.OwnerDraw then Show; 279 end; 280 if Assigned(JobProgressView.CurrentJob) then begin 281 LabelText.Caption := JobProgressView.CurrentJob.Progress.Text; 282 if LabelText.Caption <> '' then begin 283 PanelText.Visible := True; 284 UpdateHeight; 285 end; 286 end; 287 end; 288 289 procedure TFormJobProgressView.FormDestroy(Sender:TObject); 290 begin 291 end; 292 293 procedure TFormJobProgressView.ListViewJobsData(Sender: TObject; Item: TListItem); 294 begin 295 if (Item.Index >= 0) and (Item.Index < JobProgressView.Jobs.Count) then 296 with TJob(JobProgressView.Jobs[Item.Index]) do begin 297 Item.Caption := Title; 298 if Item.Index = JobProgressView.CurrentJobIndex then Item.ImageIndex := 1 299 else if Finished then Item.ImageIndex := 0 300 else Item.ImageIndex := 2; 301 Item.Data := JobProgressView.Jobs[Item.Index]; 302 end; 303 end; 304 305 procedure TFormJobProgressView.FormClose(Sender: TObject; 306 var CloseAction: TCloseAction); 307 begin 308 end; 309 310 procedure TFormJobProgressView.FormCreate(Sender: TObject); 311 begin 312 Caption := SPleaseWait; 313 try 314 //Animate1.FileName := ExtractFileDir(UTF8Encode(Application.ExeName)) + 315 // DirectorySeparator + 'horse.avi'; 316 //Animate1.Active := True; 317 except 318 319 end; 320 end; 321 322 procedure TFormJobProgressView.ReloadJobList; 323 begin 324 // Workaround for not showing first line 325 //Form.ListViewJobs.Items.Count := Jobs.Count + 1; 326 //Form.ListViewJobs.Refresh; 327 328 if ListViewJobs.Items.Count <> JobProgressView.Jobs.Count then 329 ListViewJobs.Items.Count := JobProgressView.Jobs.Count; 330 ListViewJobs.Refresh; 331 Application.ProcessMessages; 332 UpdateHeight; 333 end; 334 335 procedure TFormJobProgressView.FormShow(Sender: TObject); 336 begin 337 ReloadJobList; 338 end; 339 340 procedure TFormJobProgressView.FormHide(Sender: TObject); 341 begin 342 JobProgressView.Jobs.Clear; 343 ReloadJobList; 344 end; 345 346 procedure TFormJobProgressView.FormCloseQuery(Sender: TObject; var CanClose: Boolean); 347 begin 348 CanClose := JobProgressView.Finished; 349 JobProgressView.Terminate := True; 350 Caption := SPleaseWait + STerminate; 351 end; 352 353 354 { TJobProgressView } 355 356 function TJobProgressView.AddJob(Title: string; Method: TJobProgressViewMethod; 357 NoThreaded: Boolean = False; WaitFor: Boolean = False): TJob; 358 begin 359 Result := TJob.Create; 360 Result.ProgressView := Self; 361 Result.Title := Title; 362 Result.Method := Method; 363 Result.NoThreaded := NoThreaded; 364 Result.WaitFor := WaitFor; 365 Result.Progress.Max := 100; 366 Result.Progress.Reset; 367 Result.Progress.OnChange := JobProgressChange; 368 Jobs.Add(Result); 206 369 //ReloadJobList; 207 370 end; 208 371 209 procedure TJobProgressView.Start(AAutoClose: Boolean = True); 210 begin 211 AutoClose := AAutoClose; 212 StartJobs; 213 end; 214 215 procedure TJobProgressView.StartJobs; 372 procedure TJobProgressView.Start; 216 373 var 217 374 I: Integer; … … 228 385 Form.MemoLog.Clear; 229 386 387 Form.PanelText.Visible := False; 230 388 Form.LabelEstimatedTimePart.Visible := False; 231 389 Form.LabelEstimatedTimeTotal.Visible := False; … … 257 415 Form.ProgressBarPart.Visible := False; 258 416 //Show; 259 ReloadJobList;417 Form.ReloadJobList; 260 418 Application.ProcessMessages; 261 419 if NoThreaded then begin … … 295 453 //if Visible then Hide; 296 454 Form.MemoLog.Lines.Assign(Log); 297 if (Form.MemoLog.Lines.Count = 0) and AutoClose then begin455 if (Form.MemoLog.Lines.Count = 0) and FAutoClose then begin 298 456 Form.Hide; 299 457 end; 300 Clear;458 if not Form.Visible then Clear; 301 459 Form.Caption := SFinished; 302 460 //LabelEstimatedTimePart.Visible := False; 303 461 Finished := True; 304 462 CurrentJobIndex := -1; 305 ReloadJobList; 306 end; 307 end; 308 309 procedure TJobProgressView.UpdateHeight; 310 var 311 H: Integer; 312 PanelOperationsVisible: Boolean; 313 PanelOperationsHeight: Integer; 314 PanelProgressVisible: Boolean; 315 PanelProgressTotalVisible: Boolean; 316 PanelLogVisible: Boolean; 317 begin 318 with Form do begin 319 H := PanelOperationsTitle.Height; 320 PanelOperationsVisible := Jobs.Count > 0; 321 if PanelOperationsVisible <> PanelOperations.Visible then 322 PanelOperations.Visible := PanelOperationsVisible; 323 PanelOperationsHeight := 8 + 18 * Jobs.Count; 324 if PanelOperationsHeight <> PanelOperations.Height then 325 PanelOperations.Height := PanelOperationsHeight; 326 if PanelOperationsVisible then 327 H := H + PanelOperations.Height; 328 329 PanelProgressVisible := (Jobs.Count > 0) and not Finished; 330 if PanelProgressVisible <> PanelProgress.Visible then 331 PanelProgress.Visible := PanelProgressVisible; 332 if PanelProgressVisible then 333 H := H + PanelProgress.Height; 334 PanelProgressTotalVisible := (Jobs.Count > 1) and not Finished; 335 if PanelProgressTotalVisible <> PanelProgressTotal.Visible then 336 PanelProgressTotal.Visible := PanelProgressTotalVisible; 337 if PanelProgressTotalVisible then 338 H := H + PanelProgressTotal.Height; 339 Constraints.MinHeight := H; 340 PanelLogVisible := MemoLog.Lines.Count > 0; 341 if PanelLogVisible <> PanelLog.Visible then 342 PanelLog.Visible := PanelLogVisible; 343 if PanelLogVisible then 344 H := H + MemoLogHeight; 345 if Height <> H then Height := H; 463 Form.ReloadJobList; 346 464 end; 347 465 end; … … 351 469 if Assigned(FOnOwnerDraw) then 352 470 FOnOwnerDraw(Self); 353 end;354 355 procedure TFormJobProgressView.TimerUpdateTimer(Sender: TObject);356 var357 ProgressBarPartVisible: Boolean;358 ProgressBarTotalVisible: Boolean;359 begin360 JobProgressView.UpdateProgress;361 if Visible and (not ProgressBarPart.Visible) and362 Assigned(JobProgressView.CurrentJob) and363 (JobProgressView.CurrentJob.Progress.Value > 0) then begin364 ProgressBarPartVisible := True;365 if ProgressBarPartVisible <> ProgressBarPart.Visible then366 ProgressBarPart.Visible := ProgressBarPartVisible;367 ProgressBarTotalVisible := True;368 if ProgressBarTotalVisible <> ProgressBarTotal.Visible then369 ProgressBarTotal.Visible := ProgressBarTotalVisible;370 end;371 if not Visible then begin372 TimerUpdate.Interval := UpdateInterval;373 if not JobProgressView.OwnerDraw then Show;374 end;375 end;376 377 procedure TFormJobProgressView.FormDestroy(Sender:TObject);378 begin379 end;380 381 procedure TFormJobProgressView.ListViewJobsData(Sender: TObject; Item: TListItem);382 begin383 if (Item.Index >= 0) and (Item.Index < JobProgressView.Jobs.Count) then384 with TJob(JobProgressView.Jobs[Item.Index]) do begin385 Item.Caption := Title;386 if Item.Index = JobProgressView.CurrentJobIndex then Item.ImageIndex := 1387 else if Finished then Item.ImageIndex := 0388 else Item.ImageIndex := 2;389 Item.Data := JobProgressView.Jobs[Item.Index];390 end;391 end;392 393 procedure TFormJobProgressView.FormClose(Sender: TObject;394 var CloseAction: TCloseAction);395 begin396 ListViewJobs.Clear;397 end;398 399 procedure TFormJobProgressView.FormCreate(Sender: TObject);400 begin401 Caption := SPleaseWait;402 try403 //Animate1.FileName := ExtractFileDir(UTF8Encode(Application.ExeName)) +404 // DirectorySeparator + 'horse.avi';405 //Animate1.Active := True;406 except407 408 end;409 471 end; 410 472 … … 425 487 Sleep(Quantum); 426 488 end; 427 end;428 429 procedure TFormJobProgressView.FormCloseQuery(Sender: TObject; var CanClose: Boolean);430 begin431 CanClose := JobProgressView.Finished;432 JobProgressView.Terminate := True;433 Caption := SPleaseWait + STerminate;434 489 end; 435 490 … … 489 544 end; 490 545 491 procedure TJobProgressView.ReloadJobList;492 begin493 UpdateHeight;494 // Workaround for not showing first line495 Form.ListViewJobs.Items.Count := Jobs.Count + 1;496 Form.ListViewJobs.Refresh;497 498 if Form.ListViewJobs.Items.Count <> Jobs.Count then499 Form.ListViewJobs.Items.Count := Jobs.Count;500 Form.ListViewJobs.Refresh;501 //Application.ProcessMessages;502 end;503 504 546 constructor TJobProgressView.Create(TheOwner: TComponent); 505 547 begin 506 548 inherited; 507 549 if not (csDesigning in ComponentState) then begin 508 F orm := TFormJobProgressView.Create(Self);509 F orm.JobProgressView := Self;510 end; 511 Jobs := T ObjectList.Create;550 FForm := TFormJobProgressView.Create(Self); 551 FForm.JobProgressView := Self; 552 end; 553 Jobs := TJobs.Create; 512 554 Log := TStringList.Create; 513 555 //PanelOperationsTitle.Height := 80; 514 ShowDelay := 0; //1000; // ms 556 AutoClose := True; 557 ShowDelay := 0; 515 558 end; 516 559 … … 518 561 begin 519 562 Jobs.Clear; 563 Log.Clear; 520 564 //ReloadJobList; 521 565 end; … … 527 571 inherited; 528 572 end; 573 574 { TProgress } 529 575 530 576 procedure TProgress.SetMax(const AValue: Integer); … … 535 581 if FMax < 1 then FMax := 1; 536 582 if FValue >= FMax then FValue := FMax; 583 finally 584 FLock.Release; 585 end; 586 end; 587 588 procedure TProgress.SetText(AValue: string); 589 begin 590 try 591 FLock.Acquire; 592 if FText = AValue then Exit; 593 FText := AValue; 537 594 finally 538 595 FLock.Release; … … 562 619 end; 563 620 564 { TProgress }565 566 621 procedure TProgress.Increment; 567 622 begin -
trunk/Packages/Common/ULastOpenedList.pas
r181 r200 30 30 procedure SaveToXMLConfig(XMLConfig: TXMLConfig; Path: string); 31 31 procedure AddItem(FileName: string); 32 function GetFirstFileName: string; 32 33 published 33 34 property MaxCount: Integer read FMaxCount write SetMaxCount; … … 185 186 end; 186 187 188 function TLastOpenedList.GetFirstFileName: string; 189 begin 190 if Items.Count > 0 then Result := Items[0] 191 else Result := ''; 192 end; 193 187 194 end. 188 195 -
trunk/Packages/Common/UMemory.pas
r3 r200 24 24 constructor Create; 25 25 destructor Destroy; override; 26 procedure WriteMemory(Position: Integer; Memory: TMemory); 27 procedure ReadMemory(Position: Integer; Memory: TMemory); 26 28 property Data: PByte read FData; 27 29 property Size: Integer read FSize write SetSize; … … 108 110 end; 109 111 112 procedure TMemory.WriteMemory(Position: Integer; Memory: TMemory); 113 begin 114 Move(Memory.FData, PByte(@FData + Position)^, Memory.Size); 115 end; 116 117 procedure TMemory.ReadMemory(Position: Integer; Memory: TMemory); 118 begin 119 Move(PByte(@FData + Position)^, Memory.FData, Memory.Size); 120 end; 121 110 122 end. 111 123 -
trunk/Packages/Common/UPersistentForm.pas
r181 r200 8 8 9 9 uses 10 Classes, SysUtils, Forms, URegistry, LCLIntf, Registry, Controls, ComCtrls; 10 Classes, SysUtils, Forms, URegistry, LCLIntf, Registry, Controls, ComCtrls, 11 ExtCtrls; 11 12 12 13 type … … 71 72 end; 72 73 74 if (Control is TPanel) then begin 75 with Form, TRegistryEx.Create do 76 try 77 RootKey := RegistryContext.RootKey; 78 OpenKey(RegistryContext.Key + '\Forms\' + Form.Name + '\' + Control.Name, True); 79 if (TPanel(Control).Align = alRight) or (TPanel(Control).Align = alLeft) then begin 80 if ValueExists('Width') then 81 TPanel(Control).Width := ReadInteger('Width'); 82 end; 83 if (TPanel(Control).Align = alTop) or (TPanel(Control).Align = alBottom) then begin 84 if ValueExists('Height') then 85 TPanel(Control).Height := ReadInteger('Height'); 86 end; 87 finally 88 Free; 89 end; 90 end; 91 73 92 if Control is TWinControl then begin 74 93 WinControl := TWinControl(Control); … … 95 114 for I := 0 to TListView(Control).Columns.Count - 1 do begin 96 115 WriteInteger('ColWidth' + IntToStr(I), TListView(Control).Columns[I].Width); 116 end; 117 finally 118 Free; 119 end; 120 end; 121 122 if (Control is TPanel) then begin 123 with Form, TRegistryEx.Create do 124 try 125 RootKey := RegistryContext.RootKey; 126 OpenKey(RegistryContext.Key + '\Forms\' + Form.Name + '\' + Control.Name, True); 127 if (TPanel(Control).Align = alRight) or (TPanel(Control).Align = alLeft) then begin 128 WriteInteger('Width', TPanel(Control).Width); 129 end; 130 if (TPanel(Control).Align = alTop) or (TPanel(Control).Align = alBottom) then begin 131 WriteInteger('Height', TPanel(Control).Height); 97 132 end; 98 133 finally -
trunk/Packages/Common/UScaleDPI.pas
r181 r200 289 289 //OldAutoSize: Boolean; 290 290 begin 291 //if not (Control is TCustomPage) then 292 // Resize childs first 293 if Control is TWinControl then begin 294 WinControl := TWinControl(Control); 295 if WinControl.ControlCount > 0 then begin 296 for I := 0 to WinControl.ControlCount - 1 do begin 297 if WinControl.Controls[I] is TControl then begin 298 ScaleControl(WinControl.Controls[I], FromDPI); 299 end; 300 end; 301 end; 302 end; 303 291 304 //if Control is TMemo then Exit; 292 305 //if Control is TForm then … … 340 353 end; 341 354 342 //if not (Control is TCustomPage) then343 if Control is TWinControl then begin344 WinControl := TWinControl(Control);345 if WinControl.ControlCount > 0 then begin346 for I := 0 to WinControl.ControlCount - 1 do begin347 if WinControl.Controls[I] is TControl then begin348 ScaleControl(WinControl.Controls[I], FromDPI);349 end;350 end;351 end;352 end;353 355 //if Control is TForm then 354 356 // Control.EnableAutoSizing; -
trunk/Packages/Common/UXMLUtils.pas
r181 r200 7 7 uses 8 8 {$IFDEF WINDOWS}Windows,{$ENDIF} 9 Classes, SysUtils, DateUtils, DOM ;9 Classes, SysUtils, DateUtils, DOM, xmlread; 10 10 11 11 function XMLTimeToDateTime(XMLDateTime: string): TDateTime; … … 21 21 function ReadString(Node: TDOMNode; Name: string; DefaultValue: string): string; 22 22 function ReadDateTime(Node: TDOMNode; Name: string; DefaultValue: TDateTime): TDateTime; 23 procedure ReadXMLFileParser(out Doc: TXMLDocument; FileName: string); 23 24 24 25 25 26 implementation 27 28 procedure ReadXMLFileParser(out Doc: TXMLDocument; FileName: string); 29 var 30 Parser: TDOMParser; 31 Src: TXMLInputSource; 32 InFile: TFileStream; 33 begin 34 try 35 InFile := TFileStream.Create(FileName, fmOpenRead); 36 Src := TXMLInputSource.Create(InFile); 37 Parser := TDOMParser.Create; 38 Parser.Options.PreserveWhitespace := True; 39 Parser.Parse(Src, Doc); 40 finally 41 Src.Free; 42 Parser.Free; 43 InFile.Free; 44 end; 45 end; 26 46 27 47 function GetTimeZoneBias: Integer; -
trunk/UCore.lfm
r189 r200 3476 3476 AppName = 'Acronym Decoder' 3477 3477 Description = 'A simple tool for quick searching of meaning for various acronyms and abbreviations.' 3478 ReleaseDate = 43 2933478 ReleaseDate = 43343 3479 3479 RegistryKey = '\Software\' 3480 3480 RegistryRoot = rrKeyCurrentUser -
trunk/UCore.pas
r178 r200 251 251 //Core.ScaleDPI1.DPI := Point(200, 200); 252 252 {$IFDEF WINDOWS} 253 Core.ScaleDPI1.ScaleControl(FormMain.CoolBar1, Core.ScaleDPI1.DesignDPI);254 253 Core.ScaleDPI1.ScaleImageList(ImageList1, Core.ScaleDPI1.DesignDPI); 255 254 {$ENDIF}
Note:
See TracChangeset
for help on using the changeset viewer.