Changeset 228 for oup/current
- Timestamp:
- Jun 20, 2007, 11:51:38 AM (17 years ago)
- Location:
- oup/current
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/FileClasses/_MetaManager.pas
r215 r228 2 2 interface 3 3 4 uses _FileTypes, 5 ABNA, AGDB, AGQC, AGQG, AGQM, AGQR, AISA, AITR, AIWA, AKAA, AKBA, AKBP, AKDA, 6 AKEV, AKOT, AKVA, BINA, CBPI, CBPM, CONS, CRSA, DOOR, DPge, EDIA, ENVP, FILM, 7 FXLR, GMAN, HPge, IDXA, IGHH, IGPA, IGPG, IGSA, IGSt, Impt, IPge, KeyI, M3GA, 8 M3GM, M3TA, Mtrl, NMSA, OBAN, OBDC, OBLS, OBOA, OFGA, ONCC, ONCP, ONCV, ONFA, 9 ONGS, ONIA, ONLD, ONLV, ONMA, ONOA, ONSA, ONSK, ONTA, ONVL, ONWC, OPge, OSBD, 10 OTIT, OTLF, PLEA, PNTA, PSpc, PSpL, PSUI, QTNA, QUDA, SNDD, StNA, SUBT, TMFA, 11 TMRA, TRAC, TRAM, TRAS, TRBS, TRCM, TRFT, TRGA, TRGE, TRIA, TRIG, TRMA, TRSC, 12 TRTA, TSFF, TSFL, TSFT, TSGA, TStr, TURR, TXAN, TXCA, TXMA, TXMB, TXMP, TXPC, 13 TxtC, UUEA, UVDL, VCRA, WMCL, WMDD, WMM_, WMMB, WPge, 14 _EmptyFile; 15 16 type 17 TFileType = class of TFile; 18 TFileDesc = record 19 ext: String; 20 ftype: TFileType; 21 end; 22 23 const 24 FileDescs: array[0..112] of TFileDesc = ( 25 (ext: 'ABNA'; ftype: TFile_ABNA), 26 (ext: 'AGDB'; ftype: TFile_AGDB), 27 (ext: 'AGQC'; ftype: TFile_AGQC), 28 (ext: 'AGQG'; ftype: TFile_AGQG), 29 (ext: 'AGQM'; ftype: TFile_AGQM), 30 (ext: 'AGQR'; ftype: TFile_AGQR), 31 (ext: 'AISA'; ftype: TFile_AISA), 32 (ext: 'AITR'; ftype: TFile_AITR), 33 (ext: 'AIWA'; ftype: TFile_AIWA), 34 (ext: 'AKAA'; ftype: TFile_AKAA), 35 (ext: 'AKBA'; ftype: TFile_AKBA), 36 (ext: 'AKBP'; ftype: TFile_AKBP), 37 (ext: 'AKDA'; ftype: TFile_AKDA), 38 (ext: 'AKEV'; ftype: TFile_AKEV), 39 (ext: 'AKOT'; ftype: TFile_AKOT), 40 (ext: 'AKVA'; ftype: TFile_AKVA), 41 (ext: 'BINA'; ftype: TFile_BINA), 42 (ext: 'CBPI'; ftype: TFile_CBPI), 43 (ext: 'CBPM'; ftype: TFile_CBPM), 44 (ext: 'CONS'; ftype: TFile_CONS), 45 (ext: 'CRSA'; ftype: TFile_CRSA), 46 (ext: 'DOOR'; ftype: TFile_DOOR), 47 (ext: 'DPge'; ftype: TFile_DPge), 48 (ext: 'EDIA'; ftype: TFile_EDIA), 49 (ext: 'ENVP'; ftype: TFile_ENVP), 50 (ext: 'FILM'; ftype: TFile_FILM), 51 (ext: 'FXLR'; ftype: TFile_FXLR), 52 (ext: 'GMAN'; ftype: TFile_GMAN), 53 (ext: 'HPge'; ftype: TFile_HPge), 54 (ext: 'IDXA'; ftype: TFile_IDXA), 55 (ext: 'IGHH'; ftype: TFile_IGHH), 56 (ext: 'IGPA'; ftype: TFile_IGPA), 57 (ext: 'IGPG'; ftype: TFile_IGPG), 58 (ext: 'IGSA'; ftype: TFile_IGSA), 59 (ext: 'IGSt'; ftype: TFile_IGSt), 60 (ext: 'Impt'; ftype: TFile_Impt), 61 (ext: 'IPge'; ftype: TFile_IPge), 62 (ext: 'KeyI'; ftype: TFile_KeyI), 63 (ext: 'M3GA'; ftype: TFile_M3GA), 64 (ext: 'M3GM'; ftype: TFile_M3GM), 65 (ext: 'M3TA'; ftype: TFile_M3TA), 66 (ext: 'Mtrl'; ftype: TFile_Mtrl), 67 (ext: 'NMSA'; ftype: TFile_NMSA), 68 (ext: 'OBAN'; ftype: TFile_OBAN), 69 (ext: 'OBDC'; ftype: TFile_OBDC), 70 (ext: 'OBLS'; ftype: TFile_OBLS), 71 (ext: 'OBOA'; ftype: TFile_OBOA), 72 (ext: 'OFGA'; ftype: TFile_OFGA), 73 (ext: 'ONCC'; ftype: TFile_ONCC), 74 (ext: 'ONCP'; ftype: TFile_ONCP), 75 (ext: 'ONCV'; ftype: TFile_ONCV), 76 (ext: 'ONFA'; ftype: TFile_ONFA), 77 (ext: 'ONGS'; ftype: TFile_ONGS), 78 (ext: 'ONIA'; ftype: TFile_ONIA), 79 (ext: 'ONLD'; ftype: TFile_ONLD), 80 (ext: 'ONLV'; ftype: TFile_ONLV), 81 (ext: 'ONMA'; ftype: TFile_ONMA), 82 (ext: 'ONOA'; ftype: TFile_ONOA), 83 (ext: 'ONSA'; ftype: TFile_ONSA), 84 (ext: 'ONSK'; ftype: TFile_ONSK), 85 (ext: 'ONTA'; ftype: TFile_ONTA), 86 (ext: 'ONVL'; ftype: TFile_ONVL), 87 (ext: 'ONWC'; ftype: TFile_ONWC), 88 (ext: 'OPge'; ftype: TFile_OPge), 89 (ext: 'OSBD'; ftype: TFile_OSBD), 90 (ext: 'OTIT'; ftype: TFile_OTIT), 91 (ext: 'OTLF'; ftype: TFile_OTLF), 92 (ext: 'PLEA'; ftype: TFile_PLEA), 93 (ext: 'PNTA'; ftype: TFile_PNTA), 94 (ext: 'PSpc'; ftype: TFile_PSpc), 95 (ext: 'PSpL'; ftype: TFile_PSpL), 96 (ext: 'PSUI'; ftype: TFile_PSUI), 97 (ext: 'QTNA'; ftype: TFile_QTNA), 98 (ext: 'QUDA'; ftype: TFile_QUDA), 99 (ext: 'SNDD'; ftype: TFile_SNDD), 100 (ext: 'StNA'; ftype: TFile_StNA), 101 (ext: 'SUBT'; ftype: TFile_SUBT), 102 (ext: 'TMFA'; ftype: TFile_TMFA), 103 (ext: 'TMRA'; ftype: TFile_TMRA), 104 (ext: 'TRAC'; ftype: TFile_TRAC), 105 (ext: 'TRAM'; ftype: TFile_TRAM), 106 (ext: 'TRAS'; ftype: TFile_TRAS), 107 (ext: 'TRBS'; ftype: TFile_TRBS), 108 (ext: 'TRCM'; ftype: TFile_TRCM), 109 (ext: 'TRFT'; ftype: TFile_TRFT), 110 (ext: 'TRGA'; ftype: TFile_TRGA), 111 (ext: 'TRGE'; ftype: TFile_TRGE), 112 (ext: 'TRIA'; ftype: TFile_TRIA), 113 (ext: 'TRIG'; ftype: TFile_TRIG), 114 (ext: 'TRMA'; ftype: TFile_TRMA), 115 (ext: 'TRSC'; ftype: TFile_TRSC), 116 (ext: 'TRTA'; ftype: TFile_TRTA), 117 (ext: 'TSFF'; ftype: TFile_TSFF), 118 (ext: 'TSFL'; ftype: TFile_TSFL), 119 (ext: 'TSFT'; ftype: TFile_TSFT), 120 (ext: 'TSGA'; ftype: TFile_TSGA), 121 (ext: 'TStr'; ftype: TFile_TStr), 122 (ext: 'TURR'; ftype: TFile_TURR), 123 (ext: 'TXAN'; ftype: TFile_TXAN), 124 (ext: 'TXCA'; ftype: TFile_TXCA), 125 (ext: 'TXMA'; ftype: TFile_TXMA), 126 (ext: 'TXMB'; ftype: TFile_TXMB), 127 (ext: 'TXMP'; ftype: TFile_TXMP), 128 (ext: 'TXPC'; ftype: TFile_TXPC), 129 (ext: 'TxtC'; ftype: TFile_TxtC), 130 (ext: 'UUEA'; ftype: TFile_UUEA), 131 (ext: 'UVDL'; ftype: TFile_UVDL), 132 (ext: 'VCRA'; ftype: TFile_VCRA), 133 (ext: 'WMCL'; ftype: TFile_WMCL), 134 (ext: 'WMDD'; ftype: TFile_WMDD), 135 (ext: 'WMM_'; ftype: TFile_WMM_), 136 (ext: 'WMMB'; ftype: TFile_WMMB), 137 (ext: 'WPge'; ftype: TFile_WPge) 138 ); 4 uses _MetaTypes; 139 5 140 6 type … … 142 8 protected 143 9 FFiles: array of TFile; 10 FRoot: array of TExtension; 144 11 FConnectionID: Integer; 145 12 function GetFileCount: Integer; … … 162 29 163 30 uses 164 Classes, ConnectionManager, Access_OniArchive, TypeDefs, Dialogs, SysUtils, StrUtils; 31 Classes, ConnectionManager, Access_OniArchive, TypeDefs, 32 Dialogs, SysUtils, StrUtils; 165 33 166 34 { TFileManager } … … 198 66 if FileDescs[typei].ext = finfo.Extension then 199 67 begin 200 FFiles[id] := TFile Type(FileDescs[typei].ftype).Create(FConnectionID, id);68 FFiles[id] := TFileClass(FileDescs[typei].ftype).Create(FConnectionID, id); 201 69 Break; 202 70 end; … … 253 121 if FileDescs[typei].ext = finfo.Extension then 254 122 begin 255 FFiles[fid] := TFile Type(FileDescs[typei].ftype).Create(FConnectionID, fid);123 FFiles[fid] := TFileClass(FileDescs[typei].ftype).Create(FConnectionID, fid); 256 124 Break; 257 125 end; -
oup/current/OniUnPacker.bdsproj
r227 r228 176 176 <Language Name="ProjectLang">$00000000</Language> 177 177 <Language Name="RootDir"></Language> 178 </Language> 179 180 <Excluded_Packages> 178 </Language> <Excluded_Packages> 181 179 <Excluded_Packages Name="d:\programme\borland\bds\3.0\Bin\dbwebxprt.bpl">Borland Web Wizard Package</Excluded_Packages> 182 180 </Excluded_Packages> -
oup/current/OniUnPacker.dpr
r227 r228 150 150 RawEdit in 'Tools\RawEdit.pas' {Form_RawEdit}, 151 151 TxmpReplace in 'Tools\TxmpReplace.pas' {Form_TxmpReplace}, 152 FileManager in 'Tools\FileManager.pas' {Form_FileManager}; 152 FileManager in 'Tools\FileManager.pas' {Form_FileManager}, 153 _Extensions in 'FileClasses\_Extensions.pas', 154 _MetaTypes in 'FileClasses\_MetaTypes.pas'; 153 155 154 156 {$R *.res} -
oup/current/Tools/FileManager.dfm
r227 r228 1 1 inherited Form_FileManager: TForm_FileManager 2 2 Caption = 'Form_FileManager' 3 OnCreate = FormCreate4 3 PixelsPerInch = 96 5 4 TextHeight = 13 -
oup/current/Tools/FileManager.pas
r227 r228 5 5 uses 6 6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 7 Dialogs, _BaseTemplate, StdCtrls, ExtCtrls; 7 Dialogs, _TemplateFileList, Menus, VirtualTrees, StdCtrls, Buttons, ComCtrls, 8 ExtCtrls; 8 9 9 10 type 10 TForm_FileManager = class(TForm_ BaseTemplate)11 TForm_FileManager = class(TForm_TemplateFileList) 11 12 procedure FormCreate(Sender: TObject); 12 13 private … … 16 17 17 18 implementation 19 18 20 {$R *.dfm} 19 20 21 21 22 procedure TForm_FileManager.NewCon(ID: Integer); … … 34 35 end; 35 36 37 36 38 end. 39
Note:
See TracChangeset
for help on using the changeset viewer.