Changeset 3
- Timestamp:
- Jan 28, 2013, 7:58:22 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 added
- 7 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; -
trunk/UCore.lfm
r1 r3 1 1 object Core: TCore 2 2 OldCreateOrder = False 3 Height = 1504 HorizontalOffset = 2595 VerticalOffset = 846 Width = 1503 Height = 346 4 HorizontalOffset = 482 5 VerticalOffset = 265 6 Width = 447 7 7 end -
trunk/VCSCommander.lpi
r2 r3 79 79 </Item1> 80 80 </RequiredPackages> 81 <Units Count=" 5">81 <Units Count="8"> 82 82 <Unit0> 83 83 <Filename Value="VCSCommander.lpr"/> … … 105 105 <IsPartOfProject Value="True"/> 106 106 <ComponentName Value="FormBrowse"/> 107 <HasResources Value="True"/> 107 108 <ResourceBaseClass Value="Form"/> 108 109 <UnitName Value="UFormBrowse"/> … … 113 114 <UnitName Value="UVCS"/> 114 115 </Unit4> 116 <Unit5> 117 <Filename Value="Forms/UFormFavorites.pas"/> 118 <IsPartOfProject Value="True"/> 119 <ComponentName Value="FormFavorites"/> 120 <ResourceBaseClass Value="Form"/> 121 <UnitName Value="UFormFavorites"/> 122 </Unit5> 123 <Unit6> 124 <Filename Value="Forms/UFormSettings.pas"/> 125 <IsPartOfProject Value="True"/> 126 <ComponentName Value="FormSettings"/> 127 <ResourceBaseClass Value="Form"/> 128 <UnitName Value="UFormSettings"/> 129 </Unit6> 130 <Unit7> 131 <Filename Value="Units/USubversion.pas"/> 132 <IsPartOfProject Value="True"/> 133 <UnitName Value="USubversion"/> 134 </Unit7> 115 135 </Units> 116 136 </ProjectOptions> -
trunk/VCSCommander.lpr
r2 r3 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UFormMain, UCore, UFormBrowse, UVCS 10 Forms, UFormMain, UCore, UFormBrowse, UVCS, UFormFavorites, UFormSettings, 11 USubversion 11 12 { you can add units after this }; 12 13 … … 19 20 Application.CreateForm(TCore, Core); 20 21 Application.CreateForm(TFormBrowse, FormBrowse); 22 Application.CreateForm(TFormFavorites, FormFavorites); 23 Application.CreateForm(TFormSettings, FormSettings); 21 24 Application.Run; 22 25 end.
Note:
See TracChangeset
for help on using the changeset viewer.