Changeset 19
- Timestamp:
- Jun 14, 2011, 12:20:15 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UApplicationInfo.pas
r14 r19 50 50 Name := 'ChronIS'; 51 51 Identification := 1; 52 ReleaseDate := '1 0.6.2011';52 ReleaseDate := '14.6.2011'; 53 53 MajorVersion := 0; 54 54 MinorVersion := 1; -
trunk/Forms/UMainForm.lfm
r13 r19 182 182 OnExecute = AInitSystemValuesExecute 183 183 end 184 object AImportStructure: TAction 185 Caption = 'Import structure...' 186 OnExecute = AImportStructureExecute 187 end 184 188 end 185 189 object PopupMenuItem: TPopupMenu … … 332 336 Action = AInitSystemValues 333 337 end 338 object MenuItem20: TMenuItem 339 Action = AImportStructure 340 end 334 341 end 335 342 object MenuItem12: TMenuItem -
trunk/Forms/UMainForm.lrt
r11 r19 19 19 TMAINFORM.ASETTINGS.HINT=Settings 20 20 TMAINFORM.AINITSYSTEMVALUES.CAPTION=Init system values 21 TMAINFORM.AIMPORTSTRUCTURE.CAPTION=Import structure... 21 22 TMAINFORM.MENUITEM13.CAPTION=Server 22 23 TMAINFORM.MENUITEM11.CAPTION=View -
trunk/Forms/UMainForm.pas
r17 r19 15 15 16 16 TMainForm = class(TForm) 17 published 17 18 AConnect: TAction; 19 AImportStructure: TAction; 18 20 AInitSystemValues: TAction; 19 21 ASettings: TAction; … … 50 52 MenuItem19: TMenuItem; 51 53 MenuItem2: TMenuItem; 54 MenuItem20: TMenuItem; 52 55 MenuItem3: TMenuItem; 53 56 MenuItem4: TMenuItem; … … 66 69 procedure AConnectExecute(Sender: TObject); 67 70 procedure AExitExecute(Sender: TObject); 71 procedure AImportStructureExecute(Sender: TObject); 68 72 procedure AInitSystemValuesExecute(Sender: TObject); 69 73 procedure AItemAddExecute(Sender: TObject); … … 124 128 uses 125 129 UItemView, UItemEdit, UItemAdd, ULoginForm, USettingForm, UApplicationInfo, 126 UCore ;130 UCore, UImportStructureForm; 127 131 128 132 {$R *.lfm} … … 340 344 '`Min` int NOT NULL,' + 341 345 '`Max` int NOT NULL,' + 346 'KEY `CustomType` (`CustomType`),' + 347 'PRIMARY KEY (`Id`)' + 348 ') ENGINE=InnoDB DEFAULT CHARSET=utf8'); 349 end; 350 351 if Tables.IndexOf(TypeFloat) = -1 then begin 352 Database.Query(DbRows, 'CREATE TABLE IF NOT EXISTS `' + TypeFloat + '` ( ' + 353 '`Id` int(11) NOT NULL AUTO_INCREMENT,' + 354 '`CustomType` int NOT NULL,' + 355 '`Default` float NOT NULL,' + 356 '`Min` float NOT NULL,' + 357 '`Max` float NOT NULL,' + 342 358 'KEY `CustomType` (`CustomType`),' + 343 359 'PRIMARY KEY (`Id`)' + … … 555 571 begin 556 572 Close; 573 end; 574 575 procedure TMainForm.AImportStructureExecute(Sender: TObject); 576 begin 577 ImportStructureForm.ShowModal; 557 578 end; 558 579 -
trunk/Forms/USettingForm.lfm
r18 r19 1 1 object SettingForm: TSettingForm 2 Left = 3 552 Left = 371 3 3 Height = 328 4 Top = 1 664 Top = 138 5 5 Width = 446 6 6 Caption = 'Settings' … … 46 46 end 47 47 object Label2: TLabel 48 Left = 948 Left = 8 49 49 Height = 14 50 50 Top = 38 -
trunk/USystem.pas
r17 r19 26 26 TypeNumber = 'TypeNumber'; 27 27 TypeString = 'TypeString'; 28 TypeFloat = 'TypeFloat'; 28 29 29 30 type … … 98 99 Database: TSQLDatabase; 99 100 function AddType(Name, DataType: string; TypeIndex: TDbValueType): Integer; 101 function AddGroup(Name: string; ParentGroupId: Integer = 0): Integer; 100 102 function AddObject(Name, TableName, Schema: string; GroupId: Integer): Integer; 101 function AddProperty(ObjectId: Integer; Name, ColumnName: string; DataType: Integer): Integer;103 function AddProperty(ObjectId: Integer; Name, ColumnName: string; CustomType: Integer): Integer; 102 104 function AddPropertyNumber(ObjectId: Integer; Name, 105 ColumnName: string; Default: Integer = 0; Min: Integer = 0; 106 Max: Integer = High(Integer)): Integer; 107 function AddPropertyFloat(ObjectId: Integer; Name, 103 108 ColumnName: string; Default: Integer = 0; Min: Integer = 0; 104 109 Max: Integer = High(Integer)): Integer; … … 240 245 end; 241 246 247 function TChronisBase.AddGroup(Name: string; ParentGroupId: Integer): Integer; 248 var 249 DbRows: TDbRows; 250 Data: TDictionaryStringString; 251 begin 252 try 253 DbRows := TDbRows.Create; 254 Data := TDictionaryStringString.Create; 255 Data.Add('Name', Name); 256 Data.Add('Parent', IntToStr(ParentGroupId)); 257 Database.Insert(ObjectGroupTable, Data); 258 Result := Database.LastInsertId; 259 finally 260 Data.Free; 261 DbRows.Free; 262 end; 263 end; 264 242 265 function TChronisBase.AddObject(Name, TableName, Schema: string; 243 266 GroupId: Integer): Integer; … … 262 285 263 286 function TChronisBase.AddProperty(ObjectId: Integer; Name, ColumnName: string; 264 DataType: Integer): Integer;287 CustomType: Integer): Integer; 265 288 var 266 289 DbRows: TDbRows; … … 273 296 Data.Add('Object', IntToStr(ObjectId)); 274 297 Data.Add('ColumnName', ColumnName); 275 Data.Add('CustomType', IntToStr( DataType));298 Data.Add('CustomType', IntToStr(CustomType)); 276 299 Data.Add('Editable', '1'); 277 300 Database.Insert(PropertyTable, Data); … … 306 329 Data.Add('Default', IntToStr(Default)); 307 330 Database.Insert(TypeNumber, Data); 331 //CustomTypeId := Database.LastInsertId; 332 333 Result := AddProperty(ObjectId, Name, ColumnName, CustomTypeId); 334 finally 335 Data.Free; 336 DbRows.Free; 337 end; 338 end; 339 340 function TChronisBase.AddPropertyFloat(ObjectId: Integer; Name, 341 ColumnName: string; Default: Integer; Min: Integer; Max: Integer): Integer; 342 var 343 DbRows: TDbRows; 344 Data: TDictionaryStringString; 345 CustomTypeId: Integer; 346 begin 347 try 348 DbRows := TDbRows.Create; 349 Data := TDictionaryStringString.Create; 350 351 Data.Clear; 352 Data.Add('Type', IntToStr(Integer(vtFloat))); 353 Database.Insert(CustomTypeTableName, Data); 354 CustomTypeId := Database.LastInsertId; 355 356 Data.Clear; 357 Data.Add('CustomType', IntToStr(CustomTypeId)); 358 Data.Add('Min', IntToStr(Min)); 359 Data.Add('Max', IntToStr(Max)); 360 Data.Add('Default', IntToStr(Default)); 361 Database.Insert(TypeFloat, Data); 308 362 //CustomTypeId := Database.LastInsertId; 309 363 -
trunk/chronis.lpi
r18 r19 104 104 </Item6> 105 105 </RequiredPackages> 106 <Units Count="6 0">106 <Units Count="64"> 107 107 <Unit0> 108 108 <Filename Value="chronis.lpr"/> … … 121 121 <TopLine Value="330"/> 122 122 <CursorPos X="1" Y="347"/> 123 <UsageCount Value="4 3"/>123 <UsageCount Value="40"/> 124 124 <DefaultSyntaxHighlighter Value="Delphi"/> 125 125 </Unit1> … … 133 133 <TopLine Value="118"/> 134 134 <CursorPos X="25" Y="144"/> 135 <UsageCount Value="9 7"/>135 <UsageCount Value="94"/> 136 136 <DefaultSyntaxHighlighter Value="Delphi"/> 137 137 </Unit2> … … 145 145 <TopLine Value="1"/> 146 146 <CursorPos X="24" Y="14"/> 147 <UsageCount Value="9 7"/>147 <UsageCount Value="94"/> 148 148 <DefaultSyntaxHighlighter Value="Delphi"/> 149 149 </Unit3> … … 164 164 <TopLine Value="58"/> 165 165 <CursorPos X="73" Y="232"/> 166 <UsageCount Value="26 3"/>166 <UsageCount Value="260"/> 167 167 <DefaultSyntaxHighlighter Value="Delphi"/> 168 168 </Unit5> … … 171 171 <IsPartOfProject Value="True"/> 172 172 <UnitName Value="URegistry"/> 173 <EditorIndex Value="1 3"/>173 <EditorIndex Value="18"/> 174 174 <WindowIndex Value="0"/> 175 175 <TopLine Value="19"/> … … 200 200 <ResourceBaseClass Value="Form"/> 201 201 <UnitName Value="UItemEdit"/> 202 <EditorIndex Value=" 4"/>202 <EditorIndex Value="1"/> 203 203 <WindowIndex Value="0"/> 204 204 <TopLine Value="89"/> … … 216 216 <ResourceBaseClass Value="Form"/> 217 217 <UnitName Value="ULoginForm"/> 218 <EditorIndex Value="1 4"/>218 <EditorIndex Value="19"/> 219 219 <WindowIndex Value="0"/> 220 220 <TopLine Value="14"/> … … 232 232 <ResourceBaseClass Value="Form"/> 233 233 <UnitName Value="UMainForm"/> 234 <EditorIndex Value=" 6"/>235 <WindowIndex Value="0"/> 236 <TopLine Value=" 592"/>237 <CursorPos X="1" Y=" 602"/>234 <EditorIndex Value="3"/> 235 <WindowIndex Value="0"/> 236 <TopLine Value="339"/> 237 <CursorPos X="1" Y="351"/> 238 238 <UsageCount Value="317"/> 239 239 <Loaded Value="True"/> … … 245 245 <IsPartOfProject Value="True"/> 246 246 <UnitName Value="UTreeState"/> 247 <EditorIndex Value="1 2"/>247 <EditorIndex Value="17"/> 248 248 <WindowIndex Value="0"/> 249 249 <TopLine Value="1"/> … … 259 259 <ResourceBaseClass Value="Form"/> 260 260 <UnitName Value="UItemAdd"/> 261 <EditorIndex Value=" 5"/>262 <WindowIndex Value="0"/> 263 <TopLine Value=" 120"/>264 <CursorPos X=" 34" Y="137"/>261 <EditorIndex Value="2"/> 262 <WindowIndex Value="0"/> 263 <TopLine Value="51"/> 264 <CursorPos X="17" Y="58"/> 265 265 <UsageCount Value="313"/> 266 266 <Loaded Value="True"/> … … 269 269 </Unit12> 270 270 <Unit13> 271 <Filename Value=" /usr/share/fpcsrc/rtl/objpas/classes/classesh.inc"/>272 <WindowIndex Value="0"/> 273 <TopLine Value=" 963"/>274 <CursorPos X=" 3" Y="974"/>275 <UsageCount Value=" 2"/>271 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/> 272 <WindowIndex Value="0"/> 273 <TopLine Value="43"/> 274 <CursorPos X="1" Y="60"/> 275 <UsageCount Value="6"/> 276 276 <DefaultSyntaxHighlighter Value="Delphi"/> 277 277 </Unit13> 278 278 <Unit14> 279 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/Generic Dictionary.inc"/>280 <WindowIndex Value="0"/> 281 <TopLine Value=" 43"/>282 <CursorPos X="1" Y=" 60"/>283 <UsageCount Value=" 9"/>279 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/> 280 <WindowIndex Value="0"/> 281 <TopLine Value="68"/> 282 <CursorPos X="1" Y="85"/> 283 <UsageCount Value="3"/> 284 284 <DefaultSyntaxHighlighter Value="Delphi"/> 285 285 </Unit14> 286 286 <Unit15> 287 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/> 288 <WindowIndex Value="0"/> 289 <TopLine Value="68"/> 290 <CursorPos X="1" Y="85"/> 291 <UsageCount Value="6"/> 287 <Filename Value="/usr/share/fpcsrc/2.4.0/packages/fcl-registry/src/registry.pp"/> 288 <UnitName Value="registry"/> 289 <WindowIndex Value="0"/> 290 <TopLine Value="1"/> 291 <CursorPos X="6" Y="1"/> 292 <UsageCount Value="9"/> 292 293 <DefaultSyntaxHighlighter Value="Delphi"/> 293 294 </Unit15> 294 295 <Unit16> 295 <Filename Value="../../../lazarus/trunk/lcl/forms.pp"/> 296 <UnitName Value="Forms"/> 297 <WindowIndex Value="0"/> 298 <TopLine Value="593"/> 299 <CursorPos X="15" Y="606"/> 300 <UsageCount Value="1"/> 296 <Filename Value="/usr/share/fpcsrc/2.4.0/packages/fcl-registry/src/regdef.inc"/> 297 <WindowIndex Value="0"/> 298 <TopLine Value="1"/> 299 <CursorPos X="3" Y="21"/> 300 <UsageCount Value="9"/> 301 301 <DefaultSyntaxHighlighter Value="Delphi"/> 302 302 </Unit16> 303 303 <Unit17> 304 <Filename Value="../../../lazarus/trunk/lcl/include/customform.inc"/> 305 <WindowIndex Value="0"/> 306 <TopLine Value="2104"/> 307 <CursorPos X="3" Y="2109"/> 308 <UsageCount Value="1"/> 304 <Filename Value="USystem.pas"/> 305 <IsPartOfProject Value="True"/> 306 <UnitName Value="USystem"/> 307 <EditorIndex Value="15"/> 308 <WindowIndex Value="0"/> 309 <TopLine Value="95"/> 310 <CursorPos X="31" Y="112"/> 311 <UsageCount Value="150"/> 312 <Loaded Value="True"/> 309 313 <DefaultSyntaxHighlighter Value="Delphi"/> 310 314 </Unit17> 311 315 <Unit18> 312 <Filename Value=" /usr/share/fpcsrc/2.4.0/packages/fcl-registry/src/registry.pp"/>313 <UnitName Value=" registry"/>314 <WindowIndex Value="0"/> 315 <TopLine Value=" 1"/>316 <CursorPos X=" 6" Y="1"/>317 <UsageCount Value=" 12"/>316 <Filename Value="../../../lazarus/lcl/comctrls.pp"/> 317 <UnitName Value="ComCtrls"/> 318 <WindowIndex Value="0"/> 319 <TopLine Value="912"/> 320 <CursorPos X="14" Y="929"/> 321 <UsageCount Value="6"/> 318 322 <DefaultSyntaxHighlighter Value="Delphi"/> 319 323 </Unit18> 320 324 <Unit19> 321 <Filename Value=" /usr/share/fpcsrc/2.4.0/packages/fcl-registry/src/regdef.inc"/>322 <WindowIndex Value="0"/> 323 <TopLine Value="1"/> 324 <CursorPos X=" 3" Y="21"/>325 <UsageCount Value=" 12"/>325 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/> 326 <WindowIndex Value="0"/> 327 <TopLine Value="1"/> 328 <CursorPos X="15" Y="18"/> 329 <UsageCount Value="4"/> 326 330 <DefaultSyntaxHighlighter Value="Delphi"/> 327 331 </Unit19> 328 332 <Unit20> 329 <Filename Value="USystem.pas"/> 330 <IsPartOfProject Value="True"/> 331 <UnitName Value="USystem"/> 332 <EditorIndex Value="10"/> 333 <WindowIndex Value="0"/> 334 <TopLine Value="202"/> 335 <CursorPos X="67" Y="214"/> 336 <UsageCount Value="111"/> 337 <Loaded Value="True"/> 333 <Filename Value="/usr/share/fpcsrc/2.4.0/rtl/inc/ustringh.inc"/> 334 <WindowIndex Value="0"/> 335 <TopLine Value="1"/> 336 <CursorPos X="11" Y="30"/> 337 <UsageCount Value="1"/> 338 338 <DefaultSyntaxHighlighter Value="Delphi"/> 339 339 </Unit20> 340 340 <Unit21> 341 <Filename Value="../../../lazarus/lcl/comctrls.pp"/>342 <UnitName Value="ComCtrls"/>343 <WindowIndex Value="0"/>344 <TopLine Value="912"/>345 <CursorPos X="14" Y="929"/>346 <UsageCount Value="9"/>347 <DefaultSyntaxHighlighter Value="Delphi"/>348 </Unit21>349 <Unit22>350 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/>351 <WindowIndex Value="0"/>352 <TopLine Value="1"/>353 <CursorPos X="15" Y="18"/>354 <UsageCount Value="7"/>355 <DefaultSyntaxHighlighter Value="Delphi"/>356 </Unit22>357 <Unit23>358 <Filename Value="/usr/share/fpcsrc/2.4.0/rtl/inc/ustringh.inc"/>359 <WindowIndex Value="0"/>360 <TopLine Value="1"/>361 <CursorPos X="11" Y="30"/>362 <UsageCount Value="4"/>363 <DefaultSyntaxHighlighter Value="Delphi"/>364 </Unit23>365 <Unit24>366 341 <Filename Value="UCore.pas"/> 367 342 <IsPartOfProject Value="True"/> … … 369 344 <ResourceBaseClass Value="DataModule"/> 370 345 <UnitName Value="UCore"/> 371 <EditorIndex Value=" 9"/>346 <EditorIndex Value="14"/> 372 347 <WindowIndex Value="0"/> 373 348 <TopLine Value="34"/> 374 349 <CursorPos X="59" Y="46"/> 375 <UsageCount Value=" 95"/>350 <UsageCount Value="134"/> 376 351 <Loaded Value="True"/> 377 352 <LoadedDesigner Value="True"/> 378 353 <DefaultSyntaxHighlighter Value="Delphi"/> 379 </Unit2 4>380 <Unit2 5>354 </Unit21> 355 <Unit22> 381 356 <Filename Value="Forms/USettingForm.pas"/> 382 357 <IsPartOfProject Value="True"/> … … 384 359 <ResourceBaseClass Value="Form"/> 385 360 <UnitName Value="USettingForm"/> 386 <IsVisibleTab Value="True"/> 387 <EditorIndex Value="8"/> 388 <WindowIndex Value="0"/> 389 <TopLine Value="40"/> 390 <CursorPos X="43" Y="41"/> 391 <UsageCount Value="94"/> 361 <EditorIndex Value="13"/> 362 <WindowIndex Value="0"/> 363 <TopLine Value="1"/> 364 <CursorPos X="46" Y="11"/> 365 <UsageCount Value="133"/> 392 366 <Loaded Value="True"/> 393 367 <LoadedDesigner Value="True"/> 368 <DefaultSyntaxHighlighter Value="Delphi"/> 369 </Unit22> 370 <Unit23> 371 <Filename Value="Application/UApplicationInfo.pas"/> 372 <IsPartOfProject Value="True"/> 373 <UnitName Value="UApplicationInfo"/> 374 <WindowIndex Value="0"/> 375 <TopLine Value="37"/> 376 <CursorPos X="21" Y="52"/> 377 <UsageCount Value="133"/> 378 <DefaultSyntaxHighlighter Value="Delphi"/> 379 </Unit23> 380 <Unit24> 381 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Specialized/SpecializedList.pas"/> 382 <UnitName Value="SpecializedList"/> 383 <WindowIndex Value="0"/> 384 <TopLine Value="97"/> 385 <CursorPos X="26" Y="109"/> 386 <UsageCount Value="4"/> 387 <DefaultSyntaxHighlighter Value="Delphi"/> 388 </Unit24> 389 <Unit25> 390 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/> 391 <WindowIndex Value="0"/> 392 <TopLine Value="16"/> 393 <CursorPos X="14" Y="58"/> 394 <UsageCount Value="4"/> 394 395 <DefaultSyntaxHighlighter Value="Delphi"/> 395 396 </Unit25> 396 397 <Unit26> 397 <Filename Value="Application/UApplicationInfo.pas"/> 398 <IsPartOfProject Value="True"/> 399 <UnitName Value="UApplicationInfo"/> 400 <WindowIndex Value="0"/> 401 <TopLine Value="37"/> 402 <CursorPos X="21" Y="52"/> 403 <UsageCount Value="94"/> 398 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/> 399 <WindowIndex Value="0"/> 400 <TopLine Value="87"/> 401 <CursorPos X="6" Y="103"/> 402 <UsageCount Value="4"/> 404 403 <DefaultSyntaxHighlighter Value="Delphi"/> 405 404 </Unit26> 406 405 <Unit27> 407 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Specialized/SpecializedList.pas"/> 408 <UnitName Value="SpecializedList"/> 409 <WindowIndex Value="0"/> 410 <TopLine Value="97"/> 411 <CursorPos X="26" Y="109"/> 412 <UsageCount Value="7"/> 406 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/inc/objpash.inc"/> 407 <WindowIndex Value="0"/> 408 <TopLine Value="372"/> 409 <CursorPos X="7" Y="384"/> 410 <UsageCount Value="1"/> 413 411 <DefaultSyntaxHighlighter Value="Delphi"/> 414 412 </Unit27> 415 413 <Unit28> 416 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList .inc"/>417 <WindowIndex Value="0"/> 418 <TopLine Value=" 16"/>419 <CursorPos X=" 14" Y="58"/>420 <UsageCount Value=" 7"/>414 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/> 415 <WindowIndex Value="0"/> 416 <TopLine Value="82"/> 417 <CursorPos X="40" Y="94"/> 418 <UsageCount Value="1"/> 421 419 <DefaultSyntaxHighlighter Value="Delphi"/> 422 420 </Unit28> 423 421 <Unit29> 424 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/> 425 <WindowIndex Value="0"/> 426 <TopLine Value="87"/> 427 <CursorPos X="6" Y="103"/> 428 <UsageCount Value="7"/> 422 <Filename Value="H:/PascalClassLibrary/CoolTranslator/UCoolTranslator.pas"/> 423 <UnitName Value="UCoolTranslator"/> 424 <WindowIndex Value="0"/> 425 <TopLine Value="301"/> 426 <CursorPos X="3" Y="305"/> 427 <UsageCount Value="1"/> 429 428 <DefaultSyntaxHighlighter Value="Delphi"/> 430 429 </Unit29> 431 430 <Unit30> 432 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/inc/objpash.inc"/> 433 <WindowIndex Value="0"/> 434 <TopLine Value="372"/> 435 <CursorPos X="7" Y="384"/> 436 <UsageCount Value="4"/> 431 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/dialogs.pp"/> 432 <UnitName Value="Dialogs"/> 433 <WindowIndex Value="0"/> 434 <TopLine Value="487"/> 435 <CursorPos X="44" Y="500"/> 436 <UsageCount Value="24"/> 437 437 <DefaultSyntaxHighlighter Value="Delphi"/> 438 438 </Unit30> 439 439 <Unit31> 440 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/> 441 <WindowIndex Value="0"/> 442 <TopLine Value="82"/> 443 <CursorPos X="40" Y="94"/> 444 <UsageCount Value="4"/> 440 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/controls.pp"/> 441 <UnitName Value="Controls"/> 442 <WindowIndex Value="0"/> 443 <TopLine Value="1661"/> 444 <CursorPos X="24" Y="1673"/> 445 <UsageCount Value="24"/> 445 446 <DefaultSyntaxHighlighter Value="Delphi"/> 446 447 </Unit31> 447 448 <Unit32> 448 <Filename Value="H:/PascalClassLibrary/CoolTranslator/UCoolTranslator.pas"/> 449 <UnitName Value="UCoolTranslator"/> 450 <WindowIndex Value="0"/> 451 <TopLine Value="301"/> 452 <CursorPos X="3" Y="305"/> 453 <UsageCount Value="4"/> 449 <Filename Value="Application/UDataTypes.pas"/> 450 <IsPartOfProject Value="True"/> 451 <UnitName Value="UDataTypes"/> 452 <EditorIndex Value="16"/> 453 <WindowIndex Value="0"/> 454 <TopLine Value="189"/> 455 <CursorPos X="1" Y="207"/> 456 <UsageCount Value="87"/> 457 <Loaded Value="True"/> 454 458 <DefaultSyntaxHighlighter Value="Delphi"/> 455 459 </Unit32> 456 460 <Unit33> 457 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/ dialogs.pp"/>458 <UnitName Value=" Dialogs"/>459 <WindowIndex Value="0"/> 460 <TopLine Value=" 487"/>461 <CursorPos X=" 44" Y="500"/>462 <UsageCount Value=" 27"/>461 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/stdctrls.pp"/> 462 <UnitName Value="StdCtrls"/> 463 <WindowIndex Value="0"/> 464 <TopLine Value="1446"/> 465 <CursorPos X="26" Y="1458"/> 466 <UsageCount Value="5"/> 463 467 <DefaultSyntaxHighlighter Value="Delphi"/> 464 468 </Unit33> 465 469 <Unit34> 466 <Filename Value="H:/Lazarus/0.9.31_2.5.1/ lcl/controls.pp"/>467 <UnitName Value=" Controls"/>468 <WindowIndex Value="0"/> 469 <TopLine Value=" 1661"/>470 <CursorPos X=" 24" Y="1673"/>471 <UsageCount Value=" 27"/>470 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/win32/system.pp"/> 471 <UnitName Value="System"/> 472 <WindowIndex Value="0"/> 473 <TopLine Value="4"/> 474 <CursorPos X="1" Y="16"/> 475 <UsageCount Value="10"/> 472 476 <DefaultSyntaxHighlighter Value="Delphi"/> 473 477 </Unit34> 474 478 <Unit35> 475 <Filename Value="Application/UDataTypes.pas"/> 476 <IsPartOfProject Value="True"/> 477 <UnitName Value="UDataTypes"/> 478 <EditorIndex Value="11"/> 479 <WindowIndex Value="0"/> 480 <TopLine Value="189"/> 481 <CursorPos X="1" Y="207"/> 482 <UsageCount Value="48"/> 483 <Loaded Value="True"/> 479 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 480 <UnitName Value="USqlDatabase"/> 481 <WindowIndex Value="0"/> 482 <TopLine Value="1"/> 483 <CursorPos X="1" Y="1"/> 484 <UsageCount Value="6"/> 484 485 <DefaultSyntaxHighlighter Value="Delphi"/> 485 486 </Unit35> 486 487 <Unit36> 487 <Filename Value="H:/ Lazarus/0.9.31_2.5.1/lcl/stdctrls.pp"/>488 <UnitName Value=" StdCtrls"/>489 <WindowIndex Value="0"/> 490 <TopLine Value="1 446"/>491 <CursorPos X=" 26" Y="1458"/>492 <UsageCount Value=" 8"/>488 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPServer.pas"/> 489 <UnitName Value="UHTTPServer"/> 490 <WindowIndex Value="0"/> 491 <TopLine Value="1"/> 492 <CursorPos X="1" Y="1"/> 493 <UsageCount Value="6"/> 493 494 <DefaultSyntaxHighlighter Value="Delphi"/> 494 495 </Unit36> 495 496 <Unit37> 496 <Filename Value="H:/ Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/win32/system.pp"/>497 <UnitName Value=" System"/>498 <WindowIndex Value="0"/> 499 <TopLine Value=" 4"/>500 <CursorPos X=" 1" Y="16"/>501 <UsageCount Value=" 13"/>497 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/CoolWeb.pas"/> 498 <UnitName Value="CoolWeb"/> 499 <WindowIndex Value="0"/> 500 <TopLine Value="5"/> 501 <CursorPos X="50" Y="15"/> 502 <UsageCount Value="6"/> 502 503 <DefaultSyntaxHighlighter Value="Delphi"/> 503 504 </Unit37> 504 505 <Unit38> 506 <Filename Value="H:/PascalClassLibrary/Common/UDebugLog.pas"/> 507 <UnitName Value="UDebugLog"/> 508 <WindowIndex Value="0"/> 509 <TopLine Value="88"/> 510 <CursorPos X="1" Y="109"/> 511 <UsageCount Value="6"/> 512 <DefaultSyntaxHighlighter Value="Delphi"/> 513 </Unit38> 514 <Unit39> 515 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/classesh.inc"/> 516 <WindowIndex Value="0"/> 517 <TopLine Value="1639"/> 518 <CursorPos X="17" Y="1651"/> 519 <UsageCount Value="6"/> 520 <DefaultSyntaxHighlighter Value="Delphi"/> 521 </Unit39> 522 <Unit40> 523 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/Common/UCommon.pas"/> 524 <UnitName Value="UCommon"/> 525 <WindowIndex Value="0"/> 526 <TopLine Value="28"/> 527 <CursorPos X="1" Y="1"/> 528 <UsageCount Value="6"/> 529 <DefaultSyntaxHighlighter Value="Delphi"/> 530 </Unit40> 531 <Unit41> 532 <Filename Value="H:/PascalClassLibrary/Common/UCommon.pas"/> 533 <UnitName Value="UCommon"/> 534 <WindowIndex Value="0"/> 535 <TopLine Value="37"/> 536 <CursorPos X="1" Y="1"/> 537 <UsageCount Value="6"/> 538 <DefaultSyntaxHighlighter Value="Delphi"/> 539 </Unit41> 540 <Unit42> 541 <Filename Value="H:/PascalClassLibrary/Common/Common.pas"/> 542 <UnitName Value="Common"/> 543 <WindowIndex Value="0"/> 544 <TopLine Value="1"/> 545 <CursorPos X="36" Y="13"/> 546 <UsageCount Value="6"/> 547 <DefaultSyntaxHighlighter Value="Delphi"/> 548 </Unit42> 549 <Unit43> 550 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSessionFile.pas"/> 551 <UnitName Value="UHTTPSessionFile"/> 552 <WindowIndex Value="0"/> 553 <TopLine Value="15"/> 554 <CursorPos X="19" Y="27"/> 555 <UsageCount Value="6"/> 556 <DefaultSyntaxHighlighter Value="Delphi"/> 557 </Unit43> 558 <Unit44> 559 <Filename Value="H:/PascalClassLibrary/Common/StopWatch.pas"/> 560 <UnitName Value="StopWatch"/> 561 <WindowIndex Value="0"/> 562 <TopLine Value="19"/> 563 <CursorPos X="1" Y="1"/> 564 <UsageCount Value="6"/> 565 <DefaultSyntaxHighlighter Value="Delphi"/> 566 </Unit44> 567 <Unit45> 568 <Filename Value="H:/PascalClassLibrary/Common/UThreading.pas"/> 569 <UnitName Value="UThreading"/> 570 <WindowIndex Value="0"/> 571 <TopLine Value="28"/> 572 <CursorPos X="1" Y="1"/> 573 <UsageCount Value="6"/> 574 <DefaultSyntaxHighlighter Value="Delphi"/> 575 </Unit45> 576 <Unit46> 577 <Filename Value="H:/PascalClassLibrary/Common/UPrefixMultiplier.pas"/> 578 <UnitName Value="UPrefixMultiplier"/> 579 <WindowIndex Value="0"/> 580 <TopLine Value="1"/> 581 <CursorPos X="1" Y="1"/> 582 <UsageCount Value="6"/> 583 <DefaultSyntaxHighlighter Value="Delphi"/> 584 </Unit46> 585 <Unit47> 586 <Filename Value="H:/PascalClassLibrary/Common/UDelay.pas"/> 587 <UnitName Value="UDelay"/> 588 <WindowIndex Value="0"/> 589 <TopLine Value="16"/> 590 <CursorPos X="1" Y="1"/> 591 <UsageCount Value="6"/> 592 <DefaultSyntaxHighlighter Value="Delphi"/> 593 </Unit47> 594 <Unit48> 595 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 596 <WindowIndex Value="0"/> 597 <TopLine Value="8"/> 598 <CursorPos X="62" Y="20"/> 599 <UsageCount Value="6"/> 600 <DefaultSyntaxHighlighter Value="Delphi"/> 601 </Unit48> 602 <Unit49> 603 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstrh.inc"/> 604 <WindowIndex Value="0"/> 605 <TopLine Value="70"/> 606 <CursorPos X="10" Y="82"/> 607 <UsageCount Value="6"/> 608 <DefaultSyntaxHighlighter Value="Delphi"/> 609 </Unit49> 610 <Unit50> 611 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstr.inc"/> 612 <WindowIndex Value="0"/> 613 <TopLine Value="141"/> 614 <CursorPos X="3" Y="144"/> 615 <UsageCount Value="6"/> 616 <DefaultSyntaxHighlighter Value="Delphi"/> 617 </Unit50> 618 <Unit51> 619 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/comctrls.pp"/> 620 <UnitName Value="ComCtrls"/> 621 <WindowIndex Value="0"/> 622 <TopLine Value="602"/> 623 <CursorPos X="17" Y="614"/> 624 <UsageCount Value="8"/> 625 <DefaultSyntaxHighlighter Value="Delphi"/> 626 </Unit51> 627 <Unit52> 628 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/stringl.inc"/> 629 <WindowIndex Value="0"/> 630 <TopLine Value="575"/> 631 <CursorPos X="15" Y="579"/> 632 <UsageCount Value="7"/> 633 <DefaultSyntaxHighlighter Value="Delphi"/> 634 </Unit52> 635 <Unit53> 636 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/include/customlistview.inc"/> 637 <WindowIndex Value="0"/> 638 <TopLine Value="550"/> 639 <CursorPos X="1" Y="561"/> 640 <UsageCount Value="26"/> 641 </Unit53> 642 <Unit54> 643 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/win32/classes.pp"/> 644 <UnitName Value="Classes"/> 645 <WindowIndex Value="0"/> 646 <TopLine Value="1"/> 647 <CursorPos X="19" Y="45"/> 648 <UsageCount Value="10"/> 649 </Unit54> 650 <Unit55> 651 <Filename Value="Forms/UImportStructureForm.pas"/> 652 <IsPartOfProject Value="True"/> 653 <ComponentName Value="ImportStructureForm"/> 654 <ResourceBaseClass Value="Form"/> 655 <UnitName Value="UImportStructureForm"/> 656 <IsVisibleTab Value="True"/> 657 <EditorIndex Value="9"/> 658 <WindowIndex Value="0"/> 659 <TopLine Value="81"/> 660 <CursorPos X="23" Y="99"/> 661 <UsageCount Value="23"/> 662 <Loaded Value="True"/> 663 <LoadedDesigner Value="True"/> 664 <DefaultSyntaxHighlighter Value="Delphi"/> 665 </Unit55> 666 <Unit56> 667 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/> 668 <EditorIndex Value="12"/> 669 <WindowIndex Value="0"/> 670 <TopLine Value="1"/> 671 <CursorPos X="24" Y="11"/> 672 <UsageCount Value="11"/> 673 <Loaded Value="True"/> 674 </Unit56> 675 <Unit57> 676 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/include/control.inc"/> 677 <EditorIndex Value="11"/> 678 <WindowIndex Value="0"/> 679 <TopLine Value="2274"/> 680 <CursorPos X="1" Y="2286"/> 681 <UsageCount Value="10"/> 682 <Loaded Value="True"/> 683 </Unit57> 684 <Unit58> 505 685 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 506 686 <UnitName Value="USqlDatabase"/> 507 <WindowIndex Value="0"/> 508 <TopLine Value="1"/> 509 <CursorPos X="1" Y="1"/> 510 <UsageCount Value="9"/> 511 <DefaultSyntaxHighlighter Value="Delphi"/> 512 </Unit38> 513 <Unit39> 514 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPServer.pas"/> 515 <UnitName Value="UHTTPServer"/> 516 <WindowIndex Value="0"/> 517 <TopLine Value="1"/> 518 <CursorPos X="1" Y="1"/> 519 <UsageCount Value="9"/> 520 <DefaultSyntaxHighlighter Value="Delphi"/> 521 </Unit39> 522 <Unit40> 523 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/CoolWeb.pas"/> 524 <UnitName Value="CoolWeb"/> 525 <WindowIndex Value="0"/> 526 <TopLine Value="5"/> 527 <CursorPos X="50" Y="15"/> 528 <UsageCount Value="9"/> 529 <DefaultSyntaxHighlighter Value="Delphi"/> 530 </Unit40> 531 <Unit41> 532 <Filename Value="H:/PascalClassLibrary/Common/UDebugLog.pas"/> 533 <UnitName Value="UDebugLog"/> 534 <WindowIndex Value="0"/> 535 <TopLine Value="88"/> 536 <CursorPos X="1" Y="109"/> 537 <UsageCount Value="9"/> 538 <DefaultSyntaxHighlighter Value="Delphi"/> 539 </Unit41> 540 <Unit42> 541 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/classesh.inc"/> 542 <WindowIndex Value="0"/> 543 <TopLine Value="1639"/> 544 <CursorPos X="17" Y="1651"/> 545 <UsageCount Value="9"/> 546 <DefaultSyntaxHighlighter Value="Delphi"/> 547 </Unit42> 548 <Unit43> 549 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/Common/UCommon.pas"/> 550 <UnitName Value="UCommon"/> 551 <WindowIndex Value="0"/> 552 <TopLine Value="28"/> 553 <CursorPos X="1" Y="1"/> 554 <UsageCount Value="9"/> 555 <DefaultSyntaxHighlighter Value="Delphi"/> 556 </Unit43> 557 <Unit44> 558 <Filename Value="H:/PascalClassLibrary/Common/UCommon.pas"/> 559 <UnitName Value="UCommon"/> 560 <WindowIndex Value="0"/> 561 <TopLine Value="37"/> 562 <CursorPos X="1" Y="1"/> 563 <UsageCount Value="9"/> 564 <DefaultSyntaxHighlighter Value="Delphi"/> 565 </Unit44> 566 <Unit45> 567 <Filename Value="H:/PascalClassLibrary/Common/Common.pas"/> 568 <UnitName Value="Common"/> 569 <WindowIndex Value="0"/> 570 <TopLine Value="1"/> 571 <CursorPos X="36" Y="13"/> 572 <UsageCount Value="9"/> 573 <DefaultSyntaxHighlighter Value="Delphi"/> 574 </Unit45> 575 <Unit46> 576 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSessionFile.pas"/> 577 <UnitName Value="UHTTPSessionFile"/> 578 <WindowIndex Value="0"/> 579 <TopLine Value="15"/> 580 <CursorPos X="19" Y="27"/> 581 <UsageCount Value="9"/> 582 <DefaultSyntaxHighlighter Value="Delphi"/> 583 </Unit46> 584 <Unit47> 585 <Filename Value="H:/PascalClassLibrary/Common/StopWatch.pas"/> 586 <UnitName Value="StopWatch"/> 587 <WindowIndex Value="0"/> 588 <TopLine Value="19"/> 589 <CursorPos X="1" Y="1"/> 590 <UsageCount Value="9"/> 591 <DefaultSyntaxHighlighter Value="Delphi"/> 592 </Unit47> 593 <Unit48> 594 <Filename Value="H:/PascalClassLibrary/Common/UThreading.pas"/> 595 <UnitName Value="UThreading"/> 596 <WindowIndex Value="0"/> 597 <TopLine Value="28"/> 598 <CursorPos X="1" Y="1"/> 599 <UsageCount Value="9"/> 600 <DefaultSyntaxHighlighter Value="Delphi"/> 601 </Unit48> 602 <Unit49> 603 <Filename Value="H:/PascalClassLibrary/Common/UPrefixMultiplier.pas"/> 604 <UnitName Value="UPrefixMultiplier"/> 605 <WindowIndex Value="0"/> 606 <TopLine Value="1"/> 607 <CursorPos X="1" Y="1"/> 608 <UsageCount Value="9"/> 609 <DefaultSyntaxHighlighter Value="Delphi"/> 610 </Unit49> 611 <Unit50> 612 <Filename Value="H:/PascalClassLibrary/Common/UDelay.pas"/> 613 <UnitName Value="UDelay"/> 614 <WindowIndex Value="0"/> 615 <TopLine Value="16"/> 616 <CursorPos X="1" Y="1"/> 617 <UsageCount Value="9"/> 618 <DefaultSyntaxHighlighter Value="Delphi"/> 619 </Unit50> 620 <Unit51> 621 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 622 <WindowIndex Value="0"/> 623 <TopLine Value="8"/> 624 <CursorPos X="62" Y="20"/> 625 <UsageCount Value="9"/> 626 <DefaultSyntaxHighlighter Value="Delphi"/> 627 </Unit51> 628 <Unit52> 629 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstrh.inc"/> 630 <WindowIndex Value="0"/> 631 <TopLine Value="70"/> 632 <CursorPos X="10" Y="82"/> 633 <UsageCount Value="9"/> 634 <DefaultSyntaxHighlighter Value="Delphi"/> 635 </Unit52> 636 <Unit53> 637 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstr.inc"/> 638 <WindowIndex Value="0"/> 639 <TopLine Value="141"/> 640 <CursorPos X="3" Y="144"/> 641 <UsageCount Value="9"/> 642 <DefaultSyntaxHighlighter Value="Delphi"/> 643 </Unit53> 644 <Unit54> 645 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/comctrls.pp"/> 646 <UnitName Value="ComCtrls"/> 647 <WindowIndex Value="0"/> 648 <TopLine Value="602"/> 649 <CursorPos X="17" Y="614"/> 650 <UsageCount Value="11"/> 651 <DefaultSyntaxHighlighter Value="Delphi"/> 652 </Unit54> 653 <Unit55> 654 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/stringl.inc"/> 655 <WindowIndex Value="0"/> 656 <TopLine Value="575"/> 657 <CursorPos X="15" Y="579"/> 687 <EditorIndex Value="10"/> 688 <WindowIndex Value="0"/> 689 <TopLine Value="235"/> 690 <CursorPos X="52" Y="248"/> 658 691 <UsageCount Value="10"/> 659 <DefaultSyntaxHighlighter Value="Delphi"/>660 </Unit55>661 <Unit56>662 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/classesh.inc"/>663 <EditorIndex Value="2"/>664 <WindowIndex Value="0"/>665 <TopLine Value="623"/>666 <CursorPos X="58" Y="635"/>667 <UsageCount Value="11"/>668 <Loaded Value="True"/>669 </Unit56>670 <Unit57>671 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/stringl.inc"/>672 <EditorIndex Value="3"/>673 <WindowIndex Value="0"/>674 <TopLine Value="426"/>675 <CursorPos X="3" Y="429"/>676 <UsageCount Value="11"/>677 <Loaded Value="True"/>678 </Unit57>679 <Unit58>680 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/>681 <EditorIndex Value="1"/>682 <WindowIndex Value="0"/>683 <TopLine Value="120"/>684 <CursorPos X="1" Y="132"/>685 <UsageCount Value="11"/>686 692 <Loaded Value="True"/> 687 693 </Unit58> 688 694 <Unit59> 689 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/include/customlistview.inc"/> 695 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 696 <EditorIndex Value="4"/> 697 <WindowIndex Value="0"/> 698 <TopLine Value="71"/> 699 <CursorPos X="39" Y="78"/> 700 <UsageCount Value="10"/> 701 <Loaded Value="True"/> 702 </Unit59> 703 <Unit60> 704 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstrh.inc"/> 705 <EditorIndex Value="5"/> 706 <WindowIndex Value="0"/> 707 <TopLine Value="71"/> 708 <CursorPos X="10" Y="83"/> 709 <UsageCount Value="10"/> 710 <Loaded Value="True"/> 711 </Unit60> 712 <Unit61> 713 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstr.inc"/> 714 <EditorIndex Value="6"/> 715 <WindowIndex Value="0"/> 716 <TopLine Value="162"/> 717 <CursorPos X="13" Y="164"/> 718 <UsageCount Value="10"/> 719 <Loaded Value="True"/> 720 </Unit61> 721 <Unit62> 722 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/inc/systemh.inc"/> 690 723 <EditorIndex Value="7"/> 691 724 <WindowIndex Value="0"/> 692 <TopLine Value="5 50"/>693 <CursorPos X="1 " Y="561"/>725 <TopLine Value="516"/> 726 <CursorPos X="11" Y="528"/> 694 727 <UsageCount Value="10"/> 695 728 <Loaded Value="True"/> 696 </Unit59> 729 </Unit62> 730 <Unit63> 731 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/i386/i386.inc"/> 732 <EditorIndex Value="8"/> 733 <WindowIndex Value="0"/> 734 <TopLine Value="460"/> 735 <CursorPos X="10" Y="427"/> 736 <UsageCount Value="10"/> 737 <Loaded Value="True"/> 738 </Unit63> 697 739 </Units> 698 740 <JumpHistory Count="30" HistoryIndex="29"> 699 741 <Position1> 700 <Filename Value="Forms/UI temEdit.pas"/>701 <Caret Line=" 128" Column="1" TopLine="121"/>742 <Filename Value="Forms/UImportStructureForm.pas"/> 743 <Caret Line="81" Column="1" TopLine="65"/> 702 744 </Position1> 703 745 <Position2> 704 <Filename Value="Forms/UI temEdit.pas"/>705 <Caret Line=" 129" Column="1" TopLine="121"/>746 <Filename Value="Forms/UImportStructureForm.pas"/> 747 <Caret Line="84" Column="50" TopLine="65"/> 706 748 </Position2> 707 749 <Position3> 708 <Filename Value="Forms/UI temEdit.pas"/>709 <Caret Line=" 130" Column="1" TopLine="121"/>750 <Filename Value="Forms/UImportStructureForm.pas"/> 751 <Caret Line="81" Column="1" TopLine="65"/> 710 752 </Position3> 711 753 <Position4> 712 <Filename Value="Forms/UI temEdit.pas"/>713 <Caret Line=" 131" Column="1" TopLine="121"/>754 <Filename Value="Forms/UImportStructureForm.pas"/> 755 <Caret Line="82" Column="1" TopLine="65"/> 714 756 </Position4> 715 757 <Position5> 716 <Filename Value="Forms/UI temEdit.pas"/>717 <Caret Line=" 133" Column="1" TopLine="121"/>758 <Filename Value="Forms/UImportStructureForm.pas"/> 759 <Caret Line="83" Column="1" TopLine="65"/> 718 760 </Position5> 719 761 <Position6> 720 <Filename Value="Forms/UI temEdit.pas"/>721 <Caret Line=" 134" Column="1" TopLine="121"/>762 <Filename Value="Forms/UImportStructureForm.pas"/> 763 <Caret Line="84" Column="1" TopLine="65"/> 722 764 </Position6> 723 765 <Position7> 724 <Filename Value="Forms/UI temEdit.pas"/>725 <Caret Line=" 135" Column="1" TopLine="121"/>766 <Filename Value="Forms/UImportStructureForm.pas"/> 767 <Caret Line="85" Column="1" TopLine="65"/> 726 768 </Position7> 727 769 <Position8> 728 <Filename Value="Forms/UI temEdit.pas"/>729 <Caret Line=" 136" Column="1" TopLine="121"/>770 <Filename Value="Forms/UImportStructureForm.pas"/> 771 <Caret Line="87" Column="50" TopLine="69"/> 730 772 </Position8> 731 773 <Position9> 732 <Filename Value=" Forms/UItemEdit.pas"/>733 <Caret Line="1 37" Column="1" TopLine="121"/>774 <Filename Value="USystem.pas"/> 775 <Caret Line="108" Column="30" TopLine="91"/> 734 776 </Position9> 735 777 <Position10> 736 <Filename Value=" Forms/UItemEdit.pas"/>737 <Caret Line=" 138" Column="1" TopLine="121"/>778 <Filename Value="USystem.pas"/> 779 <Caret Line="360" Column="41" TopLine="345"/> 738 780 </Position10> 739 781 <Position11> 740 <Filename Value=" Forms/UItemEdit.pas"/>741 <Caret Line=" 139" Column="1" TopLine="121"/>782 <Filename Value="USystem.pas"/> 783 <Caret Line="329" Column="27" TopLine="327"/> 742 784 </Position11> 743 785 <Position12> 744 <Filename Value="Forms/U ItemEdit.pas"/>745 <Caret Line=" 140" Column="1" TopLine="121"/>786 <Filename Value="Forms/UMainForm.pas"/> 787 <Caret Line="359" Column="35" TopLine="340"/> 746 788 </Position12> 747 789 <Position13> 748 <Filename Value="Forms/U ItemEdit.pas"/>749 <Caret Line=" 141" Column="1" TopLine="121"/>790 <Filename Value="Forms/UMainForm.pas"/> 791 <Caret Line="351" Column="17" TopLine="343"/> 750 792 </Position13> 751 793 <Position14> 752 <Filename Value=" Forms/UItemEdit.pas"/>753 <Caret Line=" 143" Column="1" TopLine="123"/>794 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 795 <Caret Line="78" Column="11" TopLine="72"/> 754 796 </Position14> 755 797 <Position15> 756 <Filename Value=" Forms/UItemEdit.pas"/>757 <Caret Line="1 44" Column="1" TopLine="124"/>798 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstr.inc"/> 799 <Caret Line="151" Column="18" TopLine="141"/> 758 800 </Position15> 759 801 <Position16> 760 <Filename Value=" Forms/UItemEdit.pas"/>761 <Caret Line="1 25" Column="1" TopLine="121"/>802 <Filename Value="H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/sysstr.inc"/> 803 <Caret Line="164" Column="13" TopLine="162"/> 762 804 </Position16> 763 805 <Position17> 764 <Filename Value=" Forms/UItemEdit.pas"/>765 <Caret Line=" 127" Column="1" TopLine="121"/>806 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 807 <Caret Line="78" Column="40" TopLine="72"/> 766 808 </Position17> 767 809 <Position18> 768 <Filename Value="Forms/U ItemEdit.pas"/>769 <Caret Line=" 128" Column="1" TopLine="121"/>810 <Filename Value="Forms/UMainForm.pas"/> 811 <Caret Line="351" Column="1" TopLine="343"/> 770 812 </Position18> 771 813 <Position19> 772 <Filename Value="Forms/U ItemEdit.pas"/>773 <Caret Line=" 129" Column="1" TopLine="121"/>814 <Filename Value="Forms/UMainForm.pas"/> 815 <Caret Line="363" Column="1" TopLine="343"/> 774 816 </Position19> 775 817 <Position20> 776 <Filename Value="Forms/U ItemEdit.pas"/>777 <Caret Line=" 130" Column="1" TopLine="121"/>818 <Filename Value="Forms/UMainForm.pas"/> 819 <Caret Line="351" Column="1" TopLine="343"/> 778 820 </Position20> 779 821 <Position21> 780 <Filename Value=" Forms/UItemEdit.pas"/>781 <Caret Line=" 131" Column="1" TopLine="121"/>822 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 823 <Caret Line="75" Column="1" TopLine="71"/> 782 824 </Position21> 783 825 <Position22> 784 <Filename Value=" Forms/UItemEdit.pas"/>785 <Caret Line=" 133" Column="1" TopLine="121"/>826 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 827 <Caret Line="77" Column="1" TopLine="71"/> 786 828 </Position22> 787 829 <Position23> 788 <Filename Value=" Forms/UItemEdit.pas"/>789 <Caret Line=" 134" Column="1" TopLine="121"/>830 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListString.inc"/> 831 <Caret Line="78" Column="39" TopLine="71"/> 790 832 </Position23> 791 833 <Position24> 792 <Filename Value="Forms/U ItemEdit.pas"/>793 <Caret Line=" 135" Column="1" TopLine="121"/>834 <Filename Value="Forms/UMainForm.pas"/> 835 <Caret Line="351" Column="1" TopLine="343"/> 794 836 </Position24> 795 837 <Position25> 796 <Filename Value="Forms/U ItemEdit.pas"/>797 <Caret Line=" 136" Column="1" TopLine="121"/>838 <Filename Value="Forms/UMainForm.pas"/> 839 <Caret Line="352" Column="1" TopLine="343"/> 798 840 </Position25> 799 841 <Position26> 800 <Filename Value="Forms/U ItemEdit.pas"/>801 <Caret Line=" 137" Column="1" TopLine="121"/>842 <Filename Value="Forms/UMainForm.pas"/> 843 <Caret Line="360" Column="1" TopLine="343"/> 802 844 </Position26> 803 845 <Position27> 804 <Filename Value="Forms/U ItemEdit.pas"/>805 <Caret Line=" 134" Column="15" TopLine="123"/>846 <Filename Value="Forms/UMainForm.pas"/> 847 <Caret Line="363" Column="1" TopLine="343"/> 806 848 </Position27> 807 849 <Position28> 808 <Filename Value="Forms/UI temEdit.pas"/>809 <Caret Line=" 114" Column="1" TopLine="102"/>850 <Filename Value="Forms/UImportStructureForm.pas"/> 851 <Caret Line="87" Column="49" TopLine="75"/> 810 852 </Position28> 811 853 <Position29> 812 <Filename Value="Forms/UI temEdit.pas"/>813 <Caret Line=" 101" Column="1" TopLine="89"/>854 <Filename Value="Forms/UImportStructureForm.pas"/> 855 <Caret Line="98" Column="23" TopLine="80"/> 814 856 </Position29> 815 857 <Position30> 816 <Filename Value="Forms/UI temAdd.pas"/>817 <Caret Line=" 96" Column="12" TopLine="84"/>858 <Filename Value="Forms/UImportStructureForm.pas"/> 859 <Caret Line="40" Column="33" TopLine="25"/> 818 860 </Position30> 819 861 </JumpHistory> -
trunk/chronis.lpr
r15 r19 10 10 Forms, UPersistentForm, URegistry, UTreeState, SysUtils, UItemView, UItemEdit, 11 11 ULoginForm, UMainForm, UItemAdd, TemplateGenerics, CoolTranslator, Common, 12 CoolWeb, USystem, UCore, UApplicationInfo, USettingForm, UDataTypes 12 CoolWeb, USystem, UCore, UApplicationInfo, USettingForm, UDataTypes, 13 UImportStructureForm 13 14 { you can add units after this }; 14 15 … … 35 36 Application.CreateForm(TItemAddForm, ItemAddForm); 36 37 Application.CreateForm(TSettingForm, SettingForm); 38 Application.CreateForm(TImportStructureForm, ImportStructureForm); 37 39 Application.Run; 38 40 end.
Note:
See TracChangeset
for help on using the changeset viewer.