Changeset 80 for trunk/Packages/Common
- Timestamp:
- Feb 12, 2021, 12:00:23 AM (4 years ago)
- Location:
- trunk/Packages/Common
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Common.lpk
r69 r80 40 40 <License Value="GNU/GPL"/> 41 41 <Version Minor="7"/> 42 <Files Count="2 6">42 <Files Count="28"> 43 43 <Item1> 44 44 <Filename Value="StopWatch.pas"/> … … 156 156 <UnitName Value="ULanguages"/> 157 157 </Item26> 158 <Item27> 159 <Filename Value="UFormAbout.pas"/> 160 <UnitName Value="UFormAbout"/> 161 </Item27> 162 <Item28> 163 <Filename Value="UAboutDialog.pas"/> 164 <HasRegisterProc Value="True"/> 165 <UnitName Value="UAboutDialog"/> 166 </Item28> 158 167 </Files> 159 168 <i18n> -
trunk/Packages/Common/Common.pas
r69 r80 13 13 UJobProgressView, UXMLUtils, UApplicationInfo, USyncCounter, UListViewSort, 14 14 UPersistentForm, UFindFile, UScaleDPI, UTheme, UStringTable, UMetaCanvas, 15 UGeometric, UTranslator, ULanguages, LazarusPackageIntf; 15 UGeometric, UTranslator, ULanguages, UFormAbout, UAboutDialog, 16 LazarusPackageIntf; 16 17 17 18 implementation … … 30 31 RegisterUnit('UTheme', @UTheme.Register); 31 32 RegisterUnit('UTranslator', @UTranslator.Register); 33 RegisterUnit('UAboutDialog', @UAboutDialog.Register); 32 34 end; 33 35 -
trunk/Packages/Common/Languages
-
Property svn:ignore
set to
*.mo
*.pot
-
Property svn:ignore
set to
-
trunk/Packages/Common/UApplicationInfo.pas
r79 r80 6 6 7 7 uses 8 SysUtils, Classes, Forms, URegistry, Controls, Graphics ;8 SysUtils, Classes, Forms, URegistry, Controls, Graphics, LCLType; 9 9 10 10 type … … 14 14 TApplicationInfo = class(TComponent) 15 15 private 16 FDescription: T Caption;16 FDescription: TTranslateString; 17 17 FIcon: TBitmap; 18 18 FIdentification: Byte; … … 49 49 property EmailContact: string read FEmailContact write FEmailContact; 50 50 property AppName: string read FAppName write FAppName; 51 property Description: string read FDescription write FDescription;51 property Description: TTranslateString read FDescription write FDescription; 52 52 property ReleaseDate: TDateTime read FReleaseDate write FReleaseDate; 53 53 property RegistryKey: string read FRegistryKey write FRegistryKey; -
trunk/Packages/Common/UFormAbout.lfm
r79 r80 11 11 OnShow = FormShow 12 12 Position = poScreenCenter 13 LCLVersion = '2.0. 2.0'13 LCLVersion = '2.0.10.0' 14 14 object LabelDescription: TLabel 15 15 Left = 30 16 Height = 2 616 Height = 24 17 17 Top = 135 18 18 Width = 642 … … 28 28 object LabelContent: TLabel 29 29 Left = 30 30 Height = 2 631 Top = 1 9130 Height = 24 31 Top = 189 32 32 Width = 642 33 33 Align = alTop … … 50 50 TabOrder = 0 51 51 object LabelAppName: TLabel 52 Left = 9653 Height = 10052 Left = 108 53 Height = 84 54 54 Top = 20 55 Width = 5 7255 Width = 564 56 56 Anchors = [akTop, akLeft, akRight] 57 57 AutoSize = False … … 68 68 Top = 30 69 69 Width = 72 70 Proportional = True 71 Stretch = True 70 72 end 71 73 end
Note:
See TracChangeset
for help on using the changeset viewer.