Changeset 14 for trunk/Forms
- Timestamp:
- Feb 4, 2018, 2:01:05 PM (7 years ago)
- Location:
- trunk/Forms
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContacts.lfm
r13 r14 34 34 Width = 387 35 35 end> 36 MultiSelect = True 36 37 OwnerData = True 37 38 PopupMenu = PopupMenuContact … … 75 76 Action = AAdd 76 77 end 78 object MenuItem3: TMenuItem 79 Action = ARemove 80 end 77 81 object MenuItem2: TMenuItem 78 82 Action = AModify 79 83 end 80 object MenuItem 3: TMenuItem81 Action = A Remove84 object MenuItem4: TMenuItem 85 Action = ASelectAll 82 86 end 83 87 end … … 104 108 ShortCut = 46 105 109 end 110 object ASelectAll: TAction 111 Caption = 'Select all' 112 OnExecute = ASelectAllExecute 113 ShortCut = 16449 114 end 106 115 end 107 116 end -
trunk/Forms/UFormContacts.pas
r13 r14 15 15 TFormContacts = class(TForm) 16 16 AAdd: TAction; 17 ASelectAll: TAction; 17 18 ARemove: TAction; 18 19 AModify: TAction; … … 22 23 MenuItem2: TMenuItem; 23 24 MenuItem3: TMenuItem; 25 MenuItem4: TMenuItem; 24 26 PopupMenuContact: TPopupMenu; 25 27 ToolBar1: TToolBar; … … 30 32 procedure AModifyExecute(Sender: TObject); 31 33 procedure ARemoveExecute(Sender: TObject); 34 procedure ASelectAllExecute(Sender: TObject); 32 35 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 33 36 procedure FormCreate(Sender: TObject); … … 158 161 end; 159 162 163 procedure TFormContacts.ASelectAllExecute(Sender: TObject); 164 begin 165 ListView1.SelectAll; 166 end; 167 160 168 procedure TFormContacts.FormClose(Sender: TObject; var CloseAction: TCloseAction 161 169 ); -
trunk/Forms/UFormMain.lfm
r13 r14 1 1 object FormMain: TFormMain 2 Left = 6 132 Left = 601 3 3 Height = 531 4 Top = 4 014 Top = 447 5 5 Width = 785 6 Caption = ' FormMain'6 Caption = 'vCard Studio' 7 7 ClientHeight = 497 8 8 ClientWidth = 785 … … 132 132 Action = Core.AFileClose 133 133 end 134 object MenuItem1: TMenuItem 135 Caption = '-' 136 end 137 object MenuItem3: TMenuItem 138 Action = Core.AFileMerge 139 end 134 140 object MenuItem2: TMenuItem 135 141 Caption = '-' -
trunk/Forms/UFormMain.pas
r13 r14 16 16 CoolBar1: TCoolBar; 17 17 MainMenu1: TMainMenu; 18 MenuItem1: TMenuItem; 19 MenuItem3: TMenuItem; 18 20 MenuItemToolbar: TMenuItem; 19 21 MenuItemView: TMenuItem;
Note:
See TracChangeset
for help on using the changeset viewer.