Changeset 112 for branches/generator/Forms
- Timestamp:
- Aug 9, 2017, 8:47:42 AM (7 years ago)
- Location:
- branches/generator/Forms
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generator/Forms/UFormMain.lfm
r110 r112 19 19 end 20 20 object MainMenu1: TMainMenu 21 left = 240 22 top = 152 21 Images = Core.ImageList1 22 left = 248 23 top = 216 23 24 object MenuItem2: TMenuItem 24 25 Caption = 'File' … … 44 45 end 45 46 object ActionList1: TActionList 47 Images = Core.ImageList1 46 48 left = 428 47 49 top = 229 … … 52 54 object AExit: TAction 53 55 Caption = 'Exit' 56 ImageIndex = 2 54 57 OnExecute = AExitExecute 55 58 end 56 59 object AOpen: TAction 57 60 Caption = 'Open...' 61 ImageIndex = 4 58 62 OnExecute = AOpenExecute 59 63 end 60 64 object ASaveAs: TAction 61 65 Caption = 'Save as...' 66 ImageIndex = 5 62 67 OnExecute = ASaveAsExecute 63 68 end -
branches/generator/Forms/UFormRule.lfm
r111 r112 1 1 object FormRule: TFormRule 2 2 Left = 679 3 Height = 3983 Height = 505 4 4 Top = 620 5 5 Width = 660 6 6 ActiveControl = ButtonOk 7 7 Caption = 'Rule' 8 ClientHeight = 3988 ClientHeight = 505 9 9 ClientWidth = 660 10 10 OnShow = FormShow … … 13 13 Left = 376 14 14 Height = 25 15 Top = 36015 Top = 467 16 16 Width = 75 17 17 Anchors = [akLeft, akBottom] … … 23 23 Left = 168 24 24 Height = 25 25 Top = 36025 Top = 467 26 26 Width = 75 27 27 Anchors = [akLeft, akBottom] … … 47 47 object ListView: TListView 48 48 Left = 16 49 Height = 23249 Height = 307 50 50 Top = 112 51 51 Width = 624 52 Anchors = [akTop, akLeft, ak Bottom]52 Anchors = [akTop, akLeft, akRight, akBottom] 53 53 Columns = < 54 54 item … … 78 78 object ComboBox1: TComboBox 79 79 Left = 186 80 Height = 3 680 Height = 34 81 81 Top = 61 82 82 Width = 390 … … 89 89 TabOrder = 4 90 90 end 91 object ToolBar1: TToolBar 92 Left = 16 93 Height = 26 94 Top = 424 95 Width = 624 96 Align = alCustom 97 Anchors = [akLeft, akRight, akBottom] 98 Caption = 'ToolBar1' 99 Images = Core.ImageList1 100 TabOrder = 5 101 object ToolButton1: TToolButton 102 Left = 1 103 Top = 2 104 Action = AAdd 105 end 106 object ToolButton2: TToolButton 107 Left = 24 108 Top = 2 109 Action = AModify 110 end 111 object ToolButton3: TToolButton 112 Left = 47 113 Top = 2 114 Action = ARemove 115 end 116 end 91 117 object ActionList1: TActionList 118 Images = Core.ImageList1 92 119 left = 347 93 120 top = 187 94 121 object AAdd: TAction 95 122 Caption = 'Add' 123 ImageIndex = 0 96 124 OnExecute = AAddExecute 97 125 end 98 126 object AModify: TAction 99 127 Caption = 'Modify' 128 ImageIndex = 3 100 129 OnExecute = AModifyExecute 101 130 end 102 131 object ARemove: TAction 103 132 Caption = 'Remove' 133 ImageIndex = 1 104 134 OnExecute = ARemoveExecute 105 135 end 106 136 end 107 137 object PopupMenu1: TPopupMenu 138 Images = Core.ImageList1 108 139 left = 118 109 140 top = 185 -
branches/generator/Forms/UFormRule.pas
r111 r112 29 29 MenuItem3: TMenuItem; 30 30 PopupMenu1: TPopupMenu; 31 ToolBar1: TToolBar; 32 ToolButton1: TToolButton; 33 ToolButton2: TToolButton; 34 ToolButton3: TToolButton; 31 35 procedure AAddExecute(Sender: TObject); 32 36 procedure AModifyExecute(Sender: TObject); -
branches/generator/Forms/UFormRules.lfm
r111 r112 27 27 Height = 24 28 28 Top = 5 29 Width = 15029 Width = 70 30 30 Align = alNone 31 31 AutoSize = True … … 33 33 BorderSpacing.Top = 3 34 34 Caption = 'ToolBar1' 35 Images = Core.ImageList1 35 36 TabOrder = 0 36 37 object ToolButton1: TToolButton … … 61 62 item 62 63 Caption = 'Name' 63 Width = 829 64 Width = 200 65 end 66 item 67 Caption = 'Items' 68 Width = 629 64 69 end> 65 70 MultiSelect = True … … 76 81 end 77 82 object ActionList1: TActionList 83 Images = Core.ImageList1 78 84 left = 248 79 85 top = 212 80 86 object AAdd: TAction 81 87 Caption = 'Add' 88 ImageIndex = 0 82 89 OnExecute = AAddExecute 83 90 end 84 91 object AModify: TAction 85 92 Caption = 'Modify' 93 ImageIndex = 3 86 94 OnExecute = AModifyExecute 87 95 end 88 96 object ARemove: TAction 89 97 Caption = 'Remove' 98 ImageIndex = 1 90 99 OnExecute = ARemoveExecute 91 100 ShortCut = 46 … … 93 102 end 94 103 object PopupMenu1: TPopupMenu 104 Images = Core.ImageList1 95 105 left = 427 96 106 top = 212 -
branches/generator/Forms/UFormRules.pas
r111 r112 105 105 Item.Caption := Rules[Item.Index].Name; 106 106 Item.Data := Rules[Item.Index]; 107 Item.SubItems.Add(Rules[Item.Index].Items.GetBNF(Rules[Item.Index].RuleType)); 107 108 end; 108 109 end;
Note:
See TracChangeset
for help on using the changeset viewer.