Changeset 126 for branches/generator/Forms/UFormMain.lfm
- Timestamp:
- Nov 30, 2017, 12:02:32 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generator/Forms/UFormMain.lfm
r124 r126 5 5 Width = 1050 6 6 Caption = 'Language generator' 7 ClientHeight = 6 537 ClientHeight = 644 8 8 ClientWidth = 1050 9 9 Menu = MainMenu1 10 10 OnClose = FormClose 11 OnCloseQuery = FormCloseQuery 11 12 OnShow = FormShow 12 LCLVersion = '1. 6.4.0'13 LCLVersion = '1.8.0.4' 13 14 object MemoBNF: TMemo 14 15 Left = 0 15 Height = 6 1816 Height = 609 16 17 Top = 35 17 18 Width = 1050 18 19 Align = alClient 20 ReadOnly = True 19 21 ScrollBars = ssAutoBoth 20 22 TabOrder = 0 … … 69 71 Caption = 'File' 70 72 object MenuItem11: TMenuItem 71 Action = A New73 Action = AProjectNew 72 74 end 73 75 object MenuItem4: TMenuItem 74 Action = A Open76 Action = AProjectOpen 75 77 end 76 78 object MenuItem10: TMenuItem 77 Action = A Save79 Action = AProjectSave 78 80 end 79 81 object MenuItem5: TMenuItem 80 Action = ASaveAs 82 Action = AProjectSaveAs 83 end 84 object MenuItem13: TMenuItem 85 Action = AProjectClose 81 86 end 82 87 object MenuItem12: TMenuItem … … 119 124 OnExecute = AExitExecute 120 125 end 121 object A Open: TAction126 object AProjectOpen: TAction 122 127 Caption = 'Open...' 123 128 Hint = 'Open...' 124 129 ImageIndex = 4 125 OnExecute = A OpenExecute130 OnExecute = AProjectOpenExecute 126 131 end 127 object A SaveAs: TAction132 object AProjectSaveAs: TAction 128 133 Caption = 'Save as...' 129 134 Hint = 'Save as...' 130 135 ImageIndex = 5 131 OnExecute = A SaveAsExecute136 OnExecute = AProjectSaveAsExecute 132 137 end 133 138 object ABuildCompiler: TAction … … 136 141 OnExecute = ABuildCompilerExecute 137 142 end 138 object A Save: TAction143 object AProjectSave: TAction 139 144 Caption = 'Save' 140 145 ImageIndex = 5 141 OnExecute = A SaveExecute146 OnExecute = AProjectSaveExecute 142 147 end 143 object A New: TAction148 object AProjectNew: TAction 144 149 Caption = 'New' 145 150 ImageIndex = 10 146 OnExecute = A NewExecute151 OnExecute = AProjectNewExecute 147 152 end 148 153 object AGrammerSettings: TAction 149 154 Caption = 'Settings' 150 155 OnExecute = AGrammerSettingsExecute 156 end 157 object AProjectClose: TAction 158 Caption = 'Close' 159 OnExecute = AProjectCloseExecute 151 160 end 152 161 end
Note:
See TracChangeset
for help on using the changeset viewer.