Changeset 2
- Timestamp:
- Jan 22, 2013, 11:08:49 AM (12 years ago)
- Files:
-
- 9 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormBrowse.lfm
r1 r2 1 1 object FormBrowse: TFormBrowse 2 Left = 2593 Height = 2404 Top = 845 Width = 3202 Left = 327 3 Height = 526 4 Top = 143 5 Width = 722 6 6 Caption = 'FormBrowse' 7 ClientHeight = 526 8 ClientWidth = 722 7 9 LCLVersion = '1.1' 10 object TreeView1: TTreeView 11 Left = 0 12 Height = 526 13 Top = 0 14 Width = 241 15 Align = alLeft 16 TabOrder = 0 17 end 18 object Splitter1: TSplitter 19 Left = 241 20 Height = 526 21 Top = 0 22 Width = 5 23 end 24 object ListView1: TListView 25 Left = 246 26 Height = 526 27 Top = 0 28 Width = 476 29 Align = alClient 30 Columns = < 31 item 32 Caption = 'Name' 33 end 34 item 35 Caption = 'Revision' 36 end 37 item 38 Caption = 'Last change date' 39 end 40 item 41 Caption = 'Last author' 42 end 43 item 44 Caption = 'Status' 45 Width = 256 46 end> 47 ReadOnly = True 48 RowSelect = True 49 TabOrder = 2 50 ViewStyle = vsReport 51 end 8 52 end -
trunk/Forms/UFormBrowse.pas
r1 r2 6 6 7 7 uses 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs; 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 ExtCtrls; 9 10 10 11 type 12 13 { TFormBrowse } 14 11 15 TFormBrowse = class(TForm) 16 ListView1: TListView; 17 Splitter1: TSplitter; 18 TreeView1: TTreeView; 12 19 private 13 20 { private declarations } -
trunk/VCSCommander.lpi
r1 r2 79 79 </Item1> 80 80 </RequiredPackages> 81 <Units Count=" 3">81 <Units Count="5"> 82 82 <Unit0> 83 83 <Filename Value="VCSCommander.lpr"/> … … 86 86 </Unit0> 87 87 <Unit1> 88 <Filename Value=" UFormMain.pas"/>88 <Filename Value="Forms/UFormMain.pas"/> 89 89 <IsPartOfProject Value="True"/> 90 90 <ComponentName Value="FormMain"/> … … 101 101 <UnitName Value="UCore"/> 102 102 </Unit2> 103 <Unit3> 104 <Filename Value="Forms/UFormBrowse.pas"/> 105 <IsPartOfProject Value="True"/> 106 <ComponentName Value="FormBrowse"/> 107 <ResourceBaseClass Value="Form"/> 108 <UnitName Value="UFormBrowse"/> 109 </Unit3> 110 <Unit4> 111 <Filename Value="Units/UVCS.pas"/> 112 <IsPartOfProject Value="True"/> 113 <UnitName Value="UVCS"/> 114 </Unit4> 103 115 </Units> 104 116 </ProjectOptions> … … 110 122 <SearchPaths> 111 123 <IncludeFiles Value="$(ProjOutDir)"/> 124 <OtherUnitFiles Value="Forms;Units"/> 112 125 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> 113 126 </SearchPaths> -
trunk/VCSCommander.lpr
r1 r2 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UFormMain, UCore 10 Forms, UFormMain, UCore, UFormBrowse, UVCS 11 11 { you can add units after this }; 12 12 … … 18 18 Application.CreateForm(TFormMain, FormMain); 19 19 Application.CreateForm(TCore, Core); 20 Application.CreateForm(TFormBrowse, FormBrowse); 20 21 Application.Run; 21 22 end.
Note:
See TracChangeset
for help on using the changeset viewer.