Changeset 25
- Timestamp:
- Nov 9, 2011, 1:58:00 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 1 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UApplicationInfo.pas
r22 r25 6 6 7 7 uses 8 SysUtils ;8 SysUtils, DateUtils; 9 9 10 10 type … … 26 26 AuthorsName: string; 27 27 EmailContact: string; 28 ReleaseDate: string;28 ReleaseDate: TDateTime; 29 29 property Version: string read GetVersion; 30 30 end; … … 50 50 Name := 'ChronIS'; 51 51 Identification := 1; 52 ReleaseDate := '16.6.2011';52 ReleaseDate := EncodeDate(2011, 11, 9); 53 53 MajorVersion := 0; 54 54 MinorVersion := 1; -
trunk/Forms/ULoginForm.lfm
r22 r25 1 1 object LoginForm: TLoginForm 2 Left = 4823 Height = 1 714 Top = 2585 Width = 3992 Left = 312 3 Height = 163 4 Top = 186 5 Width = 433 6 6 BorderIcons = [biSystemMenu] 7 7 BorderStyle = bsDialog 8 8 Caption = 'Login' 9 ClientHeight = 171 10 ClientWidth = 399 9 ClientHeight = 163 10 ClientWidth = 433 11 OnClose = FormClose 12 OnShow = FormShow 11 13 LCLVersion = '0.9.31' 12 14 object Label1: TLabel 13 15 Left = 16 14 16 Height = 14 15 Top = 4817 Top = 64 16 18 Width = 53 17 19 Caption = 'Username:' … … 21 23 Left = 16 22 24 Height = 14 23 Top = 8025 Top = 96 24 26 Width = 51 25 27 Caption = 'Password:' … … 32 34 Width = 75 33 35 Caption = 'Close' 36 ModalResult = 11 37 OnClick = ButtonCancelClick 34 38 TabOrder = 0 35 39 end … … 40 44 Width = 75 41 45 Caption = 'Login' 46 ModalResult = 1 47 OnClick = ButtonLoginClick 42 48 TabOrder = 1 43 49 end 44 object Edit 1: TEdit50 object EditUserName: TEdit 45 51 Left = 88 46 52 Height = 21 47 Top = 4053 Top = 64 48 54 Width = 104 49 55 TabOrder = 2 50 56 end 51 object MaskEdit 1: TMaskEdit57 object MaskEditPassword: TMaskEdit 52 58 Left = 88 53 59 Height = 21 54 Top = 7160 Top = 96 55 61 Width = 104 56 62 CharCase = ecNormal … … 61 67 SpaceChar = '_' 62 68 end 69 object Label3: TLabel 70 Left = 16 71 Height = 14 72 Top = 12 73 Width = 59 74 Caption = 'Connection:' 75 ParentColor = False 76 end 77 object ComboBoxConnection: TComboBox 78 Left = 88 79 Height = 21 80 Top = 12 81 Width = 105 82 ItemHeight = 13 83 Style = csDropDownList 84 TabOrder = 4 85 end 86 object ButtonChange: TButton 87 Left = 198 88 Height = 25 89 Top = 9 90 Width = 67 91 Caption = 'Change' 92 OnClick = ButtonChangeClick 93 TabOrder = 5 94 end 63 95 object Image1: TImage 64 Left = 2 1665 Height = 1 5266 Top = 1 667 Width = 1 6896 Left = 272 97 Height = 140 98 Top = 12 99 Width = 152 68 100 end 69 101 end -
trunk/Forms/ULoginForm.lrt
r10 r25 4 4 TLOGINFORM.BUTTONCANCEL.CAPTION=Close 5 5 TLOGINFORM.BUTTONLOGIN.CAPTION=Login 6 TLOGINFORM.MASKEDIT1.TEXT=* 6 TLOGINFORM.MASKEDITPASSWORD.TEXT=* 7 TLOGINFORM.LABEL3.CAPTION=Connection: 8 TLOGINFORM.BUTTONCHANGE.CAPTION=Change -
trunk/Forms/ULoginForm.pas
r3 r25 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 MaskEdit, ExtCtrls ;9 MaskEdit, ExtCtrls, URegistry, Registry; 10 10 11 11 type … … 14 14 15 15 TLoginForm = class(TForm) 16 ButtonChange: TButton; 16 17 ButtonCancel: TButton; 17 18 ButtonLogin: TButton; 18 Edit1: TEdit; 19 ComboBoxConnection: TComboBox; 20 EditUserName: TEdit; 19 21 Image1: TImage; 20 22 Label1: TLabel; 21 23 Label2: TLabel; 22 MaskEdit1: TMaskEdit; 24 Label3: TLabel; 25 MaskEditPassword: TMaskEdit; 26 procedure ButtonCancelClick(Sender: TObject); 27 procedure ButtonChangeClick(Sender: TObject); 28 procedure ButtonLoginClick(Sender: TObject); 29 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 30 procedure FormShow(Sender: TObject); 23 31 private 24 { private declarations }25 32 public 26 { public declarations } 27 end; 33 end; 28 34 29 35 var … … 34 40 {$R *.lfm} 35 41 42 uses 43 UCore, ULoginProfileForm, UMainForm; 44 45 { TLoginForm } 46 47 procedure TLoginForm.ButtonLoginClick(Sender: TObject); 48 begin 49 Core.LastUserName := EditUserName.Text; 50 Core.LastProfile := ComboBoxConnection.ItemIndex; 51 Core.LastPassword := MaskEditPassword.Text; 52 end; 53 54 procedure TLoginForm.FormClose(Sender: TObject; var CloseAction: TCloseAction); 55 begin 56 MainForm.PersistentForm.Save(Self); 57 end; 58 59 procedure TLoginForm.FormShow(Sender: TObject); 60 begin 61 MainForm.PersistentForm.Load(Self); 62 ComboBoxConnection.ItemIndex := Core.LastProfile; 63 EditUserName.Text := Core.LastUserName; 64 MaskEditPassword.Text := ''; 65 Core.Profiles.FillStrings(ComboBoxConnection.Items); 66 end; 67 68 procedure TLoginForm.ButtonCancelClick(Sender: TObject); 69 begin 70 Close; 71 end; 72 73 procedure TLoginForm.ButtonChangeClick(Sender: TObject); 74 begin 75 if LoginProfileForm.ShowModal = mrOk then begin 76 Core.Profiles.FillStrings(ComboBoxConnection.Items); 77 end; 78 end; 79 36 80 end. 37 81 -
trunk/Forms/UMainForm.lfm
r24 r25 6 6 ActiveControl = Panel1 7 7 Caption = 'ChronIS' 8 ClientHeight = 42 28 ClientHeight = 427 9 9 ClientWidth = 640 10 10 Menu = MainMenu1 … … 16 16 object Panel1: TPanel 17 17 Left = 0 18 Height = 42 218 Height = 427 19 19 Top = 0 20 20 Width = 184 21 21 Align = alLeft 22 22 BevelOuter = bvNone 23 ClientHeight = 42 223 ClientHeight = 427 24 24 ClientWidth = 184 25 25 TabOrder = 0 26 26 object Label1: TLabel 27 27 Left = 7 28 Height = 1 828 Height = 14 29 29 Top = 4 30 Width = 5130 Width = 39 31 31 Caption = 'Groups:' 32 32 ParentColor = False … … 34 34 object TreeView1: TTreeView 35 35 Left = 4 36 Height = 39836 Height = 403 37 37 Top = 19 38 38 Width = 180 39 39 Anchors = [akTop, akLeft, akRight, akBottom] 40 DefaultItemHeight = 16 40 41 Images = ImageListActions 41 42 ReadOnly = True … … 47 48 object Panel2: TPanel 48 49 Left = 189 49 Height = 42 250 Height = 427 50 51 Top = 0 51 52 Width = 451 52 53 Align = alClient 53 54 BevelOuter = bvNone 54 ClientHeight = 42 255 ClientHeight = 427 55 56 ClientWidth = 451 56 57 TabOrder = 1 57 58 object Label2: TLabel 58 59 Left = 2 59 Height = 1 860 Height = 14 60 61 Top = 4 61 Width = 5462 Width = 43 62 63 Caption = 'Reports:' 63 64 ParentColor = False … … 65 66 object ListView1: TListView 66 67 Left = 2 67 Height = 3 6668 Height = 371 68 69 Top = 19 69 70 Width = 447 … … 85 86 Left = 3 86 87 Height = 25 87 Top = 39 388 Top = 398 88 89 Width = 75 89 90 Action = AItemAdd … … 94 95 Left = 83 95 96 Height = 25 96 Top = 39 397 Top = 398 97 98 Width = 75 98 99 Action = AItemDelete … … 103 104 object Splitter1: TSplitter 104 105 Left = 184 105 Height = 42 2106 Height = 427 106 107 Top = 0 107 108 Width = 5 … … 184 185 Caption = 'Import structure...' 185 186 OnExecute = AImportStructureExecute 187 end 188 object AAbout: TAction 189 Caption = 'About' 190 OnExecute = AAboutExecute 186 191 end 187 192 end … … 316 321 object MenuItem17: TMenuItem 317 322 Action = AConnect 323 OnClick = MenuItem17Click 318 324 end 319 325 object MenuItem14: TMenuItem … … 341 347 object MenuItem12: TMenuItem 342 348 Caption = 'Help' 349 object MenuItem21: TMenuItem 350 Action = AAbout 351 end 343 352 end 344 353 end -
trunk/Forms/UMainForm.lrt
r24 r25 20 20 TMAINFORM.AINITSYSTEMVALUES.CAPTION=Init system values 21 21 TMAINFORM.AIMPORTSTRUCTURE.CAPTION=Import structure... 22 TMAINFORM.AABOUT.CAPTION=About 22 23 TMAINFORM.MENUITEM13.CAPTION=Server 23 24 TMAINFORM.MENUITEM11.CAPTION=View -
trunk/Forms/UMainForm.pas
r24 r25 17 17 published 18 18 AConnect: TAction; 19 AAbout: TAction; 19 20 AImportStructure: TAction; 20 21 AInitSystemValues: TAction; … … 53 54 MenuItem2: TMenuItem; 54 55 MenuItem20: TMenuItem; 56 MenuItem21: TMenuItem; 55 57 MenuItem3: TMenuItem; 56 58 MenuItem4: TMenuItem; … … 67 69 Splitter1: TSplitter; 68 70 TreeView1: TTreeView; 71 procedure AAboutExecute(Sender: TObject); 69 72 procedure AConnectExecute(Sender: TObject); 70 73 procedure AExitExecute(Sender: TObject); … … 91 94 procedure ListView1SelectItem(Sender: TObject; Item: TListItem; 92 95 Selected: Boolean); 96 procedure MenuItem17Click(Sender: TObject); 93 97 procedure TreeView1Change(Sender: TObject; Node: TTreeNode); 94 98 private … … 96 100 OriginalWindowState: TWindowState; 97 101 ScreenBounds: TRect; 98 RegistryKey: string;99 RegistryRootKey: HKEY;100 102 procedure LoadFromRegistry; 101 103 procedure SaveToRegistry; … … 128 130 uses 129 131 UItemView, UItemEdit, UItemAdd, ULoginForm, USettingForm, UApplicationInfo, 130 UCore, UImportStructureForm ;132 UCore, UImportStructureForm, UAboutForm, ULoginProfileForm; 131 133 132 134 {$R *.lfm} … … 138 140 with TRegistryEx.Create do 139 141 try 140 RootKey := RegistryRootKey;141 OpenKey( RegistryKey, True);142 RootKey := Core.RegistryRootKey; 143 OpenKey(Core.RegistryKey, True); 142 144 Panel1.Width := ReadIntegerWithDefault('GroupTreeWidth', 200); 143 Core.System.Database.Database := ReadStringWithDefault('DatabaseSchema', 'chronis');144 Core.System.Database.Hostname := ReadStringWithDefault('DatabaseHostName', 'localhost');145 Core.System.Database.UserName := ReadStringWithDefault('DatabaseUserName', 'chronis');146 Core.System.Database.Password := ReadStringWithDefault('DatabasePassword', '');147 145 with Core.CoolTranslator1 do 148 146 Language := Languages.SearchByCode(ReadStringWithDefault('LanguageCode', '')); … … 156 154 with TRegistryEx.Create do 157 155 try 158 RootKey := RegistryRootKey;159 OpenKey( RegistryKey, True);156 RootKey := Core.RegistryRootKey; 157 OpenKey(Core.RegistryKey, True); 160 158 WriteInteger('GroupTreeWidth', Panel1.Width); 161 WriteString('DatabaseSchema', Core.System.Database.Database);162 WriteString('DatabaseHostName', Core.System.Database.Hostname);163 WriteString('DatabaseUserName', Core.System.Database.UserName);164 WriteString('DatabasePassword', Core.System.Database.Password);165 159 with Core.CoolTranslator1 do 166 160 WriteString('LanguageCode', Language.Code); … … 520 514 SelectedObject := TChronisObject.Create; 521 515 SelectedObject.Base := Core.System; 522 RegistryRootKey := HKEY_CURRENT_USER;523 RegistryKey := '\Software\' + ApplicationInfo.CompanyName + '\' +524 ApplicationInfo.Name;525 516 PersistentForm := TPersistentForm.Create; 526 PersistentForm.RegistryKey := RegistryKey;517 PersistentForm.RegistryKey := Core.RegistryKey; 527 518 end; 528 519 … … 641 632 procedure TMainForm.AConnectExecute(Sender: TObject); 642 633 begin 643 LoginForm.ShowModal; 634 Core.Profiles.LoadFromRegistry(Core.RegistryRootKey, Core.RegistryKey); 635 if LoginForm.ShowModal = mrOK then begin 636 with TConnectProfile(Core.Profiles[Core.LastProfile]) do begin 637 Core.System.Database.HostName := HostName; 638 Core.System.Database.Database := Database; 639 Core.System.Database.UserName := Core.LastUserName; 640 Core.System.Database.Password := Core.LastPassword; 641 Core.System.Database.Connect; 642 end; 643 InitStructure; 644 Core.System.LoadTypes; 645 LoadTree; 646 end; 647 end; 648 649 procedure TMainForm.AAboutExecute(Sender: TObject); 650 begin 651 AboutForm.ShowModal; 644 652 end; 645 653 … … 648 656 PersistentForm.Load(Self); 649 657 LoadFromRegistry; 650 Core.System.Database.Connect; 651 InitStructure; 652 Core.System.LoadTypes; 653 LoadTree; 658 AConnect.Execute; 654 659 end; 655 660 … … 696 701 AItemView.Enabled := Assigned(ListView1.Selected); 697 702 AItemEdit.Enabled := Assigned(ListView1.Selected); 703 end; 704 705 procedure TMainForm.MenuItem17Click(Sender: TObject); 706 begin 707 LoginForm.ShowModal; 698 708 end; 699 709 -
trunk/UCore.pas
r15 r25 6 6 7 7 uses 8 Classes, SysUtils, FileUtil, UCoolTranslator, UDebugLog, USystem, 9 USqlDatabase ;8 Classes, SysUtils, FileUtil, UCoolTranslator, UDebugLog, USystem, Registry, 9 USqlDatabase, ULoginProfileForm, URegistry; 10 10 11 11 type … … 21 21 procedure SqlDatabase1LogQuery(Sender: TObject; Text: string); 22 22 private 23 procedure LoadFromRegistry; 24 procedure SaveToRegistry; 23 25 { private declarations } 24 26 public 27 LastUserName: string; 28 LastProfile: Integer; 29 LastPassword: string; 30 Profiles: TProfileList; 31 RegistryKey: string; 32 RegistryRootKey: HKEY; 25 33 System: TChronisBase; 26 34 end; … … 33 41 {$R *.lfm} 34 42 43 uses 44 UApplicationInfo; 45 35 46 { TCore } 36 47 37 48 procedure TCore.DataModuleCreate(Sender: TObject); 38 49 begin 50 Profiles := TProfileList.Create; 51 RegistryRootKey := HKEY_CURRENT_USER; 52 RegistryKey := '\Software\' + ApplicationInfo.CompanyName + '\' + 53 ApplicationInfo.Name; 54 LoadFromRegistry; 39 55 System := TChronisBase.Create; 40 56 System.Database := SqlDatabase1; … … 46 62 procedure TCore.DataModuleDestroy(Sender: TObject); 47 63 begin 64 SaveToRegistry; 48 65 System.Free; 66 Profiles.Free; 49 67 end; 50 68 … … 54 72 end; 55 73 74 procedure TCore.LoadFromRegistry; 75 begin 76 with TRegistryEx.Create do 77 try 78 RootKey := RegistryRootKey; 79 OpenKey(RegistryKey, True); 80 LastProfile := ReadIntegerWithDefault('LastConnectProfile', -1); 81 LastUserName := ReadStringWithDefault('LastUserName', 'admin'); 82 finally 83 Free; 84 end; 85 end; 86 87 procedure TCore.SaveToRegistry; 88 begin 89 with TRegistryEx.Create do 90 try 91 RootKey := RegistryRootKey; 92 OpenKey(RegistryKey, True); 93 WriteInteger('LastConnectProfile', LastProfile); 94 WriteString('LastUserName', LastUserName); 95 finally 96 Free; 97 end; 98 end; 99 100 56 101 end. 57 102 -
trunk/chronis.lpi
r23 r25 8 8 <ResourceType Value="res"/> 9 9 <UseXPManifest Value="True"/> 10 <Icon Value="0"/>11 10 <ActiveWindowIndexAtStart Value="0"/> 12 11 </General> … … 52 51 <Linking> 53 52 <Debugging> 53 <DebugInfoType Value="dsAuto"/> 54 54 <UseLineInfoUnit Value="False"/> 55 55 </Debugging> … … 104 104 </Item6> 105 105 </RequiredPackages> 106 <Units Count=" 39">106 <Units Count="44"> 107 107 <Unit0> 108 108 <Filename Value="chronis.lpr"/> … … 111 111 <WindowIndex Value="0"/> 112 112 <TopLine Value="14"/> 113 <CursorPos X=" 1" Y="33"/>113 <CursorPos X="55" Y="30"/> 114 114 <UsageCount Value="274"/> 115 115 <DefaultSyntaxHighlighter Value="Delphi"/> … … 121 121 <TopLine Value="330"/> 122 122 <CursorPos X="1" Y="347"/> 123 <UsageCount Value=" 30"/>123 <UsageCount Value="29"/> 124 124 <DefaultSyntaxHighlighter Value="Delphi"/> 125 125 </Unit1> … … 133 133 <TopLine Value="118"/> 134 134 <CursorPos X="25" Y="144"/> 135 <UsageCount Value="8 4"/>135 <UsageCount Value="83"/> 136 136 <DefaultSyntaxHighlighter Value="Delphi"/> 137 137 </Unit2> … … 145 145 <TopLine Value="1"/> 146 146 <CursorPos X="24" Y="14"/> 147 <UsageCount Value="8 4"/>147 <UsageCount Value="83"/> 148 148 <DefaultSyntaxHighlighter Value="Delphi"/> 149 149 </Unit3> … … 164 164 <TopLine Value="58"/> 165 165 <CursorPos X="73" Y="232"/> 166 <UsageCount Value="2 50"/>166 <UsageCount Value="249"/> 167 167 <DefaultSyntaxHighlighter Value="Delphi"/> 168 168 </Unit5> … … 171 171 <IsPartOfProject Value="True"/> 172 172 <UnitName Value="URegistry"/> 173 <EditorIndex Value="20"/>174 173 <WindowIndex Value="0"/> 175 174 <TopLine Value="19"/> 176 175 <CursorPos X="1" Y="31"/> 177 176 <UsageCount Value="264"/> 178 <Loaded Value="True"/>179 177 <DefaultSyntaxHighlighter Value="Delphi"/> 180 178 </Unit6> … … 200 198 <ResourceBaseClass Value="Form"/> 201 199 <UnitName Value="UItemEdit"/> 202 <EditorIndex Value=" 3"/>200 <EditorIndex Value="1"/> 203 201 <WindowIndex Value="0"/> 204 202 <TopLine Value="14"/> … … 216 214 <ResourceBaseClass Value="Form"/> 217 215 <UnitName Value="ULoginForm"/> 218 <EditorIndex Value=" 21"/>219 <WindowIndex Value="0"/> 220 <TopLine Value=" 14"/>221 <CursorPos X=" 54" Y="24"/>216 <EditorIndex Value="11"/> 217 <WindowIndex Value="0"/> 218 <TopLine Value="54"/> 219 <CursorPos X="31" Y="56"/> 222 220 <UsageCount Value="317"/> 223 221 <Loaded Value="True"/> … … 232 230 <ResourceBaseClass Value="Form"/> 233 231 <UnitName Value="UMainForm"/> 234 <EditorIndex Value=" 7"/>235 <WindowIndex Value="0"/> 236 <TopLine Value=" 733"/>237 <CursorPos X=" 24" Y="747"/>232 <EditorIndex Value="3"/> 233 <WindowIndex Value="0"/> 234 <TopLine Value="157"/> 235 <CursorPos X="3" Y="170"/> 238 236 <UsageCount Value="317"/> 239 237 <Loaded Value="True"/> … … 245 243 <IsPartOfProject Value="True"/> 246 244 <UnitName Value="UTreeState"/> 247 <EditorIndex Value="19"/>248 245 <WindowIndex Value="0"/> 249 246 <TopLine Value="1"/> 250 247 <CursorPos X="1" Y="1"/> 251 248 <UsageCount Value="314"/> 252 <Loaded Value="True"/>253 249 <DefaultSyntaxHighlighter Value="Delphi"/> 254 250 </Unit11> … … 259 255 <ResourceBaseClass Value="Form"/> 260 256 <UnitName Value="UItemAdd"/> 261 <EditorIndex Value=" 5"/>257 <EditorIndex Value="2"/> 262 258 <WindowIndex Value="0"/> 263 259 <TopLine Value="124"/> … … 272 268 <IsPartOfProject Value="True"/> 273 269 <UnitName Value="USystem"/> 274 <EditorIndex Value=" 12"/>275 <WindowIndex Value="0"/> 276 <TopLine Value=" 28"/>277 <CursorPos X=" 21" Y="41"/>270 <EditorIndex Value="9"/> 271 <WindowIndex Value="0"/> 272 <TopLine Value="133"/> 273 <CursorPos X="33" Y="96"/> 278 274 <UsageCount Value="200"/> 279 275 <Loaded Value="True"/> … … 286 282 <ResourceBaseClass Value="DataModule"/> 287 283 <UnitName Value="UCore"/> 288 <EditorIndex Value=" 11"/>289 <WindowIndex Value="0"/> 290 <TopLine Value=" 34"/>291 <CursorPos X=" 59" Y="46"/>284 <EditorIndex Value="8"/> 285 <WindowIndex Value="0"/> 286 <TopLine Value="17"/> 287 <CursorPos X="18" Y="30"/> 292 288 <UsageCount Value="230"/> 293 289 <Loaded Value="True"/> … … 301 297 <ResourceBaseClass Value="Form"/> 302 298 <UnitName Value="USettingForm"/> 303 <EditorIndex Value=" 10"/>304 <WindowIndex Value="0"/> 305 <TopLine Value="1 "/>306 <CursorPos X=" 46" Y="11"/>299 <EditorIndex Value="7"/> 300 <WindowIndex Value="0"/> 301 <TopLine Value="12"/> 302 <CursorPos X="15" Y="25"/> 307 303 <UsageCount Value="229"/> 308 304 <Loaded Value="True"/> … … 314 310 <IsPartOfProject Value="True"/> 315 311 <UnitName Value="UApplicationInfo"/> 316 <EditorIndex Value=" 9"/>317 <WindowIndex Value="0"/> 318 <TopLine Value="3 4"/>319 <CursorPos X=" 25" Y="48"/>312 <EditorIndex Value="12"/> 313 <WindowIndex Value="0"/> 314 <TopLine Value="39"/> 315 <CursorPos X="32" Y="54"/> 320 316 <UsageCount Value="229"/> 321 317 <Loaded Value="True"/> … … 323 319 </Unit16> 324 320 <Unit17> 325 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/lcl/dialogs.pp"/>321 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/dialogs.pp"/> 326 322 <UnitName Value="Dialogs"/> 327 323 <WindowIndex Value="0"/> 328 324 <TopLine Value="487"/> 329 325 <CursorPos X="44" Y="500"/> 330 <UsageCount Value="1 4"/>326 <UsageCount Value="13"/> 331 327 <DefaultSyntaxHighlighter Value="Delphi"/> 332 328 </Unit17> 333 329 <Unit18> 334 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/lcl/controls.pp"/>330 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/controls.pp"/> 335 331 <UnitName Value="Controls"/> 336 332 <WindowIndex Value="0"/> 337 333 <TopLine Value="1661"/> 338 334 <CursorPos X="24" Y="1673"/> 339 <UsageCount Value="1 4"/>335 <UsageCount Value="13"/> 340 336 <DefaultSyntaxHighlighter Value="Delphi"/> 341 337 </Unit18> … … 344 340 <IsPartOfProject Value="True"/> 345 341 <UnitName Value="UDataTypes"/> 346 <IsVisibleTab Value="True"/> 347 <EditorIndex Value="16"/> 342 <EditorIndex Value="10"/> 348 343 <WindowIndex Value="0"/> 349 344 <TopLine Value="246"/> 350 345 <CursorPos X="47" Y="256"/> 351 <UsageCount Value="1 85"/>346 <UsageCount Value="195"/> 352 347 <Loaded Value="True"/> 353 348 <DefaultSyntaxHighlighter Value="Delphi"/> 354 349 </Unit19> 355 350 <Unit20> 356 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/lcl/stdctrls.pp"/>351 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/stdctrls.pp"/> 357 352 <UnitName Value="StdCtrls"/> 358 353 <WindowIndex Value="0"/> 359 354 <TopLine Value="1446"/> 360 355 <CursorPos X="26" Y="1458"/> 361 <UsageCount Value=" 5"/>356 <UsageCount Value="4"/> 362 357 <DefaultSyntaxHighlighter Value="Delphi"/> 363 358 </Unit20> 364 359 <Unit21> 365 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/lcl/include/customlistview.inc"/>360 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/include/customlistview.inc"/> 366 361 <WindowIndex Value="0"/> 367 362 <TopLine Value="550"/> 368 363 <CursorPos X="1" Y="561"/> 369 <UsageCount Value="16"/> 364 <UsageCount Value="15"/> 365 <DefaultSyntaxHighlighter Value="Delphi"/> 370 366 </Unit21> 371 367 <Unit22> … … 375 371 <ResourceBaseClass Value="Form"/> 376 372 <UnitName Value="UImportStructureForm"/> 377 <EditorIndex Value=" 8"/>373 <EditorIndex Value="6"/> 378 374 <WindowIndex Value="0"/> 379 375 <TopLine Value="149"/> 380 376 <CursorPos X="44" Y="164"/> 381 <UsageCount Value="1 21"/>377 <UsageCount Value="131"/> 382 378 <Loaded Value="True"/> 383 379 <LoadedDesigner Value="True"/> … … 385 381 </Unit22> 386 382 <Unit23> 387 <Filename Value=" H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/>383 <Filename Value="../../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/> 388 384 <WindowIndex Value="0"/> 389 385 <TopLine Value="51"/> 390 386 <CursorPos X="1" Y="63"/> 391 <UsageCount Value="28"/> 387 <UsageCount Value="27"/> 388 <DefaultSyntaxHighlighter Value="Delphi"/> 392 389 </Unit23> 393 390 <Unit24> 394 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/lcl/include/control.inc"/>391 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/include/control.inc"/> 395 392 <WindowIndex Value="0"/> 396 393 <TopLine Value="2274"/> 397 394 <CursorPos X="1" Y="2286"/> 398 <UsageCount Value="28"/> 395 <UsageCount Value="27"/> 396 <DefaultSyntaxHighlighter Value="Delphi"/> 399 397 </Unit24> 400 398 <Unit25> 401 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/inc/systemh.inc"/>399 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/inc/systemh.inc"/> 402 400 <WindowIndex Value="0"/> 403 401 <TopLine Value="286"/> 404 402 <CursorPos X="3" Y="298"/> 405 <UsageCount Value="28"/> 403 <UsageCount Value="27"/> 404 <DefaultSyntaxHighlighter Value="Delphi"/> 406 405 </Unit25> 407 406 <Unit26> 408 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/i386/i386.inc"/>407 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/i386/i386.inc"/> 409 408 <WindowIndex Value="0"/> 410 409 <TopLine Value="460"/> 411 410 <CursorPos X="10" Y="427"/> 412 <UsageCount Value="28"/> 411 <UsageCount Value="27"/> 412 <DefaultSyntaxHighlighter Value="Delphi"/> 413 413 </Unit26> 414 414 <Unit27> 415 <Filename Value=" H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/>415 <Filename Value="../../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/> 416 416 <WindowIndex Value="0"/> 417 417 <TopLine Value="120"/> 418 418 <CursorPos X="1" Y="134"/> 419 <UsageCount Value="8"/> 419 <UsageCount Value="7"/> 420 <DefaultSyntaxHighlighter Value="Delphi"/> 420 421 </Unit27> 421 422 <Unit28> 422 <Filename Value=" H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/>423 <Filename Value="../../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/> 423 424 <WindowIndex Value="0"/> 424 425 <TopLine Value="1"/> 425 426 <CursorPos X="24" Y="4"/> 426 <UsageCount Value="7"/> 427 <UsageCount Value="6"/> 428 <DefaultSyntaxHighlighter Value="Delphi"/> 427 429 </Unit28> 428 430 <Unit29> 429 <Filename Value=" H:/PascalClassLibrary/Generics/TemplateGenerics/Specialized/SpecializedDictionary.pas"/>431 <Filename Value="../../../PascalClassLibrary/Generics/TemplateGenerics/Specialized/SpecializedDictionary.pas"/> 430 432 <UnitName Value="SpecializedDictionary"/> 431 433 <WindowIndex Value="0"/> 432 434 <TopLine Value="6"/> 433 435 <CursorPos X="26" Y="18"/> 434 <UsageCount Value="6"/> 436 <UsageCount Value="5"/> 437 <DefaultSyntaxHighlighter Value="Delphi"/> 435 438 </Unit29> 436 439 <Unit30> 437 <Filename Value="H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/> 438 <EditorIndex Value="14"/> 439 <WindowIndex Value="0"/> 440 <TopLine Value="120"/> 441 <CursorPos X="29" Y="132"/> 442 <UsageCount Value="36"/> 443 <Loaded Value="True"/> 440 <Filename Value="Forms/UItemSelect.pas"/> 441 <IsPartOfProject Value="True"/> 442 <ComponentName Value="ItemSelectForm"/> 443 <ResourceBaseClass Value="Form"/> 444 <UnitName Value="UItemSelect"/> 445 <WindowIndex Value="0"/> 446 <TopLine Value="40"/> 447 <CursorPos X="29" Y="54"/> 448 <UsageCount Value="80"/> 449 <DefaultSyntaxHighlighter Value="Delphi"/> 444 450 </Unit30> 445 451 <Unit31> 446 <Filename Value=" H:/PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericDictionary.inc"/>447 < EditorIndex Value="15"/>448 <WindowIndex Value="0"/> 449 <TopLine Value=" 50"/>450 <CursorPos X=" 35" Y="67"/>451 <UsageCount Value="3 6"/>452 < Loaded Value="True"/>452 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/comctrls.pp"/> 453 <UnitName Value="ComCtrls"/> 454 <WindowIndex Value="0"/> 455 <TopLine Value="1207"/> 456 <CursorPos X="20" Y="1219"/> 457 <UsageCount Value="34"/> 458 <DefaultSyntaxHighlighter Value="Delphi"/> 453 459 </Unit31> 454 460 <Unit32> 455 <Filename Value="Forms/UItemSelect.pas"/> 456 <IsPartOfProject Value="True"/> 457 <ComponentName Value="ItemSelectForm"/> 458 <ResourceBaseClass Value="Form"/> 459 <UnitName Value="UItemSelect"/> 460 <EditorIndex Value="17"/> 461 <WindowIndex Value="0"/> 462 <TopLine Value="40"/> 463 <CursorPos X="29" Y="54"/> 464 <UsageCount Value="70"/> 465 <Loaded Value="True"/> 466 <LoadedDesigner Value="True"/> 461 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/include/customform.inc"/> 462 <WindowIndex Value="0"/> 463 <TopLine Value="945"/> 464 <CursorPos X="29" Y="950"/> 465 <UsageCount Value="33"/> 467 466 <DefaultSyntaxHighlighter Value="Delphi"/> 468 467 </Unit32> 469 468 <Unit33> 470 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/comctrls.pp"/> 471 <UnitName Value="ComCtrls"/> 472 <EditorIndex Value="2"/> 473 <WindowIndex Value="0"/> 474 <TopLine Value="1207"/> 475 <CursorPos X="20" Y="1219"/> 476 <UsageCount Value="35"/> 477 <Loaded Value="True"/> 469 <Filename Value="../../../PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 470 <UnitName Value="USqlDatabase"/> 471 <WindowIndex Value="0"/> 472 <TopLine Value="446"/> 473 <CursorPos X="58" Y="243"/> 474 <UsageCount Value="31"/> 475 <DefaultSyntaxHighlighter Value="Delphi"/> 478 476 </Unit33> 479 477 <Unit34> 480 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/include/customform.inc"/> 481 <EditorIndex Value="18"/> 482 <WindowIndex Value="0"/> 483 <TopLine Value="945"/> 484 <CursorPos X="29" Y="950"/> 485 <UsageCount Value="34"/> 486 <Loaded Value="True"/> 478 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/classesh.inc"/> 479 <WindowIndex Value="0"/> 480 <TopLine Value="495"/> 481 <CursorPos X="14" Y="510"/> 482 <UsageCount Value="31"/> 483 <DefaultSyntaxHighlighter Value="Delphi"/> 487 484 </Unit34> 488 485 <Unit35> 489 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/include/customlistview.inc"/> 490 <EditorIndex Value="1"/> 491 <WindowIndex Value="0"/> 492 <TopLine Value="549"/> 493 <CursorPos X="1" Y="561"/> 494 <UsageCount Value="34"/> 495 <Loaded Value="True"/> 486 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 487 <UnitName Value="USqlDatabase"/> 488 <WindowIndex Value="0"/> 489 <TopLine Value="174"/> 490 <CursorPos X="11" Y="177"/> 491 <UsageCount Value="14"/> 496 492 </Unit35> 497 493 <Unit36> 498 <Filename Value="H:/PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 499 <UnitName Value="USqlDatabase"/> 500 <EditorIndex Value="4"/> 501 <WindowIndex Value="0"/> 502 <TopLine Value="446"/> 503 <CursorPos X="58" Y="243"/> 504 <UsageCount Value="32"/> 505 <Loaded Value="True"/> 494 <Filename Value="Forms/ULoginProfileForm.pas"/> 495 <IsPartOfProject Value="True"/> 496 <ComponentName Value="LoginProfileForm"/> 497 <ResourceBaseClass Value="Form"/> 498 <UnitName Value="ULoginProfileForm"/> 499 <IsVisibleTab Value="True"/> 500 <EditorIndex Value="13"/> 501 <WindowIndex Value="0"/> 502 <TopLine Value="119"/> 503 <CursorPos X="70" Y="132"/> 504 <UsageCount Value="30"/> 505 <Loaded Value="True"/> 506 <LoadedDesigner Value="True"/> 507 <DefaultSyntaxHighlighter Value="Delphi"/> 506 508 </Unit36> 507 509 <Unit37> 508 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/classes/classesh.inc"/>509 <EditorIndex Value="1 3"/>510 <WindowIndex Value="0"/> 511 <TopLine Value=" 495"/>512 <CursorPos X=" 14" Y="510"/>513 <UsageCount Value=" 32"/>510 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericListObject.inc"/> 511 <EditorIndex Value="14"/> 512 <WindowIndex Value="0"/> 513 <TopLine Value="1"/> 514 <CursorPos X="24" Y="4"/> 515 <UsageCount Value="11"/> 514 516 <Loaded Value="True"/> 515 517 </Unit37> 516 518 <Unit38> 517 <Filename Value="H:/Lazarus/0.9.31_2.5.1/lcl/include/control.inc"/> 518 <EditorIndex Value="6"/> 519 <WindowIndex Value="0"/> 520 <TopLine Value="2774"/> 521 <CursorPos X="1" Y="2786"/> 522 <UsageCount Value="32"/> 523 <Loaded Value="True"/> 519 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-registry/src/registry.pp"/> 520 <UnitName Value="registry"/> 521 <WindowIndex Value="0"/> 522 <TopLine Value="68"/> 523 <CursorPos X="14" Y="81"/> 524 <UsageCount Value="12"/> 524 525 </Unit38> 526 <Unit39> 527 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-registry/src/winreg.inc"/> 528 <WindowIndex Value="0"/> 529 <TopLine Value="239"/> 530 <CursorPos X="3" Y="245"/> 531 <UsageCount Value="12"/> 532 </Unit39> 533 <Unit40> 534 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/rtl/objpas/sysutils/datih.inc"/> 535 <WindowIndex Value="0"/> 536 <TopLine Value="104"/> 537 <CursorPos X="23" Y="112"/> 538 <UsageCount Value="10"/> 539 </Unit40> 540 <Unit41> 541 <Filename Value="Forms/UAboutForm.pas"/> 542 <IsPartOfProject Value="True"/> 543 <ComponentName Value="AboutForm"/> 544 <HasResources Value="True"/> 545 <ResourceBaseClass Value="Form"/> 546 <UnitName Value="UAboutForm"/> 547 <EditorIndex Value="5"/> 548 <WindowIndex Value="0"/> 549 <TopLine Value="4"/> 550 <CursorPos X="20" Y="19"/> 551 <UsageCount Value="24"/> 552 <Loaded Value="True"/> 553 <LoadedDesigner Value="True"/> 554 <DefaultSyntaxHighlighter Value="Delphi"/> 555 </Unit41> 556 <Unit42> 557 <Filename Value="../../../Lazarus/0.9.31_2.5.1/lcl/include/fileutil.inc"/> 558 <EditorIndex Value="4"/> 559 <WindowIndex Value="0"/> 560 <TopLine Value="1575"/> 561 <CursorPos X="6" Y="1578"/> 562 <UsageCount Value="12"/> 563 <Loaded Value="True"/> 564 </Unit42> 565 <Unit43> 566 <Filename Value="../../PascalClassLibrary/Generics/TemplateGenerics/Generic/GenericList.inc"/> 567 <WindowIndex Value="0"/> 568 <TopLine Value="119"/> 569 <CursorPos X="1" Y="132"/> 570 <UsageCount Value="10"/> 571 </Unit43> 525 572 </Units> 526 573 <JumpHistory Count="30" HistoryIndex="29"> 527 574 <Position1> 528 <Filename Value="Forms/U ItemEdit.pas"/>529 <Caret Line=" 63" Column="1" TopLine="54"/>575 <Filename Value="Forms/ULoginProfileForm.pas"/> 576 <Caret Line="157" Column="32" TopLine="145"/> 530 577 </Position1> 531 578 <Position2> 532 <Filename Value="Forms/U ItemEdit.pas"/>533 <Caret Line=" 60" Column="1" TopLine="54"/>579 <Filename Value="Forms/ULoginProfileForm.pas"/> 580 <Caret Line="155" Column="16" TopLine="144"/> 534 581 </Position2> 535 582 <Position3> 536 <Filename Value="Forms/U ItemEdit.pas"/>537 <Caret Line=" 61" Column="1" TopLine="54"/>583 <Filename Value="Forms/ULoginProfileForm.pas"/> 584 <Caret Line="153" Column="1" TopLine="144"/> 538 585 </Position3> 539 586 <Position4> 540 <Filename Value="Forms/U ItemEdit.pas"/>541 <Caret Line=" 63" Column="1" TopLine="54"/>587 <Filename Value="Forms/ULoginProfileForm.pas"/> 588 <Caret Line="154" Column="1" TopLine="144"/> 542 589 </Position4> 543 590 <Position5> 544 <Filename Value="Forms/U ItemEdit.pas"/>545 <Caret Line=" 65" Column="5" TopLine="54"/>591 <Filename Value="Forms/ULoginProfileForm.pas"/> 592 <Caret Line="155" Column="1" TopLine="144"/> 546 593 </Position5> 547 594 <Position6> 548 <Filename Value="Forms/U ItemEdit.pas"/>549 <Caret Line=" 66" Column="1" TopLine="54"/>595 <Filename Value="Forms/ULoginProfileForm.pas"/> 596 <Caret Line="156" Column="1" TopLine="144"/> 550 597 </Position6> 551 598 <Position7> 552 <Filename Value=" H:/PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/>553 <Caret Line=" 244" Column="1" TopLine="232"/>599 <Filename Value="Forms/ULoginProfileForm.pas"/> 600 <Caret Line="157" Column="1" TopLine="144"/> 554 601 </Position7> 555 602 <Position8> 556 <Filename Value="Forms/U ItemEdit.pas"/>557 <Caret Line=" 60" Column="83" TopLine="54"/>603 <Filename Value="Forms/ULoginProfileForm.pas"/> 604 <Caret Line="158" Column="1" TopLine="144"/> 558 605 </Position8> 559 606 <Position9> 560 <Filename Value="Forms/U ItemEdit.pas"/>561 <Caret Line="1 35" Column="22" TopLine="124"/>607 <Filename Value="Forms/ULoginProfileForm.pas"/> 608 <Caret Line="160" Column="1" TopLine="144"/> 562 609 </Position9> 563 610 <Position10> 564 <Filename Value=" Application/UDataTypes.pas"/>565 <Caret Line=" 83" Column="69" TopLine="67"/>611 <Filename Value="Forms/ULoginProfileForm.pas"/> 612 <Caret Line="153" Column="1" TopLine="144"/> 566 613 </Position10> 567 614 <Position11> 568 <Filename Value="Forms/U MainForm.pas"/>569 <Caret Line=" 747" Column="24" TopLine="733"/>615 <Filename Value="Forms/ULoginProfileForm.pas"/> 616 <Caret Line="154" Column="1" TopLine="144"/> 570 617 </Position11> 571 618 <Position12> 572 <Filename Value=" USystem.pas"/>573 <Caret Line=" 600" Column="15" TopLine="595"/>619 <Filename Value="Forms/ULoginProfileForm.pas"/> 620 <Caret Line="155" Column="1" TopLine="144"/> 574 621 </Position12> 575 622 <Position13> 576 <Filename Value=" USystem.pas"/>577 <Caret Line=" 602" Column="18" TopLine="595"/>623 <Filename Value="Forms/ULoginProfileForm.pas"/> 624 <Caret Line="156" Column="1" TopLine="144"/> 578 625 </Position13> 579 626 <Position14> 580 <Filename Value=" USystem.pas"/>581 <Caret Line=" 607" Column="16" TopLine="595"/>627 <Filename Value="Forms/ULoginProfileForm.pas"/> 628 <Caret Line="157" Column="6" TopLine="144"/> 582 629 </Position14> 583 630 <Position15> 584 <Filename Value="Forms/U ItemAdd.pas"/>585 <Caret Line="6 4" Column="24" TopLine="51"/>631 <Filename Value="Forms/ULoginProfileForm.pas"/> 632 <Caret Line="60" Column="15" TopLine="48"/> 586 633 </Position15> 587 634 <Position16> 588 <Filename Value=" H:/Lazarus/0.9.31_2.5.1/lcl/include/control.inc"/>589 <Caret Line=" 2786" Column="1" TopLine="2774"/>635 <Filename Value="Forms/ULoginProfileForm.pas"/> 636 <Caret Line="146" Column="30" TopLine="141"/> 590 637 </Position16> 591 638 <Position17> 592 <Filename Value="Forms/U ItemAdd.pas"/>593 <Caret Line=" 65" Column="23" TopLine="51"/>639 <Filename Value="Forms/ULoginProfileForm.pas"/> 640 <Caret Line="108" Column="31" TopLine="87"/> 594 641 </Position17> 595 642 <Position18> 596 <Filename Value="Forms/U ItemAdd.pas"/>597 <Caret Line=" 31" Column="1" TopLine="18"/>643 <Filename Value="Forms/ULoginProfileForm.pas"/> 644 <Caret Line="122" Column="1" TopLine="118"/> 598 645 </Position18> 599 646 <Position19> 600 <Filename Value="Forms/U ItemAdd.pas"/>601 <Caret Line=" 84" Column="1" TopLine="72"/>647 <Filename Value="Forms/ULoginProfileForm.pas"/> 648 <Caret Line="183" Column="80" TopLine="180"/> 602 649 </Position19> 603 650 <Position20> 604 <Filename Value="Forms/U ItemAdd.pas"/>605 <Caret Line=" 89" Column="1" TopLine="77"/>651 <Filename Value="Forms/ULoginProfileForm.pas"/> 652 <Caret Line="123" Column="92" TopLine="120"/> 606 653 </Position20> 607 654 <Position21> 608 <Filename Value="Forms/U ItemAdd.pas"/>609 <Caret Line="1 19" Column="1" TopLine="107"/>655 <Filename Value="Forms/ULoginProfileForm.pas"/> 656 <Caret Line="129" Column="78" TopLine="126"/> 610 657 </Position21> 611 658 <Position22> 612 <Filename Value="Forms/U ItemEdit.pas"/>613 <Caret Line=" 66" Column="1" TopLine="53"/>659 <Filename Value="Forms/ULoginProfileForm.pas"/> 660 <Caret Line="141" Column="36" TopLine="115"/> 614 661 </Position22> 615 662 <Position23> 616 <Filename Value="Forms/U ItemEdit.pas"/>617 <Caret Line="1 02" Column="1" TopLine="87"/>663 <Filename Value="Forms/ULoginProfileForm.pas"/> 664 <Caret Line="123" Column="110" TopLine="110"/> 618 665 </Position23> 619 666 <Position24> 620 <Filename Value="Forms/U ItemSelect.pas"/>621 <Caret Line=" 50" Column="17" TopLine="41"/>667 <Filename Value="Forms/ULoginProfileForm.pas"/> 668 <Caret Line="183" Column="25" TopLine="177"/> 622 669 </Position24> 623 670 <Position25> 624 <Filename Value="Forms/U ItemSelect.pas"/>625 <Caret Line=" 53" Column="21" TopLine="41"/>671 <Filename Value="Forms/ULoginProfileForm.pas"/> 672 <Caret Line="184" Column="25" TopLine="178"/> 626 673 </Position25> 627 674 <Position26> 628 <Filename Value="Forms/U ItemSelect.pas"/>629 <Caret Line=" 50" Column="17" TopLine="41"/>675 <Filename Value="Forms/ULoginProfileForm.pas"/> 676 <Caret Line="193" Column="27" TopLine="185"/> 630 677 </Position26> 631 678 <Position27> 632 <Filename Value="Forms/U ItemSelect.pas"/>633 <Caret Line=" 32" Column="53" TopLine="11"/>679 <Filename Value="Forms/ULoginProfileForm.pas"/> 680 <Caret Line="133" Column="57" TopLine="129"/> 634 681 </Position27> 635 682 <Position28> 636 <Filename Value=" Application/UDataTypes.pas"/>637 <Caret Line=" 258" Column="67" TopLine="246"/>683 <Filename Value="Forms/ULoginProfileForm.pas"/> 684 <Caret Line="131" Column="36" TopLine="118"/> 638 685 </Position28> 639 686 <Position29> 640 <Filename Value=" Application/UDataTypes.pas"/>641 <Caret Line=" 260" Column="1" TopLine="246"/>687 <Filename Value="Forms/ULoginProfileForm.pas"/> 688 <Caret Line="67" Column="21" TopLine="47"/> 642 689 </Position29> 643 690 <Position30> 644 <Filename Value="Forms/U ItemView.pas"/>645 <Caret Line="1 19" Column="39" TopLine="108"/>691 <Filename Value="Forms/ULoginProfileForm.pas"/> 692 <Caret Line="196" Column="27" TopLine="187"/> 646 693 </Position30> 647 694 </JumpHistory> … … 678 725 <Debugging> 679 726 <GenerateDebugInfo Value="True"/> 727 <DebugInfoType Value="dsStabs"/> 680 728 <UseHeaptrc Value="True"/> 681 729 </Debugging> -
trunk/chronis.lpr
r21 r25 11 11 ULoginForm, UMainForm, UItemAdd, TemplateGenerics, CoolTranslator, Common, 12 12 CoolWeb, USystem, UCore, UApplicationInfo, USettingForm, UDataTypes, 13 UImportStructureForm, UItemSelect 13 UImportStructureForm, UItemSelect, ULoginProfileForm, UAboutForm 14 14 { you can add units after this }; 15 15 … … 38 38 Application.CreateForm(TImportStructureForm, ImportStructureForm); 39 39 Application.CreateForm(TItemSelectForm, ItemSelectForm); 40 Application.CreateForm(TLoginProfileForm, LoginProfileForm); 41 Application.CreateForm(TAboutForm, AboutForm); 40 42 Application.Run; 41 43 end. -
trunk/languages/chronis.cs.po
r18 r25 5 5 "POT-Creation-Date: \n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jiří Hajda <software@mezservis.cz>\n"7 "Last-Translator: Chronos <robie@centrum.cz>\n" 8 8 "Language-Team: \n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 12 #: TABOUTFORM.CAPTION 13 msgctxt "TABOUTFORM.CAPTION" 14 msgid "About" 15 msgstr "O programu" 16 17 #: TABOUTFORM.OKBUTTON.CAPTION 18 msgid "OK" 19 msgstr "OK" 20 21 #: TIMPORTSTRUCTUREFORM.BUTTON1.CAPTION 22 msgid "Import" 23 msgstr "Import" 24 25 #: TIMPORTSTRUCTUREFORM.CAPTION 26 msgid "Import structure" 27 msgstr "Importovat strukturu" 28 29 #: TIMPORTSTRUCTUREFORM.LABEL1.CAPTION 30 msgid "Schema:" 31 msgstr "Schéma:" 32 33 #: TIMPORTSTRUCTUREFORM.LABEL2.CAPTION 34 msgid "Host:" 35 msgstr "Hostitel:" 36 37 #: TIMPORTSTRUCTUREFORM.LABEL3.CAPTION 38 msgid "User:" 39 msgstr "Uživatel:" 40 41 #: TIMPORTSTRUCTUREFORM.LABEL4.CAPTION 42 msgctxt "TIMPORTSTRUCTUREFORM.LABEL4.CAPTION" 43 msgid "Password:" 44 msgstr "Heslo:" 11 45 12 46 #: TITEMADDFORM.BUTTONCANCEL.CAPTION … … 44 78 msgstr "Upravit položku" 45 79 80 #: TITEMSELECTFORM.BUTTONCANCEL.CAPTION 81 msgctxt "TITEMSELECTFORM.BUTTONCANCEL.CAPTION" 82 msgid "Cancel" 83 msgstr "Zrušit" 84 85 #: TITEMSELECTFORM.BUTTONSELECT.CAPTION 86 msgid "Select" 87 msgstr "Vybrat" 88 89 #: TITEMSELECTFORM.CAPTION 90 msgid "Item select" 91 msgstr "Výběr položky" 92 46 93 #: TITEMVIEWFORM.BUTTONCLOSE.CAPTION 47 94 #| msgid "Zavřít" … … 66 113 msgstr "Zavřít" 67 114 115 #: TLOGINFORM.BUTTONCHANGE.CAPTION 116 msgid "Change" 117 msgstr "Změnit" 118 68 119 #: TLOGINFORM.BUTTONLOGIN.CAPTION 69 120 msgctxt "TLOGINFORM.BUTTONLOGIN.CAPTION" … … 81 132 82 133 #: TLOGINFORM.LABEL2.CAPTION 134 msgctxt "TLOGINFORM.LABEL2.CAPTION" 83 135 msgid "Password:" 84 136 msgstr "Heslo:" 85 137 86 #: TLOGINFORM.MASKEDIT1.TEXT 138 #: TLOGINFORM.LABEL3.CAPTION 139 msgid "Connection:" 140 msgstr "Spojení:" 141 142 #: TLOGINFORM.MASKEDITPASSWORD.TEXT 143 msgctxt "TLOGINFORM.MASKEDITPASSWORD.TEXT" 87 144 msgid "*" 88 145 msgstr "*" 146 147 #: TLOGINPROFILEFORM.BUTTONADD.CAPTION 148 msgctxt "TLOGINPROFILEFORM.BUTTONADD.CAPTION" 149 msgid "Add" 150 msgstr "Přidat" 151 152 #: TLOGINPROFILEFORM.BUTTONCANCEL.CAPTION 153 msgctxt "TLOGINPROFILEFORM.BUTTONCANCEL.CAPTION" 154 msgid "Cancel" 155 msgstr "Zrušit" 156 157 #: TLOGINPROFILEFORM.BUTTONDELETE.CAPTION 158 msgctxt "TLOGINPROFILEFORM.BUTTONDELETE.CAPTION" 159 msgid "Delete" 160 msgstr "Odebrat" 161 162 #: TLOGINPROFILEFORM.BUTTONOK.CAPTION 163 msgid "Ok" 164 msgstr "Ok" 165 166 #: TLOGINPROFILEFORM.CAPTION 167 msgid "Connection profile" 168 msgstr "Profil připojení" 169 170 #: TLOGINPROFILEFORM.LABEL1.CAPTION 171 msgid "Profiles:" 172 msgstr "Profily:" 173 174 #: TLOGINPROFILEFORM.LABEL2.CAPTION 175 msgid "Port:" 176 msgstr "Zásuvka:" 177 178 #: TLOGINPROFILEFORM.LABEL3.CAPTION 179 msgid "Protocol:" 180 msgstr "Protokol:" 181 182 #: TLOGINPROFILEFORM.LABEL4.CAPTION 183 msgid "Database:" 184 msgstr "Databáze:" 185 186 #: TLOGINPROFILEFORM.LABEL5.CAPTION 187 msgid "Name:" 188 msgstr "Jméno:" 189 190 #: TLOGINPROFILEFORM.LABELSERVER.CAPTION 191 msgid "Server:" 192 msgstr "Server:" 193 194 #: TMAINFORM.AABOUT.CAPTION 195 msgctxt "TMAINFORM.AABOUT.CAPTION" 196 msgid "About" 197 msgstr "O programu" 89 198 90 199 #: TMAINFORM.ACONNECT.CAPTION … … 101 210 msgid "Exit" 102 211 msgstr "Ukončit" 212 213 #: TMAINFORM.AIMPORTSTRUCTURE.CAPTION 214 msgid "Import structure..." 215 msgstr "Importovat strukturu..." 103 216 104 217 #: TMAINFORM.AINITSYSTEMVALUES.CAPTION … … 235 348 msgstr "Jazyk:" 236 349 350 #: uaboutform.sapplicationname 351 msgid "Application name" 352 msgstr "Jméno aplikace" 353 354 #: uaboutform.semail 355 msgid "E-mail" 356 msgstr "E-mail" 357 358 #: uaboutform.smanufacturer 359 msgid "Company" 360 msgstr "Společnost" 361 362 #: uaboutform.sreleasedate 363 msgid "Release date" 364 msgstr "Datum uvolnění" 365 366 #: uaboutform.sversion 367 msgid "Version" 368 msgstr "Verze" 369 370 #: uloginprofileform.sprofile 371 msgid "Profile" 372 msgstr "Profil" 373 374 #: uloginprofileform.sprotocolxmlrpc 375 msgid "XML-RPC" 376 msgstr "XML-RPC" 377 237 378 #: umainform.sgroup 238 379 msgid "Groups" -
trunk/languages/chronis.po
r18 r25 1 1 msgid "" 2 2 msgstr "Content-Type: text/plain; charset=UTF-8" 3 4 #: TABOUTFORM.CAPTION 5 msgctxt "TABOUTFORM.CAPTION" 6 msgid "About" 7 msgstr "" 8 9 #: TABOUTFORM.OKBUTTON.CAPTION 10 msgid "OK" 11 msgstr "" 12 13 #: TIMPORTSTRUCTUREFORM.BUTTON1.CAPTION 14 msgid "Import" 15 msgstr "" 16 17 #: TIMPORTSTRUCTUREFORM.CAPTION 18 msgid "Import structure" 19 msgstr "" 20 21 #: TIMPORTSTRUCTUREFORM.LABEL1.CAPTION 22 msgid "Schema:" 23 msgstr "" 24 25 #: TIMPORTSTRUCTUREFORM.LABEL2.CAPTION 26 msgid "Host:" 27 msgstr "" 28 29 #: TIMPORTSTRUCTUREFORM.LABEL3.CAPTION 30 msgid "User:" 31 msgstr "" 32 33 #: TIMPORTSTRUCTUREFORM.LABEL4.CAPTION 34 msgctxt "TIMPORTSTRUCTUREFORM.LABEL4.CAPTION" 35 msgid "Password:" 36 msgstr "" 3 37 4 38 #: TITEMADDFORM.BUTTONCANCEL.CAPTION … … 32 66 msgstr "" 33 67 68 #: TITEMSELECTFORM.BUTTONCANCEL.CAPTION 69 msgctxt "TITEMSELECTFORM.BUTTONCANCEL.CAPTION" 70 msgid "Cancel" 71 msgstr "" 72 73 #: TITEMSELECTFORM.BUTTONSELECT.CAPTION 74 msgid "Select" 75 msgstr "" 76 77 #: TITEMSELECTFORM.CAPTION 78 msgid "Item select" 79 msgstr "" 80 34 81 #: TITEMVIEWFORM.BUTTONCLOSE.CAPTION 35 82 msgctxt "TITEMVIEWFORM.BUTTONCLOSE.CAPTION" … … 52 99 msgstr "" 53 100 101 #: TLOGINFORM.BUTTONCHANGE.CAPTION 102 msgid "Change" 103 msgstr "" 104 54 105 #: TLOGINFORM.BUTTONLOGIN.CAPTION 55 106 msgctxt "TLOGINFORM.BUTTONLOGIN.CAPTION" … … 67 118 68 119 #: TLOGINFORM.LABEL2.CAPTION 120 msgctxt "TLOGINFORM.LABEL2.CAPTION" 69 121 msgid "Password:" 70 122 msgstr "" 71 123 72 #: TLOGINFORM.MASKEDIT1.TEXT 124 #: TLOGINFORM.LABEL3.CAPTION 125 msgid "Connection:" 126 msgstr "" 127 128 #: TLOGINFORM.MASKEDITPASSWORD.TEXT 129 msgctxt "TLOGINFORM.MASKEDITPASSWORD.TEXT" 73 130 msgid "*" 131 msgstr "" 132 133 #: TLOGINPROFILEFORM.BUTTONADD.CAPTION 134 msgctxt "TLOGINPROFILEFORM.BUTTONADD.CAPTION" 135 msgid "Add" 136 msgstr "" 137 138 #: TLOGINPROFILEFORM.BUTTONCANCEL.CAPTION 139 msgctxt "TLOGINPROFILEFORM.BUTTONCANCEL.CAPTION" 140 msgid "Cancel" 141 msgstr "" 142 143 #: TLOGINPROFILEFORM.BUTTONDELETE.CAPTION 144 msgctxt "TLOGINPROFILEFORM.BUTTONDELETE.CAPTION" 145 msgid "Delete" 146 msgstr "" 147 148 #: TLOGINPROFILEFORM.BUTTONOK.CAPTION 149 msgid "Ok" 150 msgstr "" 151 152 #: TLOGINPROFILEFORM.CAPTION 153 msgid "Connection profile" 154 msgstr "" 155 156 #: TLOGINPROFILEFORM.LABEL1.CAPTION 157 msgid "Profiles:" 158 msgstr "" 159 160 #: TLOGINPROFILEFORM.LABEL2.CAPTION 161 msgid "Port:" 162 msgstr "" 163 164 #: TLOGINPROFILEFORM.LABEL3.CAPTION 165 msgid "Protocol:" 166 msgstr "" 167 168 #: TLOGINPROFILEFORM.LABEL4.CAPTION 169 msgid "Database:" 170 msgstr "" 171 172 #: TLOGINPROFILEFORM.LABEL5.CAPTION 173 msgid "Name:" 174 msgstr "" 175 176 #: TLOGINPROFILEFORM.LABELSERVER.CAPTION 177 msgid "Server:" 178 msgstr "" 179 180 #: TMAINFORM.AABOUT.CAPTION 181 msgctxt "TMAINFORM.AABOUT.CAPTION" 182 msgid "About" 74 183 msgstr "" 75 184 … … 88 197 msgstr "" 89 198 199 #: TMAINFORM.AIMPORTSTRUCTURE.CAPTION 200 msgid "Import structure..." 201 msgstr "" 202 90 203 #: TMAINFORM.AINITSYSTEMVALUES.CAPTION 91 204 msgctxt "TMAINFORM.AINITSYSTEMVALUES.CAPTION" … … 208 321 msgstr "" 209 322 323 #: uaboutform.sapplicationname 324 msgid "Application name" 325 msgstr "" 326 327 #: uaboutform.semail 328 msgid "E-mail" 329 msgstr "" 330 331 #: uaboutform.smanufacturer 332 msgid "Company" 333 msgstr "" 334 335 #: uaboutform.sreleasedate 336 msgid "Release date" 337 msgstr "" 338 339 #: uaboutform.sversion 340 msgid "Version" 341 msgstr "" 342 343 #: uloginprofileform.sprofile 344 msgid "Profile" 345 msgstr "" 346 347 #: uloginprofileform.sprotocolxmlrpc 348 msgid "XML-RPC" 349 msgstr "" 350 210 351 #: umainform.sgroup 211 352 msgid "Groups"
Note:
See TracChangeset
for help on using the changeset viewer.