Changeset 572 for CoolStreaming/Demo/VarBlockSerializer
- Timestamp:
- Jun 25, 2024, 1:37:11 AM (7 months ago)
- Location:
- CoolStreaming/Demo/VarBlockSerializer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
CoolStreaming/Demo/VarBlockSerializer/UMainForm.lfm
r174 r572 1 1 object MainForm: TMainForm 2 2 Left = 263 3 Height = 4053 Height = 608 4 4 Top = 119 5 Width = 6445 Width = 966 6 6 Caption = 'VarBlockSerializer demo' 7 ClientHeight = 405 8 ClientWidth = 644 7 ClientHeight = 608 8 ClientWidth = 966 9 DesignTimePPI = 144 9 10 OnShow = FormShow 10 LCLVersion = ' 0.9.31'11 LCLVersion = '3.4.0.0' 11 12 object PageControl1: TPageControl 12 Left = 813 Height = 39214 Top = 815 Width = 63213 Left = 12 14 Height = 588 15 Top = 12 16 Width = 948 16 17 ActivePage = TabSheet1 17 18 Anchors = [akTop, akLeft, akRight, akBottom] … … 20 21 object TabSheet1: TTabSheet 21 22 Caption = 'Simple types' 22 ClientHeight = 36623 ClientWidth = 62423 ClientHeight = 548 24 ClientWidth = 938 24 25 object GroupBox1: TGroupBox 25 Left = 826 Height = 6427 Top = 828 Width = 60826 Left = 12 27 Height = 96 28 Top = 12 29 Width = 912 29 30 Caption = 'Unsigned integer (UInt)' 30 ClientHeight = 4631 ClientWidth = 60431 ClientHeight = 69 32 ClientWidth = 910 32 33 TabOrder = 0 33 34 object SpinEditUInt: TSpinEdit 34 Left = 635 Height = 2136 Top = 837 Width = 15235 Left = 9 36 Height = 43 37 Top = 12 38 Width = 228 38 39 MaxValue = 1000000000 39 40 TabOrder = 0 … … 41 42 end 42 43 object ButtonUIntEncode: TButton 43 Left = 246 44 Height = 25 45 Top = 8 46 Width = 75 47 Caption = 'Encode >>' 44 Left = 369 45 Height = 38 46 Top = 12 47 Width = 112 48 Caption = 'Encode >>' 49 TabOrder = 1 48 50 OnClick = ButtonUIntEncodeClick 49 TabOrder = 150 51 end 51 52 object EditUInt: TEdit 52 Left = 32653 Height = 2154 Top = 855 Width = 26953 Left = 489 54 Height = 43 55 Top = 12 56 Width = 404 56 57 TabOrder = 2 57 58 Text = '00' 58 59 end 59 60 object ButtonUIntDecode: TButton 60 Left = 166 61 Height = 25 62 Top = 8 63 Width = 75 64 Caption = '<< Decode' 61 Left = 249 62 Height = 38 63 Top = 12 64 Width = 112 65 Caption = '<< Decode' 66 TabOrder = 3 65 67 OnClick = ButtonUIntDecodeClick 66 TabOrder = 367 68 end 68 69 end 69 70 object GroupBox2: TGroupBox 70 Left = 871 Height = 6472 Top = 8073 Width = 60871 Left = 12 72 Height = 96 73 Top = 120 74 Width = 912 74 75 Caption = 'Signed integer (SInt)' 75 ClientHeight = 4676 ClientWidth = 60476 ClientHeight = 69 77 ClientWidth = 910 77 78 TabOrder = 1 78 79 object SpinEditSInt: TSpinEdit 79 Left = 680 Height = 2181 Top = 882 Width = 15280 Left = 9 81 Height = 43 82 Top = 12 83 Width = 228 83 84 MaxValue = 1000000000 84 85 MinValue = -1000000000 … … 87 88 end 88 89 object ButtonSIntEncode: TButton 89 Left = 246 90 Height = 25 91 Top = 8 92 Width = 75 93 Caption = 'Encode >>' 90 Left = 369 91 Height = 38 92 Top = 12 93 Width = 112 94 Caption = 'Encode >>' 95 TabOrder = 1 94 96 OnClick = ButtonSIntEncodeClick 95 TabOrder = 196 97 end 97 98 object EditSInt: TEdit 98 Left = 32699 Height = 21100 Top = 8101 Width = 26999 Left = 489 100 Height = 43 101 Top = 12 102 Width = 404 102 103 TabOrder = 2 103 104 Text = '00' 104 105 end 105 106 object ButtonSIntDecode: TButton 106 Left = 166 107 Height = 25 108 Top = 8 109 Width = 75 110 Caption = '<< Decode' 107 Left = 249 108 Height = 38 109 Top = 12 110 Width = 112 111 Caption = '<< Decode' 112 TabOrder = 3 111 113 OnClick = ButtonSIntDecodeClick 112 TabOrder = 3113 114 end 114 115 end 115 116 object GroupBox3: TGroupBox 116 Left = 8117 Height = 64118 Top = 152119 Width = 608117 Left = 12 118 Height = 96 119 Top = 228 120 Width = 912 120 121 Caption = 'String' 121 ClientHeight = 46122 ClientWidth = 604122 ClientHeight = 69 123 ClientWidth = 910 123 124 TabOrder = 2 124 125 object ButtonEncodeString: TButton 125 Left = 246 126 Height = 25 127 Top = 8 128 Width = 75 129 Caption = 'Encode >>' 126 Left = 369 127 Height = 38 128 Top = 12 129 Width = 112 130 Caption = 'Encode >>' 131 TabOrder = 0 130 132 OnClick = ButtonEncodeStringClick 131 TabOrder = 0132 133 end 133 134 object EditStringData: TEdit 134 Left = 326135 Height = 21136 Top = 8137 Width = 269135 Left = 489 136 Height = 43 137 Top = 12 138 Width = 404 138 139 TabOrder = 1 139 140 Text = '00' 140 141 end 141 142 object ButtonDecodeString: TButton 142 Left = 166 143 Height = 25 144 Top = 8 145 Width = 75 146 Caption = '<< Decode' 143 Left = 249 144 Height = 38 145 Top = 12 146 Width = 112 147 Caption = '<< Decode' 148 TabOrder = 2 147 149 OnClick = ButtonDecodeStringClick 148 TabOrder = 2149 150 end 150 151 object EditString: TEdit 151 Left = 6152 Height = 21153 Top = 8154 Width = 152152 Left = 9 153 Height = 43 154 Top = 12 155 Width = 228 155 156 TabOrder = 3 156 157 Text = 'Hello world' … … 158 159 end 159 160 object GroupBox4: TGroupBox 160 Left = 8161 Height = 64162 Top = 224163 Width = 608161 Left = 12 162 Height = 96 163 Top = 336 164 Width = 912 164 165 Caption = 'Raw data (Block)' 165 ClientHeight = 46166 ClientWidth = 604166 ClientHeight = 69 167 ClientWidth = 910 167 168 TabOrder = 3 168 169 object ButtonEncodeRaw: TButton 169 Left = 246 170 Height = 25 171 Top = 8 172 Width = 75 173 Caption = 'Encode >>' 170 Left = 369 171 Height = 38 172 Top = 12 173 Width = 112 174 Caption = 'Encode >>' 175 TabOrder = 0 174 176 OnClick = ButtonEncodeRawClick 175 TabOrder = 0176 177 end 177 178 object EditRawData: TEdit 178 Left = 326179 Height = 21180 Top = 8181 Width = 269179 Left = 489 180 Height = 43 181 Top = 12 182 Width = 404 182 183 TabOrder = 1 183 184 Text = '00' 184 185 end 185 186 object ButtonDecodeRaw: TButton 186 Left = 166 187 Height = 25 188 Top = 8 189 Width = 75 190 Caption = '<< Decode' 187 Left = 249 188 Height = 38 189 Top = 12 190 Width = 112 191 Caption = '<< Decode' 192 TabOrder = 2 191 193 OnClick = ButtonDecodeRawClick 192 TabOrder = 2193 194 end 194 195 object EditRaw: TEdit 195 Left = 6196 Height = 21197 Top = 8198 Width = 152196 Left = 9 197 Height = 43 198 Top = 12 199 Width = 228 199 200 TabOrder = 3 200 201 Text = '01 23 45 67 89 AB CD EF' … … 202 203 end 203 204 object GroupBox5: TGroupBox 204 Left = 8205 Height = 64206 Top = 296207 Width = 608205 Left = 12 206 Height = 96 207 Top = 444 208 Width = 912 208 209 Caption = 'Float' 209 ClientHeight = 46210 ClientWidth = 604210 ClientHeight = 69 211 ClientWidth = 910 211 212 TabOrder = 4 212 213 object ButtonFloatEncode1: TButton 213 Left = 246 214 Height = 25 215 Top = 8 216 Width = 75 217 Caption = 'Encode >>' 214 Left = 369 215 Height = 38 216 Top = 12 217 Width = 112 218 Caption = 'Encode >>' 219 TabOrder = 0 218 220 OnClick = ButtonFloatEncode1Click 219 TabOrder = 0220 221 end 221 222 object EditFloat: TEdit 222 Left = 326223 Height = 21224 Top = 8225 Width = 269223 Left = 489 224 Height = 43 225 Top = 12 226 Width = 404 226 227 TabOrder = 1 227 228 Text = '00' 228 229 end 229 230 object ButtonFloatDecode1: TButton 230 Left = 166 231 Height = 25 232 Top = 7 233 Width = 75 234 Caption = '<< Decode' 231 Left = 249 232 Height = 38 233 Top = 10 234 Width = 112 235 Caption = '<< Decode' 236 TabOrder = 2 235 237 OnClick = ButtonFloatDecode1Click 236 TabOrder = 2237 238 end 238 239 object FloatSpinEdit1: TFloatSpinEdit 239 Left = 6240 Height = 21241 Top = 7242 Width = 96240 Left = 9 241 Height = 43 242 Top = 10 243 Width = 144 243 244 DecimalPlaces = 8 244 Increment = 1245 245 MaxValue = 1000000000 246 246 MinValue = -100000000 247 247 TabOrder = 3 248 Value = 0249 248 end 250 249 object SpinEditFloat: TSpinEdit 251 Left = 1 10252 Height = 21253 Top = 16254 Width = 50250 Left = 165 251 Height = 43 252 Top = 24 253 Width = 75 255 254 MaxValue = 16 256 255 MinValue = 2 … … 259 258 end 260 259 object Label1: TLabel 261 Left = 1 11262 Height = 14260 Left = 166 261 Height = 26 263 262 Top = 0 264 Width = 24263 Width = 41 265 264 Caption = 'Base' 266 265 ParentColor = False … … 270 269 object TabSheet2: TTabSheet 271 270 Caption = 'Indexed structure' 272 ClientHeight = 366273 ClientWidth = 624271 ClientHeight = 548 272 ClientWidth = 938 274 273 object EditIndexedItem1: TEdit 275 Left = 36276 Height = 21277 Top = 34278 Width = 224274 Left = 54 275 Height = 43 276 Top = 51 277 Width = 336 279 278 TabOrder = 0 280 279 Text = '11 22' 281 280 end 282 281 object Label2: TLabel 283 Left = 1 0284 Height = 14285 Top = 38286 Width = 14282 Left = 15 283 Height = 26 284 Top = 57 285 Width = 20 287 286 Caption = '0: ' 288 287 ParentColor = False 289 288 end 290 289 object Label3: TLabel 291 Left = 1 0292 Height = 14293 Top = 61294 Width = 1 1290 Left = 15 291 Height = 26 292 Top = 92 293 Width = 15 295 294 Caption = '1:' 296 295 ParentColor = False 297 296 end 298 297 object EditIndexedItem2: TEdit 299 Left = 36300 Height = 21301 Top = 58302 Width = 224298 Left = 54 299 Height = 43 300 Top = 87 301 Width = 336 303 302 TabOrder = 1 304 303 Text = '33 44' 305 304 end 306 305 object EditIndexedItem3: TEdit 307 Left = 36308 Height = 21309 Top = 86310 Width = 224306 Left = 54 307 Height = 43 308 Top = 129 309 Width = 336 311 310 TabOrder = 2 312 311 Text = '55 66' 313 312 end 314 313 object Label4: TLabel 315 Left = 1 0316 Height = 14317 Top = 89318 Width = 1 1314 Left = 15 315 Height = 26 316 Top = 134 317 Width = 15 319 318 Caption = '2:' 320 319 ParentColor = False 321 320 end 322 321 object ButtonEncodeIndexed: TButton 323 Left = 156324 Height = 25325 Top = 1 22326 Width = 75322 Left = 234 323 Height = 38 324 Top = 183 325 Width = 112 327 326 Caption = 'Encode >>' 327 TabOrder = 3 328 328 OnClick = ButtonEncodeIndexedClick 329 TabOrder = 3330 329 end 331 330 object ButtonDecodeIndexed: TButton 332 Left = 68333 Height = 25334 Top = 1 22335 Width = 75331 Left = 102 332 Height = 38 333 Top = 183 334 Width = 112 336 335 Caption = '<< Decode' 336 TabOrder = 4 337 337 OnClick = ButtonDecodeIndexedClick 338 TabOrder = 4339 338 end 340 339 object EditIndexed: TEdit 341 Left = 1 0342 Height = 21343 Top = 154344 Width = 588340 Left = 15 341 Height = 43 342 Top = 231 343 Width = 882 345 344 TabOrder = 5 346 345 end 347 346 object CheckBoxMask1: TCheckBox 348 Left = 284349 Height = 17350 Top = 34351 Width = 2 0347 Left = 426 348 Height = 23 349 Top = 51 350 Width = 23 352 351 Checked = True 353 352 State = cbChecked … … 355 354 end 356 355 object CheckBoxMask2: TCheckBox 357 Left = 284358 Height = 17359 Top = 59360 Width = 2 0356 Left = 426 357 Height = 23 358 Top = 88 359 Width = 23 361 360 Checked = True 362 361 State = cbChecked … … 364 363 end 365 364 object CheckBoxMask3: TCheckBox 366 Left = 284367 Height = 17368 Top = 88369 Width = 2 0365 Left = 426 366 Height = 23 367 Top = 132 368 Width = 23 370 369 Checked = True 371 370 State = cbChecked … … 373 372 end 374 373 object Label5: TLabel 375 Left = 268376 Height = 14377 Top = 18378 Width = 40374 Left = 402 375 Height = 26 376 Top = 27 377 Width = 74 379 378 Caption = 'Bit mask' 380 379 ParentColor = False 381 380 end 382 381 object Label6: TLabel 383 Left = 8384 Height = 14385 Top = 1 1386 Width = 29382 Left = 12 383 Height = 26 384 Top = 16 385 Width = 48 387 386 Caption = 'Index' 388 387 ParentColor = False -
CoolStreaming/Demo/VarBlockSerializer/UMainForm.pas
r173 r572 1 1 unit UMainForm; 2 3 {$mode Delphi}{$H+}4 2 5 3 interface … … 7 5 uses 8 6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 Spin, UVarBlockSerializer, StrUtils, ComCtrls, ExtCtrls;7 Spin, VarBlockSerializer, ComCtrls, ExtCtrls; 10 8 11 9 type -
CoolStreaming/Demo/VarBlockSerializer/VarBlockSerializerDemo.lpi
r222 r572 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <CONFIG> 3 3 <ProjectOptions> 4 <Version Value=" 9"/>4 <Version Value="12"/> 5 5 <PathDelim Value="\"/> 6 6 <General> 7 <MainUnit Value="0"/> 7 <Flags> 8 <CompatibilityMode Value="True"/> 9 </Flags> 8 10 <Title Value="VarBlockSerializerDemo"/> 9 11 <ResourceType Value="res"/> 10 12 <UseXPManifest Value="True"/> 11 13 <Icon Value="0"/> 12 <ActiveWindowIndexAtStart Value="0"/>13 14 </General> 14 15 <i18n> 15 16 <EnableI18N LFM="False"/> 16 17 </i18n> 17 <VersionInfo>18 <StringTable ProductVersion=""/>19 </VersionInfo>20 18 <BuildModes Count="1" Active="Default"> 21 19 <Item1 Name="Default" Default="True"/> … … 23 21 <PublishOptions> 24 22 <Version Value="2"/> 25 <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>26 <ExcludeFileFilter Value="*.(bak|ppu|o|so);*~;backup"/>27 23 </PublishOptions> 28 24 <RunParams> 29 <local> 30 <FormatVersion Value="1"/> 31 </local> 25 <FormatVersion Value="2"/> 26 <Modes Count="1"> 27 <Mode0 Name="default"/> 28 </Modes> 32 29 </RunParams> 33 30 <RequiredPackages Count="3"> … … 47 44 <Filename Value="VarBlockSerializerDemo.lpr"/> 48 45 <IsPartOfProject Value="True"/> 49 <UnitName Value="VarBlockSerializerDemo"/>50 46 <UsageCount Value="57"/> 51 47 </Unit0> … … 54 50 <IsPartOfProject Value="True"/> 55 51 <ComponentName Value="MainForm"/> 52 <HasResources Value="True"/> 56 53 <ResourceBaseClass Value="Form"/> 57 <UnitName Value="UMainForm"/> 58 <EditorIndex Value="0"/> 59 <WindowIndex Value="0"/> 60 <TopLine Value="221"/> 61 <CursorPos X="1" Y="238"/> 54 <IsVisibleTab Value="True"/> 55 <TopLine Value="50"/> 56 <CursorPos X="50" Y="73"/> 62 57 <UsageCount Value="57"/> 63 58 <Loaded Value="True"/> … … 67 62 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\spin.pp"/> 68 63 <UnitName Value="Spin"/> 69 <EditorIndex Value="12"/> 70 <WindowIndex Value="0"/> 64 <EditorIndex Value="-1"/> 71 65 <TopLine Value="172"/> 72 66 <CursorPos X="17" Y="185"/> 73 67 <UsageCount Value="29"/> 74 <Loaded Value="True"/>75 68 </Unit2> 76 69 <Unit3> 77 70 <Filename Value="..\..\UVarBlockSerializer.pas"/> 78 <UnitName Value="UVarBlockSerializer"/> 79 <IsVisibleTab Value="True"/> 80 <EditorIndex Value="8"/> 81 <WindowIndex Value="0"/> 71 <EditorIndex Value="-1"/> 82 72 <TopLine Value="218"/> 83 73 <CursorPos X="22" Y="248"/> 84 74 <UsageCount Value="29"/> 85 <Loaded Value="True"/>86 75 </Unit3> 87 76 <Unit4> 88 77 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\FPC\rtl\objpas\classes\classesh.inc"/> 89 <EditorIndex Value="10"/> 90 <WindowIndex Value="0"/> 78 <EditorIndex Value="-1"/> 91 79 <TopLine Value="773"/> 92 80 <CursorPos X="14" Y="786"/> 93 81 <UsageCount Value="29"/> 94 <Loaded Value="True"/>95 82 </Unit4> 96 83 <Unit5> 97 84 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\FPC\rtl\objpas\classes\streams.inc"/> 98 <EditorIndex Value="11"/> 99 <WindowIndex Value="0"/> 85 <EditorIndex Value="-1"/> 100 86 <TopLine Value="134"/> 101 87 <CursorPos X="26" Y="144"/> 102 88 <UsageCount Value="29"/> 103 <Loaded Value="True"/>104 89 </Unit5> 105 90 <Unit6> 106 91 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\include\control.inc"/> 107 <EditorIndex Value="1"/> 108 <WindowIndex Value="0"/> 92 <EditorIndex Value="-1"/> 109 93 <TopLine Value="1672"/> 110 <CursorPos X="1"Y="1685"/>94 <CursorPos Y="1685"/> 111 95 <UsageCount Value="12"/> 112 <Loaded Value="True"/>113 96 </Unit6> 114 97 <Unit7> 115 98 <Filename Value="..\..\UStreamHelper.pas"/> 116 <UnitName Value="UStreamHelper"/> 117 <EditorIndex Value="9"/> 118 <WindowIndex Value="0"/> 99 <EditorIndex Value="-1"/> 119 100 <TopLine Value="192"/> 120 <CursorPos X="1"Y="205"/>101 <CursorPos Y="205"/> 121 102 <UsageCount Value="12"/> 122 <Loaded Value="True"/>123 103 </Unit7> 124 104 <Unit8> 125 105 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\FPC\rtl\inc\mathh.inc"/> 126 <WindowIndex Value="0"/>127 106 <TopLine Value="57"/> 128 107 <CursorPos X="18" Y="79"/> … … 131 110 <Unit9> 132 111 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\include\buttoncontrol.inc"/> 133 <EditorIndex Value="6"/> 134 <WindowIndex Value="0"/> 112 <EditorIndex Value="-1"/> 135 113 <TopLine Value="14"/> 136 <CursorPos X="1" Y="22"/> 137 <UsageCount Value="11"/> 138 <Loaded Value="True"/> 114 <CursorPos Y="22"/> 115 <UsageCount Value="11"/> 139 116 </Unit9> 140 117 <Unit10> 141 118 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\include\buttons.inc"/> 142 <EditorIndex Value="7"/> 143 <WindowIndex Value="0"/> 119 <EditorIndex Value="-1"/> 144 120 <TopLine Value="320"/> 145 <CursorPos X="1" Y="342"/> 146 <UsageCount Value="11"/> 147 <Loaded Value="True"/> 121 <CursorPos Y="342"/> 122 <UsageCount Value="11"/> 148 123 </Unit10> 149 124 <Unit11> 150 125 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\include\wincontrol.inc"/> 151 <EditorIndex Value="2"/> 152 <WindowIndex Value="0"/> 126 <EditorIndex Value="-1"/> 153 127 <TopLine Value="5229"/> 154 128 <CursorPos X="38" Y="5239"/> 155 129 <UsageCount Value="11"/> 156 <Loaded Value="True"/>157 130 </Unit11> 158 131 <Unit12> 159 132 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\lclmessageglue.pas"/> 160 133 <UnitName Value="LCLMessageGlue"/> 161 <EditorIndex Value="3"/> 162 <WindowIndex Value="0"/> 134 <EditorIndex Value="-1"/> 163 135 <TopLine Value="122"/> 164 <CursorPos X="1" Y="122"/> 165 <UsageCount Value="11"/> 166 <Loaded Value="True"/> 136 <CursorPos Y="122"/> 137 <UsageCount Value="11"/> 167 138 </Unit12> 168 139 <Unit13> 169 140 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\interfaces\win32\win32callback.inc"/> 170 <EditorIndex Value="4"/> 171 <WindowIndex Value="0"/> 141 <EditorIndex Value="-1"/> 172 142 <TopLine Value="2617"/> 173 <CursorPos X="1" Y="2617"/> 174 <UsageCount Value="11"/> 175 <Loaded Value="True"/> 143 <CursorPos Y="2617"/> 144 <UsageCount Value="11"/> 176 145 </Unit13> 177 146 <Unit14> 178 147 <Filename Value="E:\Projekty2\FreePascalManager\trunk\Instance\1\Lazarus\lcl\interfaces\win32\win32wsstdctrls.pp"/> 179 148 <UnitName Value="Win32WSStdCtrls"/> 180 <EditorIndex Value="5"/> 181 <WindowIndex Value="0"/> 149 <EditorIndex Value="-1"/> 182 150 <TopLine Value="407"/> 183 <CursorPos X="1" Y="407"/> 184 <UsageCount Value="11"/> 185 <Loaded Value="True"/> 151 <CursorPos Y="407"/> 152 <UsageCount Value="11"/> 186 153 </Unit14> 187 154 </Units> 188 <JumpHistory Count=" 30" HistoryIndex="29">155 <JumpHistory Count="2" HistoryIndex="1"> 189 156 <Position1> 190 <Filename Value=" ..\..\UVarBlockSerializer.pas"/>191 <Caret Line=" 244" Column="1" TopLine="236"/>157 <Filename Value="UMainForm.pas"/> 158 <Caret Line="7" Column="29"/> 192 159 </Position1> 193 160 <Position2> 194 <Filename Value=" ..\..\UVarBlockSerializer.pas"/>195 <Caret Line=" 243" Column="1" TopLine="236"/>161 <Filename Value="UMainForm.pas"/> 162 <Caret Line="73" Column="30" TopLine="48"/> 196 163 </Position2> 197 <Position3>198 <Filename Value="..\..\UVarBlockSerializer.pas"/>199 <Caret Line="244" Column="1" TopLine="236"/>200 </Position3>201 <Position4>202 <Filename Value="..\..\UVarBlockSerializer.pas"/>203 <Caret Line="243" Column="1" TopLine="236"/>204 </Position4>205 <Position5>206 <Filename Value="..\..\UVarBlockSerializer.pas"/>207 <Caret Line="244" Column="1" TopLine="236"/>208 </Position5>209 <Position6>210 <Filename Value="..\..\UVarBlockSerializer.pas"/>211 <Caret Line="243" Column="1" TopLine="236"/>212 </Position6>213 <Position7>214 <Filename Value="..\..\UVarBlockSerializer.pas"/>215 <Caret Line="244" Column="1" TopLine="236"/>216 </Position7>217 <Position8>218 <Filename Value="..\..\UVarBlockSerializer.pas"/>219 <Caret Line="243" Column="1" TopLine="236"/>220 </Position8>221 <Position9>222 <Filename Value="..\..\UVarBlockSerializer.pas"/>223 <Caret Line="244" Column="1" TopLine="236"/>224 </Position9>225 <Position10>226 <Filename Value="..\..\UVarBlockSerializer.pas"/>227 <Caret Line="243" Column="1" TopLine="236"/>228 </Position10>229 <Position11>230 <Filename Value="..\..\UVarBlockSerializer.pas"/>231 <Caret Line="244" Column="1" TopLine="236"/>232 </Position11>233 <Position12>234 <Filename Value="..\..\UVarBlockSerializer.pas"/>235 <Caret Line="243" Column="1" TopLine="236"/>236 </Position12>237 <Position13>238 <Filename Value="..\..\UVarBlockSerializer.pas"/>239 <Caret Line="244" Column="1" TopLine="236"/>240 </Position13>241 <Position14>242 <Filename Value="..\..\UVarBlockSerializer.pas"/>243 <Caret Line="243" Column="1" TopLine="236"/>244 </Position14>245 <Position15>246 <Filename Value="..\..\UVarBlockSerializer.pas"/>247 <Caret Line="244" Column="1" TopLine="236"/>248 </Position15>249 <Position16>250 <Filename Value="..\..\UVarBlockSerializer.pas"/>251 <Caret Line="243" Column="1" TopLine="236"/>252 </Position16>253 <Position17>254 <Filename Value="..\..\UVarBlockSerializer.pas"/>255 <Caret Line="244" Column="1" TopLine="236"/>256 </Position17>257 <Position18>258 <Filename Value="..\..\UVarBlockSerializer.pas"/>259 <Caret Line="243" Column="1" TopLine="236"/>260 </Position18>261 <Position19>262 <Filename Value="..\..\UVarBlockSerializer.pas"/>263 <Caret Line="244" Column="1" TopLine="236"/>264 </Position19>265 <Position20>266 <Filename Value="..\..\UVarBlockSerializer.pas"/>267 <Caret Line="243" Column="1" TopLine="236"/>268 </Position20>269 <Position21>270 <Filename Value="..\..\UVarBlockSerializer.pas"/>271 <Caret Line="244" Column="1" TopLine="236"/>272 </Position21>273 <Position22>274 <Filename Value="..\..\UVarBlockSerializer.pas"/>275 <Caret Line="243" Column="1" TopLine="236"/>276 </Position22>277 <Position23>278 <Filename Value="..\..\UVarBlockSerializer.pas"/>279 <Caret Line="244" Column="1" TopLine="236"/>280 </Position23>281 <Position24>282 <Filename Value="..\..\UVarBlockSerializer.pas"/>283 <Caret Line="243" Column="1" TopLine="236"/>284 </Position24>285 <Position25>286 <Filename Value="..\..\UVarBlockSerializer.pas"/>287 <Caret Line="244" Column="1" TopLine="236"/>288 </Position25>289 <Position26>290 <Filename Value="..\..\UVarBlockSerializer.pas"/>291 <Caret Line="243" Column="1" TopLine="236"/>292 </Position26>293 <Position27>294 <Filename Value="..\..\UVarBlockSerializer.pas"/>295 <Caret Line="244" Column="1" TopLine="236"/>296 </Position27>297 <Position28>298 <Filename Value="..\..\UVarBlockSerializer.pas"/>299 <Caret Line="243" Column="1" TopLine="236"/>300 </Position28>301 <Position29>302 <Filename Value="..\..\UVarBlockSerializer.pas"/>303 <Caret Line="244" Column="1" TopLine="236"/>304 </Position29>305 <Position30>306 <Filename Value="..\..\UVarBlockSerializer.pas"/>307 <Caret Line="243" Column="1" TopLine="236"/>308 </Position30>309 164 </JumpHistory> 310 165 </ProjectOptions> 311 166 <CompilerOptions> 312 <Version Value="1 0"/>167 <Version Value="11"/> 313 168 <PathDelim Value="\"/> 314 169 <Target> … … 319 174 <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> 320 175 </SearchPaths> 176 <Parsing> 177 <SyntaxOptions> 178 <SyntaxMode Value="Delphi"/> 179 </SyntaxOptions> 180 </Parsing> 321 181 <Linking> 182 <Debugging> 183 <DebugInfoType Value="dsDwarf3"/> 184 </Debugging> 322 185 <Options> 323 186 <Win32> … … 326 189 </Options> 327 190 </Linking> 328 <Other>329 <CompilerPath Value="$(CompPath)"/>330 </Other>331 191 </CompilerOptions> 332 192 <Debugging>
Note:
See TracChangeset
for help on using the changeset viewer.