Changeset 147
- Timestamp:
- Jun 14, 2023, 9:56:49 PM (17 months ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BFTarget.pas
r145 r147 631 631 end; 632 632 633 634 635 633 end. 636 634 -
trunk/Forms/FormCompileMultiple.lfm
r145 r147 1 1 object FormCompileMultiple: TFormCompileMultiple 2 2 Left = 682 3 Height = 5 313 Height = 510 4 4 Top = 607 5 Width = 10145 Width = 973 6 6 Caption = 'Compile multiple' 7 ClientHeight = 5 318 ClientWidth = 10149 DesignTimePPI = 1 507 ClientHeight = 510 8 ClientWidth = 973 9 DesignTimePPI = 144 10 10 OnClose = FormClose 11 11 OnCreate = FormCreate 12 12 OnDestroy = FormDestroy 13 13 OnShow = FormShow 14 LCLVersion = '2.2. 0.4'14 LCLVersion = '2.2.6.0' 15 15 object ButtonCompile: TButton 16 Left = 8 8217 Height = 4018 Top = 4 8019 Width = 11 816 Left = 847 17 Height = 38 18 Top = 461 19 Width = 113 20 20 Anchors = [akRight, akBottom] 21 21 Caption = 'Compile' … … 26 26 object ListViewTargets: TListView 27 27 Left = 10 28 Height = 4 5628 Height = 438 29 29 Top = 10 30 Width = 9 9030 Width = 950 31 31 Anchors = [akTop, akLeft, akRight, akBottom] 32 32 Checkboxes = True … … 34 34 item 35 35 Caption = 'Name' 36 Width = 20 836 Width = 200 37 37 end 38 38 item 39 39 Caption = 'Result' 40 Width = 7 6740 Width = 736 41 41 end> 42 42 ParentFont = False … … 47 47 end 48 48 object ButtonCancel: TButton 49 Left = 7 4450 Height = 4051 Top = 4 8052 Width = 11 849 Left = 714 50 Height = 38 51 Top = 461 52 Width = 113 53 53 Anchors = [akRight, akBottom] 54 54 Caption = 'Cancel' -
trunk/Forms/FormCompileMultiple.pas
r145 r147 5 5 uses 6 6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls, 7 Target , fgl;7 Target; 8 8 9 9 type -
trunk/Forms/FormInput.lfm
r145 r147 8 8 ClientWidth = 480 9 9 DesignTimePPI = 144 10 LCLVersion = '2.0.0.4' 10 OnCreate = FormCreate 11 LCLVersion = '2.2.6.0' 11 12 object MemoInput: TMemo 12 13 Left = 6 13 Height = 31 714 Top = 3 714 Height = 316 15 Top = 38 15 16 Width = 468 16 17 Align = alClient … … 25 26 object Label1: TLabel 26 27 Left = 6 27 Height = 2 528 Height = 26 28 29 Top = 6 29 30 Width = 468 -
trunk/Forms/FormInput.pas
r145 r147 13 13 Label1: TLabel; 14 14 MemoInput: TMemo; 15 procedure FormCreate(Sender: TObject); 15 16 procedure MemoInputKeyPress(Sender: TObject; var Key: char); 16 17 end; … … 31 32 end; 32 33 34 procedure TFormInput.FormCreate(Sender: TObject); 35 begin 36 Core.Core.Translator.TranslateComponentRecursive(Self); 37 Core.Core.ThemeManager.UseTheme(Self); 38 end; 33 39 34 40 end. -
trunk/Forms/FormMemory.pas
r145 r147 19 19 procedure FormCreate(Sender: TObject); 20 20 procedure ListViewMemoryData(Sender: TObject; Item: TListItem); 21 private22 { private declarations }23 21 public 24 22 procedure Reload; -
trunk/Forms/FormSourceCode.pas
r145 r147 212 212 end; 213 213 214 215 214 end. 216 215
Note:
See TracChangeset
for help on using the changeset viewer.