Changeset 17 for trunk/Forms
- Timestamp:
- May 4, 2016, 12:12:25 PM (9 years ago)
- Location:
- trunk/Forms
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAcronym.lfm
r16 r17 10 10 OnKeyUp = FormKeyUp 11 11 OnShow = FormShow 12 LCLVersion = '1. 7'12 LCLVersion = '1.6.0.4' 13 13 object Label1: TLabel 14 14 Left = 8 15 Height = 2 415 Height = 20 16 16 Top = 16 17 Width = 5617 Width = 43 18 18 Caption = 'Name:' 19 19 ParentColor = False … … 21 21 object EditAcronym: TEdit 22 22 Left = 136 23 Height = 3423 Height = 28 24 24 Top = 15 25 25 Width = 361 … … 30 30 object Label2: TLabel 31 31 Left = 8 32 Height = 2 432 Height = 20 33 33 Top = 49 34 Width = 7934 Width = 61 35 35 Caption = 'Meaning:' 36 36 ParentColor = False … … 38 38 object EditMeaning: TEdit 39 39 Left = 136 40 Height = 3440 Height = 28 41 41 Top = 49 42 42 Width = 361 … … 69 69 object Label3: TLabel 70 70 Left = 8 71 Height = 2 471 Height = 20 72 72 Top = 88 73 Width = 10373 Width = 79 74 74 Caption = 'Description:' 75 75 ParentColor = False … … 86 86 object Label4: TLabel 87 87 Left = 12 88 Height = 2 488 Height = 20 89 89 Top = 208 90 Width = 9690 Width = 74 91 91 Caption = 'Categories:' 92 92 ParentColor = False … … 104 104 ScrollWidth = 358 105 105 TabOrder = 5 106 TopIndex = -1107 106 end 108 107 object Button1: TButton -
trunk/Forms/UFormMain.lfm
r16 r17 1 1 object FormMain: TFormMain 2 Left = 7692 Left = 394 3 3 Height = 446 4 Top = 3 424 Top = 395 5 5 Width = 631 6 6 Caption = 'Acronym Decoder' 7 ClientHeight = 4 147 ClientHeight = 421 8 8 ClientWidth = 631 9 9 Menu = MainMenu1 … … 13 13 OnDestroy = FormDestroy 14 14 OnShow = FormShow 15 LCLVersion = '1. 7'15 LCLVersion = '1.6.0.4' 16 16 object ListViewAcronyms: TListView 17 17 Left = 8 18 Height = 3 6518 Height = 372 19 19 Top = 40 20 20 Width = 613 … … 46 46 object EditSearch: TEdit 47 47 Left = 8 48 Height = 3448 Height = 28 49 49 Top = 8 50 50 Width = 611 … … 4424 4424 OnExecute = AShowCategoriesExecute 4425 4425 end 4426 object AShowAcronyms: TAction 4427 Caption = 'Acronyms' 4428 OnExecute = AShowAcronymsExecute 4429 end 4426 4430 end 4427 4431 object PersistentForm1: TPersistentForm … … 4479 4483 object MenuItem20: TMenuItem 4480 4484 Caption = 'View' 4485 object MenuItem22: TMenuItem 4486 Action = AShowAcronyms 4487 end 4481 4488 object MenuItem21: TMenuItem 4482 4489 Action = AShowCategories -
trunk/Forms/UFormMain.lrt
r16 r17 17 17 TFORMMAIN.ASETTINGS.CAPTION=Settings 18 18 TFORMMAIN.ASHOWCATEGORIES.CAPTION=Categories 19 TFORMMAIN.ASHOWACRONYMS.CAPTION=Acronyms 19 20 TFORMMAIN.MENUITEM8.CAPTION=File 20 21 TFORMMAIN.MENUITEMOPENRECENT.CAPTION=Open recent -
trunk/Forms/UFormMain.pas
r16 r17 19 19 AAcronymRemove: TAction; 20 20 AAcronymRemoveAll: TAction; 21 AShowAcronyms: TAction; 21 22 AShowCategories: TAction; 22 23 ASettings: TAction; … … 48 49 MenuItem20: TMenuItem; 49 50 MenuItem21: TMenuItem; 51 MenuItem22: TMenuItem; 50 52 MenuItemOpenRecent: TMenuItem; 51 53 MenuItem2: TMenuItem; … … 75 77 procedure AImportExecute(Sender: TObject); 76 78 procedure ASettingsExecute(Sender: TObject); 79 procedure AShowAcronymsExecute(Sender: TObject); 77 80 procedure AShowCategoriesExecute(Sender: TObject); 78 81 procedure AShowExecute(Sender: TObject); … … 116 119 117 120 uses 118 UFormImport, UFormAcronym, UFormSettings, UFormCategories ;121 UFormImport, UFormAcronym, UFormSettings, UFormCategories, UFormAcronyms; 119 122 120 123 resourcestring … … 335 338 end; 336 339 340 procedure TFormMain.AShowAcronymsExecute(Sender: TObject); 341 begin 342 FormAcronyms.ShowModal; 343 end; 344 337 345 procedure TFormMain.AShowCategoriesExecute(Sender: TObject); 338 346 begin
Note:
See TracChangeset
for help on using the changeset viewer.