Changeset 21 for trunk/Forms
- Timestamp:
- May 4, 2016, 9:51:49 PM (9 years ago)
- Location:
- trunk/Forms
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r20 r21 5 5 Width = 631 6 6 Caption = 'Acronym Decoder' 7 ClientHeight = 4 217 ClientHeight = 414 8 8 ClientWidth = 631 9 9 Menu = MainMenu1 … … 13 13 OnDestroy = FormDestroy 14 14 OnShow = FormShow 15 LCLVersion = '1. 6.0.4'15 LCLVersion = '1.7' 16 16 object ListViewAcronyms: TListView 17 17 Left = 8 18 Height = 3 4019 Top = 7218 Height = 333 19 Top = 64 20 20 Width = 613 21 21 Anchors = [akTop, akLeft, akRight, akBottom] … … 51 51 object CheckBoxExactMath: TCheckBox 52 52 Left = 8 53 Height = 2 453 Height = 28 54 54 Top = 3 55 Width = 1 0455 Width = 129 56 56 Caption = 'Exact match' 57 57 OnChange = CheckBoxExactMathChange … … 4420 4420 OnExecute = AShowImportSourcesExecute 4421 4421 end 4422 object AShowAbout: TAction 4423 Caption = 'About' 4424 OnExecute = AShowAboutExecute 4425 end 4422 4426 end 4423 4427 object PersistentForm1: TPersistentForm … … 4430 4434 Images = ImageList1 4431 4435 left = 464 4432 top = 804436 top = 96 4433 4437 object MenuItem8: TMenuItem 4434 4438 Caption = 'File' … … 4479 4483 end 4480 4484 end 4485 object MenuItem5: TMenuItem 4486 Caption = 'Help' 4487 object MenuItem6: TMenuItem 4488 Action = AShowAbout 4489 end 4490 end 4481 4491 end 4482 4492 object OpenDialog1: TOpenDialog … … 4503 4513 OnCompareItem = ListViewSort1CompareItem 4504 4514 OnFilter = ListViewSort1Filter 4505 Column = 04506 Order = so Down4515 Column = 2 4516 Order = soUp 4507 4517 left = 464 4508 4518 top = 208 -
trunk/Forms/UFormMain.lrt
r20 r21 16 16 TFORMMAIN.ASHOWACRONYMS.CAPTION=Acronyms 17 17 TFORMMAIN.ASHOWIMPORTSOURCES.CAPTION=Import sources 18 TFORMMAIN.ASHOWABOUT.CAPTION=About 18 19 TFORMMAIN.MENUITEM8.CAPTION=File 19 20 TFORMMAIN.MENUITEMOPENRECENT.CAPTION=Open recent … … 21 22 TFORMMAIN.MENUITEM20.CAPTION=View 22 23 TFORMMAIN.MENUITEM16.CAPTION=Tools 24 TFORMMAIN.MENUITEM5.CAPTION=Help -
trunk/Forms/UFormMain.pas
r20 r21 16 16 17 17 TFormMain = class(TForm) 18 AShowAbout: TAction; 18 19 AShowImportSources: TAction; 19 20 AShowAcronyms: TAction; … … 52 53 MenuItem22: TMenuItem; 53 54 MenuItem4: TMenuItem; 55 MenuItem5: TMenuItem; 56 MenuItem6: TMenuItem; 54 57 MenuItemOpenRecent: TMenuItem; 55 58 MenuItem2: TMenuItem; … … 70 73 procedure AImportExecute(Sender: TObject); 71 74 procedure ASettingsExecute(Sender: TObject); 75 procedure AShowAboutExecute(Sender: TObject); 72 76 procedure AShowAcronymsExecute(Sender: TObject); 73 77 procedure AShowCategoriesExecute(Sender: TObject); … … 115 119 uses 116 120 UFormImport, UFormAcronym, UFormSettings, UFormCategories, UFormAcronyms, 117 UFormImportSource, UFormImportSources ;121 UFormImportSource, UFormImportSources, UFormAbout; 118 122 119 123 resourcestring … … 244 248 if FormSettings.ShowModal = mrOk then 245 249 FormSettings.Save; 250 end; 251 252 procedure TFormMain.AShowAboutExecute(Sender: TObject); 253 begin 254 FormAbout.ShowModal; 246 255 end; 247 256
Note:
See TracChangeset
for help on using the changeset viewer.