Changeset 87
- Timestamp:
- Aug 8, 2016, 1:51:33 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AcronymDecoder.lpr
r86 r87 32 32 RequireDerivedFormResource := True; 33 33 Application.Initialize; 34 Application.CreateForm(TCore, Core); 34 35 Application.CreateForm(TFormMain, FormMain); 35 36 Application.CreateForm(TFormCategorySelect, FormCategorySelect); … … 45 46 Application.CreateForm(TFormImportFormats, FormImportFormats); 46 47 Application.CreateForm(TFormImportPattern, FormImportPattern); 47 Application.CreateForm(TCore, Core);48 48 Application.Run; 49 49 end. -
trunk/Forms/UFormMain.lfm
r81 r87 87 87 end 88 88 object ToolButton2: TToolButton 89 Left = 7589 Left = 110 90 90 Top = 2 91 91 Action = AShowAcronyms 92 92 end 93 93 object ToolButton3: TToolButton 94 Left = 9894 Left = 133 95 95 Top = 2 96 96 Action = AShowCategories 97 97 end 98 98 object ToolButton4: TToolButton 99 Left = 1 4499 Left = 179 100 100 Top = 2 101 101 Action = AShowImportFormats 102 102 end 103 103 object ToolButton5: TToolButton 104 Left = 1 21104 Left = 156 105 105 Top = 2 106 106 Action = AShowImportSources … … 110 110 Top = 2 111 111 Action = AFileOpen 112 DropdownMenu = PopupMenuOpenRecent 113 Style = tbsDropDown 112 114 end 113 115 object ToolButton7: TToolButton 114 Left = 47116 Left = 59 115 117 Top = 2 116 118 Action = AFileSave 117 119 end 118 120 object ToolButton8: TToolButton 119 Left = 70121 Left = 105 120 122 Height = 22 121 123 Top = 2 … … 125 127 end 126 128 object ToolButton9: TToolButton 127 Left = 167129 Left = 202 128 130 Top = 2 129 131 Action = AProcessImports 130 132 end 131 133 object ToolButton10: TToolButton 132 Left = 190134 Left = 225 133 135 Height = 22 134 136 Top = 2 … … 138 140 end 139 141 object ToolButton11: TToolButton 140 Left = 195142 Left = 230 141 143 Top = 2 142 144 Action = ASettings 145 end 146 object ToolButton12: TToolButton 147 Left = 82 148 Top = 2 149 Action = AFileClose 143 150 end 144 151 end … … 1994 2001 top = 296 1995 2002 end 2003 object PopupMenuOpenRecent: TPopupMenu 2004 left = 379 2005 top = 136 2006 end 1996 2007 end -
trunk/Forms/UFormMain.pas
r86 r87 70 70 Panel1: TPanel; 71 71 PersistentForm1: TPersistentForm; 72 PopupMenuOpenRecent: TPopupMenu; 72 73 PopupMenuTryIcon: TPopupMenu; 73 74 SaveDialog1: TSaveDialog; … … 76 77 ToolButton10: TToolButton; 77 78 ToolButton11: TToolButton; 79 ToolButton12: TToolButton; 78 80 ToolButton2: TToolButton; 79 81 ToolButton3: TToolButton; … … 382 384 begin 383 385 LastOpenedList1.LoadToMenuItem(MenuItemOpenRecent, OpenRecentClick); 386 LastOpenedList1.LoadToMenuItem(PopupMenuOpenRecent.Items, OpenRecentClick); 384 387 end; 385 388
Note:
See TracChangeset
for help on using the changeset viewer.