Changeset 3 for trunk/Forms
- Timestamp:
- Jan 28, 2013, 7:58:22 PM (12 years ago)
- Location:
- trunk/Forms
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormBrowse.lfm
r2 r3 1 1 object FormBrowse: TFormBrowse 2 Left = 3 272 Left = 351 3 3 Height = 526 4 Top = 14 34 Top = 147 5 5 Width = 722 6 Caption = ' FormBrowse'6 Caption = 'Browse' 7 7 ClientHeight = 526 8 8 ClientWidth = 722 -
trunk/Forms/UFormBrowse.pas
r2 r3 20 20 { private declarations } 21 21 public 22 { public declarations }22 procedure ReloadList; 23 23 end; 24 24 … … 30 30 {$R *.lfm} 31 31 32 { TFormBrowse } 33 34 procedure TFormBrowse.ReloadList; 35 begin 36 37 end; 38 32 39 end. 33 40 -
trunk/Forms/UFormMain.lfm
r1 r3 1 1 object FormMain: TFormMain 2 Left = 2592 Left = 340 3 3 Height = 497 4 Top = 844 Top = 152 5 5 Width = 667 6 Caption = ' FormMain'6 Caption = 'VCSCommander' 7 7 ClientHeight = 472 8 8 ClientWidth = 667 … … 37 37 end 38 38 end 39 object MenuItem6: TMenuItem 40 Caption = 'View' 41 object MenuItem7: TMenuItem 42 Action = AViewFavorites 43 end 44 end 45 object MenuItem1: TMenuItem 46 Caption = 'General' 47 object MenuItem2: TMenuItem 48 Action = ASettings 49 end 50 end 51 object MenuItem3: TMenuItem 52 Caption = 'Help' 53 object MenuItem5: TMenuItem 54 Action = AHelp 55 end 56 object MenuItem4: TMenuItem 57 Action = AAbout 58 end 59 end 39 60 end 40 61 object ActionList1: TActionList … … 47 68 OnExecute = AQuitExecute 48 69 end 70 object ASettings: TAction 71 Caption = 'Settings' 72 end 73 object AAbout: TAction 74 Caption = 'About' 75 end 76 object AHelp: TAction 77 Caption = 'Help' 78 end 79 object AViewFavorites: TAction 80 Caption = 'Favorites' 81 end 49 82 end 50 83 object ImageList1: TImageList -
trunk/Forms/UFormMain.pas
r1 r3 14 14 15 15 TFormMain = class(TForm) 16 AViewFavorites: TAction; 17 AHelp: TAction; 18 ASettings: TAction; 19 AAbout: TAction; 16 20 AQuit: TAction; 17 21 ActionList1: TActionList; 18 22 ImageList1: TImageList; 19 23 MainMenu1: TMainMenu; 24 MenuItem1: TMenuItem; 25 MenuItem2: TMenuItem; 26 MenuItem3: TMenuItem; 27 MenuItem4: TMenuItem; 28 MenuItem5: TMenuItem; 29 MenuItem6: TMenuItem; 30 MenuItem7: TMenuItem; 20 31 MenuItemQuit: TMenuItem; 21 32 MenuItemFile: TMenuItem;
Note:
See TracChangeset
for help on using the changeset viewer.