Changeset 19 for trunk/Forms
- Timestamp:
- Mar 22, 2018, 10:41:00 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 6 6 *.lrj 7 7 heaptrclog.trc 8 MyData.exe
-
- Property svn:ignore
-
trunk/Forms/UFormAbout.lfm
r16 r19 1 1 object FormAbout: TFormAbout 2 2 Left = 522 3 Height = 3 873 Height = 329 4 4 Top = 335 5 Width = 5 245 Width = 584 6 6 Caption = 'About' 7 ClientHeight = 3 878 ClientWidth = 5 249 DesignTimePPI = 1 207 ClientHeight = 329 8 ClientWidth = 584 9 DesignTimePPI = 144 10 10 OnCreate = FormCreate 11 11 OnShow = FormShow 12 12 Position = poScreenCenter 13 LCLVersion = '1.8. 0.6'13 LCLVersion = '1.8.2.0' 14 14 object LabelDescription: TLabel 15 15 Left = 25 16 16 Height = 40 17 17 Top = 137 18 Width = 47418 Width = 534 19 19 Align = alTop 20 20 AutoSize = False … … 24 24 end 25 25 object ButtonClose: TButton 26 Left = 38326 Left = 443 27 27 Height = 31 28 Top = 33728 Top = 278 29 29 Width = 116 30 30 Anchors = [akRight, akBottom] … … 35 35 object LabelContent: TLabel 36 36 Left = 25 37 Height = 2 037 Height = 25 38 38 Top = 202 39 Width = 47439 Width = 534 40 40 Align = alTop 41 41 BorderSpacing.Around = 25 … … 46 46 Left = 20 47 47 Height = 31 48 Top = 33748 Top = 279 49 49 Width = 220 50 50 Anchors = [akLeft, akBottom] … … 57 57 Height = 112 58 58 Top = 0 59 Width = 5 2459 Width = 584 60 60 Align = alTop 61 61 BevelOuter = bvNone 62 62 ClientHeight = 112 63 ClientWidth = 5 2463 ClientWidth = 584 64 64 TabOrder = 2 65 65 object LabelAppName: TLabel … … 67 67 Height = 80 68 68 Top = 24 69 Width = 39469 Width = 454 70 70 Align = alCustom 71 71 Anchors = [akTop, akLeft, akRight, akBottom] -
trunk/Forms/UFormMain.lfm
r16 r19 5 5 Width = 1250 6 6 Caption = 'MyData' 7 ClientHeight = 81 57 ClientHeight = 819 8 8 ClientWidth = 1250 9 DesignTimePPI = 144 9 10 Menu = MainMenu1 10 11 OnActivate = FormActivate 11 12 OnClose = FormClose 12 13 OnShow = FormShow 13 LCLVersion = '1.8. 0.4'14 LCLVersion = '1.8.2.0' 14 15 WindowState = wsMaximized 15 16 object StatusBar1: TStatusBar 16 17 Left = 0 17 Height = 3 018 Top = 78 518 Height = 36 19 Top = 783 19 20 Width = 1250 20 21 Panels = <> -
trunk/Forms/UFormMain.pas
r17 r19 56 56 begin 57 57 Core.Done; 58 Core.PersistentForm1.Save(Self); 58 59 end; 59 60 60 61 procedure TFormMain.FormShow(Sender: TObject); 61 62 begin 63 Core.PersistentForm1.Load(Self, True); 62 64 DockInit; 63 65 end; -
trunk/Forms/UFormPreferences.lfm
r10 r19 7 7 ClientHeight = 422 8 8 ClientWidth = 577 9 LCLVersion = '1.5' 9 DesignTimePPI = 144 10 OnClose = FormClose 11 OnShow = FormShow 12 LCLVersion = '1.8.2.0' 10 13 object CheckBoxRememberDatabase: TCheckBox 11 14 Left = 18 12 Height = 2 715 Height = 29 13 16 Top = 20 14 Width = 21517 Width = 194 15 18 Caption = 'Remember database' 16 19 TabOrder = 0 … … 38 41 object ComboBoxLanguage: TComboBox 39 42 Left = 192 40 Height = 3 543 Height = 33 41 44 Top = 64 42 45 Width = 292 43 ItemHeight = 046 ItemHeight = 25 44 47 Style = csDropDownList 45 48 TabOrder = 3 … … 49 52 Height = 25 50 53 Top = 65 51 Width = 9554 Width = 81 52 55 Caption = 'Language:' 53 56 ParentColor = False -
trunk/Forms/UFormPreferences.pas
r10 r19 18 18 ComboBoxLanguage: TComboBox; 19 19 Label1: TLabel; 20 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 21 procedure FormShow(Sender: TObject); 20 22 private 21 23 { private declarations } … … 37 39 { TFormPreferences } 38 40 41 procedure TFormPreferences.FormShow(Sender: TObject); 42 begin 43 Core.PersistentForm1.Load(Self); 44 end; 45 46 procedure TFormPreferences.FormClose(Sender: TObject; 47 var CloseAction: TCloseAction); 48 begin 49 Core.PersistentForm1.Save(Self) 50 end; 51 39 52 procedure TFormPreferences.Load(Preferences: TPreferences); 40 53 begin -
trunk/Forms/UFormRecord.lfm
r16 r19 4 4 Top = 223 5 5 Width = 858 6 Caption = ' FormRecord'6 Caption = 'Record' 7 7 ClientHeight = 649 8 8 ClientWidth = 858 9 DesignTimePPI = 144 9 10 OnCreate = FormCreate 10 11 OnDestroy = FormDestroy 11 12 OnShow = FormShow 12 13 Position = poMainFormCenter 13 LCLVersion = '1.8. 0.4'14 LCLVersion = '1.8.2.0' 14 15 object Panel1: TPanel 15 16 Left = 4
Note:
See TracChangeset
for help on using the changeset viewer.