1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
|
object WatchPropertyDlg: TWatchPropertyDlg
Left = 513
Height = 650
Top = 271
Width = 750
BorderIcons = [biSystemMenu]
Caption = 'Watch Properties'
ClientHeight = 650
ClientWidth = 750
Constraints.MinWidth = 500
Position = poScreenCenter
LCLVersion = '3.99.0.0'
object ButtonPanel: TButtonPanel
Left = 6
Height = 26
Top = 618
Width = 738
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
OKButton.OnClick = btnOKClick
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
HelpButton.OnClick = btnHelpClick
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CloseButton.Enabled = False
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 2
ShowButtons = [pbOK, pbCancel, pbHelp]
ShowBevel = False
end
object PanelTop: TPanel
Left = 0
Height = 120
Top = 0
Width = 750
Align = alTop
AutoSize = True
BevelOuter = bvNone
ClientHeight = 120
ClientWidth = 750
TabOrder = 0
object lblExpression: TLabel
AnchorSideLeft.Control = PanelTop
AnchorSideTop.Control = txtExpression
AnchorSideTop.Side = asrCenter
Left = 6
Height = 15
Top = 10
Width = 59
BorderSpacing.Left = 6
Caption = 'Expression:'
ParentColor = False
end
object txtExpression: TEdit
AnchorSideLeft.Control = lblExpression
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = PanelTop
AnchorSideRight.Side = asrBottom
Left = 71
Height = 23
Top = 6
Width = 673
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Top = 6
BorderSpacing.Right = 6
TabOrder = 0
OnChange = txtExpressionChange
end
object Panel1: TPanel
AnchorSideLeft.Control = PanelTop
AnchorSideTop.Control = txtExpression
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PanelTop
AnchorSideRight.Side = asrBottom
Left = 6
Height = 91
Top = 29
Width = 738
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Left = 6
BorderSpacing.Right = 6
BevelOuter = bvNone
ChildSizing.HorizontalSpacing = 5
ChildSizing.EnlargeHorizontal = crsSameSize
ChildSizing.ShrinkHorizontal = crsSameSize
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 2
ClientHeight = 91
ClientWidth = 738
TabOrder = 1
object Spacer1: TLabel
Left = 0
Height = 1
Top = 0
Width = 366
AutoSize = False
end
object Spacer2: TLabel
Left = 371
Height = 1
Top = 0
Width = 367
AutoSize = False
end
object chkEnabled: TCheckBox
AnchorSideLeft.Control = Spacer1
AnchorSideTop.Control = Panel1
AnchorSideRight.Control = Spacer1
AnchorSideRight.Side = asrBottom
Left = 0
Height = 19
Top = 5
Width = 366
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 5
Caption = 'Enabled'
TabOrder = 0
end
object chkUseInstanceClass: TCheckBox
AnchorSideLeft.Control = Spacer1
AnchorSideTop.Control = chkEnabled
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Spacer1
AnchorSideRight.Side = asrBottom
Left = 0
Height = 19
Top = 29
Width = 366
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 5
Caption = 'chkUseInstanceClass'
TabOrder = 1
end
object chkAllowFunc: TCheckBox
AnchorSideLeft.Control = Spacer1
AnchorSideTop.Control = chkUseInstanceClass
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Spacer1
AnchorSideRight.Side = asrBottom
Left = 0
Height = 19
Top = 53
Width = 366
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 5
Caption = 'Allow Function Calls'
TabOrder = 2
OnChange = chkAllowFuncChange
end
object chkAllowFuncThreads: TCheckBox
AnchorSideLeft.Control = chkAllowFunc
AnchorSideTop.Control = chkAllowFunc
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = chkAllowFunc
AnchorSideRight.Side = asrBottom
Left = 20
Height = 19
Top = 72
Width = 346
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 20
Caption = 'chkAllowFuncThreads'
TabOrder = 3
end
object Panel2: TPanel
AnchorSideLeft.Control = Spacer2
AnchorSideTop.Control = Panel1
AnchorSideRight.Control = Spacer2
AnchorSideRight.Side = asrBottom
Left = 371
Height = 84
Top = 0
Width = 367
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BevelOuter = bvNone
ChildSizing.HorizontalSpacing = 3
ChildSizing.VerticalSpacing = 5
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 84
ClientWidth = 367
TabOrder = 4
object lblRepCount: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 23
Top = 5
Width = 80
BorderSpacing.Top = 5
BorderSpacing.CellAlignVertical = ccaCenter
Caption = 'Repeat Count:'
Constraints.MinHeight = 23
Layout = tlCenter
ParentColor = False
end
object lblFpDbgConv: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 23
Top = 33
Width = 80
BorderSpacing.CellAlignVertical = ccaCenter
Caption = 'lblFpDbgConv'
Constraints.MinHeight = 23
Layout = tlCenter
end
object dropFpDbgConv: TComboBox
AnchorSideLeft.Control = lblFpDbgConv
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblFpDbgConv
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Panel2
AnchorSideRight.Side = asrBottom
Left = 85
Height = 23
Top = 33
Width = 282
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 5
Constraints.MinWidth = 150
ItemHeight = 15
Style = csDropDownList
TabOrder = 0
end
object lblValFormatter: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 23
Top = 61
Width = 80
BorderSpacing.CellAlignVertical = ccaCenter
Caption = 'lblValFormatter'
Constraints.MinHeight = 23
Layout = tlCenter
end
object dropValFormatter: TComboBox
AnchorSideLeft.Control = lblValFormatter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblValFormatter
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Panel2
AnchorSideRight.Side = asrBottom
Left = 85
Height = 23
Top = 61
Width = 282
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 5
Constraints.MinWidth = 150
ItemHeight = 15
Style = csDropDownList
TabOrder = 1
end
object txtRepCount: TSpinEdit
AnchorSideLeft.Control = lblRepCount
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblRepCount
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Panel2
AnchorSideRight.Side = asrBottom
Left = 85
Height = 23
Top = 5
Width = 282
Alignment = taRightJustify
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 5
MaxValue = 9999
TabOrder = 2
OnChange = txtRepCountChange
end
end
end
end
inline DisplayFormatFrame1: TDisplayFormatFrame
Left = 6
Height = 486
Top = 126
Width = 738
HorzScrollBar.Increment = 54
HorzScrollBar.Page = 545
VertScrollBar.Increment = 48
VertScrollBar.Page = 486
Align = alClient
BorderSpacing.Around = 6
ClientHeight = 486
ClientWidth = 721
TabOrder = 1
inherited ToolBar1: TToolBar
Width = 721
inherited ToolButton2: TToolButton
Height = 22
end
inherited ToolButton4: TToolButton
Height = 22
end
inherited ToolButton12: TToolButton
Height = 22
end
inherited ToolButton13: TToolButton
Height = 22
end
inherited ToolButton14: TToolButton
Height = 22
end
inherited ToolButton15: TToolButton
Height = 22
end
inherited ToolButton16: TToolButton
Height = 22
end
inherited ToolButton17: TToolButton
Height = 22
end
inherited ToolButton5: TToolButton
Height = 22
end
end
inherited PanelNum: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer1: TLabel
Width = 130
end
inherited Spacer2: TLabel
Left = 134
Width = 587
end
inherited DividerBevelNum: TDividerBevel
Width = 721
end
inherited lbOverrideNumBase: TLabel
Width = 112
end
inherited PanelNumBase: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbNumDec: TRadioButton
Width = 98
end
inherited rbNumHex: TRadioButton
Left = 98
Width = 98
end
inherited rbNumOct: TRadioButton
Left = 196
Width = 97
end
inherited rbNumBin: TRadioButton
Left = 293
Width = 98
end
inherited rbNumChar: TRadioButton
Left = 391
Width = 98
end
inherited Label3: TLabel
Left = 489
Width = 98
end
end
inherited PanelNumSign: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbSignAuto: TRadioButton
Width = 196
end
inherited rbSignSigned: TRadioButton
Left = 196
Width = 195
end
inherited rbSignUnsigned: TRadioButton
Left = 391
Width = 196
end
end
inherited PanelNumDigits: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited DigitSpacer2: TLabel
Width = 391
end
inherited DigitSpacer1: TLabel
Left = 391
Width = 196
end
inherited lbNumDigits: TLabel
Left = 391
end
inherited SpinDigits: TSpinEdit
Left = 461
end
inherited cbNumSeparator: TCheckBox
Width = 387
end
inherited PanelNumSepGroup: TPanel
Width = 295
ClientWidth = 295
inherited rbNumSepNone: TRadioButton
Width = 72
end
inherited rbNumSepByte: TRadioButton
Left = 78
Width = 67
end
inherited rbNumSepWord: TRadioButton
Left = 147
Width = 72
end
inherited rbNumSepLong: TRadioButton
Left = 221
Width = 70
end
end
inherited Shape13: TShape
Left = 387
end
end
inherited Shape10: TShape
Left = 130
end
inherited Shape11: TShape
Left = 130
end
inherited Shape12: TShape
Left = 130
end
end
inherited PanelNum2: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer13: TLabel
Width = 130
end
inherited Spacer14: TLabel
Left = 134
Width = 587
end
inherited DividerBevelNum2: TDividerBevel
Width = 721
end
inherited lbOverrideNum2Base: TLabel
Width = 112
end
inherited PanelNum2Visible: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited cbNum2Visibile: TCheckBox
Width = 587
end
end
inherited PanelNum2All: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited PanelNum2Base: TPanel
Width = 587
ClientWidth = 587
inherited rbNum2Dec: TRadioButton
Width = 98
end
inherited rbNum2Hex: TRadioButton
Left = 98
Width = 98
end
inherited rbNum2Oct: TRadioButton
Left = 196
Width = 97
end
inherited rbNum2Bin: TRadioButton
Left = 293
Width = 98
end
inherited rbNum2Char: TRadioButton
Left = 391
Width = 98
end
inherited Label1: TLabel
Left = 489
Width = 98
end
end
inherited PanelNum2Sign: TPanel
Width = 587
ClientWidth = 587
inherited rbSign2Auto: TRadioButton
Width = 196
end
inherited rbSign2Signed: TRadioButton
Left = 196
Width = 195
end
inherited rbSign2Unsigned: TRadioButton
Left = 391
Width = 196
end
end
inherited PanelNum2Digits: TPanel
Width = 587
ClientWidth = 587
inherited DigitSpacer4: TLabel
Width = 391
end
inherited DigitSpacer3: TLabel
Left = 391
Width = 196
end
inherited lbNum2Digits: TLabel
Left = 391
end
inherited Spin2Digits: TSpinEdit
Left = 467
end
inherited cbNum2Separator: TCheckBox
Width = 391
end
inherited PanelNum2SepGroup: TPanel
Width = 326
ClientWidth = 326
inherited rbNum2SepNone: TRadioButton
Width = 80
end
inherited rbNum2SepByte: TRadioButton
Left = 86
Width = 74
end
inherited rbNum2SepWord: TRadioButton
Left = 162
Width = 80
end
inherited rbNum2SepLong: TRadioButton
Left = 244
Width = 78
end
end
end
end
end
inherited PanelEnum: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer3: TLabel
Width = 130
end
inherited Spacer4: TLabel
Left = 134
Width = 587
end
inherited DividerBevelEnum: TDividerBevel
Width = 721
end
inherited lbOverrideEnum: TLabel
Width = 112
end
inherited PanelEnumRb1: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbEnumName: TRadioButton
Width = 196
end
inherited rbEnumOrd: TRadioButton
Left = 196
Width = 195
end
inherited rbEnumNameAndOrd: TRadioButton
Left = 391
Width = 196
end
end
inherited PanelENumBase: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbENumDec: TRadioButton
Width = 98
end
inherited rbENumHex: TRadioButton
Left = 98
Width = 98
end
inherited rbENumOct: TRadioButton
Left = 196
Width = 97
end
inherited rbENumBin: TRadioButton
Left = 293
Width = 98
end
inherited rbENumChar: TRadioButton
Left = 391
Width = 81
end
inherited cbEnumSign: TCheckBox
Left = 489
Width = 98
end
inherited lbEnumBaseSpace: TLabel
Width = 98
end
inherited Shape18: TShape
Left = 485
end
end
inherited Shape16: TShape
Left = 130
end
inherited Shape17: TShape
Left = 130
end
end
inherited PanelEnumVal: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer15: TLabel
Width = 130
end
inherited Spacer16: TLabel
Left = 134
Width = 587
end
inherited DividerBevelEnumVal: TDividerBevel
Width = 721
end
inherited lbOverrideEnumVal: TLabel
Width = 112
end
inherited PanelEnumValRb: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbEnumValName: TRadioButton
Width = 196
end
inherited rbEnumValOrd: TRadioButton
Left = 196
Width = 195
end
inherited rbEnumValNameAndOrd: TRadioButton
Left = 391
Width = 196
end
end
inherited PanelENumValBase: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbENumValDec: TRadioButton
Width = 98
end
inherited rbENumValHex: TRadioButton
Left = 98
Width = 98
end
inherited rbENumValOct: TRadioButton
Left = 196
Width = 97
end
inherited rbENumValBin: TRadioButton
Left = 293
Width = 98
end
inherited rbENumValChar: TRadioButton
Left = 391
Width = 81
end
inherited cbEnumValSign: TCheckBox
Left = 489
Width = 98
end
inherited lbEnumValBaseSpace: TLabel
Width = 98
end
end
end
inherited PanelFloat: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer5: TLabel
Width = 130
end
inherited Spacer6: TLabel
Left = 134
Width = 587
end
inherited DividerBevelFloat: TDividerBevel
Width = 721
end
inherited lbOverrideFloat: TLabel
Width = 112
end
inherited PanelFloatRb: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbFloatPoint: TRadioButton
Width = 196
end
inherited rbFloatScience: TRadioButton
Left = 196
Width = 195
end
inherited lbFloatPrec: TLabel
Left = 391
end
inherited SpinFloatDigits: TSpinEdit
Left = 453
end
end
end
inherited PanelStruct: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer7: TLabel
Width = 130
end
inherited Spacer8: TLabel
Left = 134
Width = 587
end
inherited DividerBevelStruct: TDividerBevel
Width = 721
end
inherited lbOverrideStruct: TLabel
Width = 112
end
inherited PanelStructFld: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbStructValOnly: TRadioButton
Width = 147
end
inherited rbStructFields: TRadioButton
Left = 147
Width = 146
end
inherited rbStructFull: TRadioButton
Left = 293
Width = 147
end
inherited lbStructAddrTypedFiller: TLabel
Left = 440
Width = 147
end
end
inherited PanelStructPointer: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbStructAddrOff: TRadioButton
Width = 147
end
inherited rbStructAddrOn: TRadioButton
Left = 147
Width = 146
end
inherited rbStructAddrOnly: TRadioButton
Left = 293
Width = 147
end
inherited cbStructAddrTyped: TCheckBox
Left = 440
Width = 147
end
end
end
inherited PanelPointer: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer9: TLabel
Width = 130
end
inherited Spacer10: TLabel
Left = 134
Width = 587
end
inherited DividerBevelPointerDeref: TDividerBevel
Width = 721
end
inherited lbOverridePointerDeref: TLabel
Width = 112
end
inherited PanelPointerDeref: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbPointerDerefOn: TRadioButton
Width = 147
end
inherited rbPointerDerefOff: TRadioButton
Left = 147
Width = 146
end
inherited rbPointerDerefOnly: TRadioButton
Left = 293
Width = 147
end
inherited cbPointerAddrTyped: TCheckBox
Left = 440
Width = 147
end
end
end
inherited PanelAddressFormat: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer11: TLabel
Width = 130
end
inherited Spacer12: TLabel
Left = 134
Width = 587
end
inherited DividerBevelAddressFormat: TDividerBevel
Width = 721
end
inherited lbOverrideAddressFormat: TLabel
Width = 112
end
inherited PanelAddressType: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbAddressPlain: TRadioButton
Width = 196
end
inherited rbAddressTyped: TRadioButton
Left = 196
Width = 195
end
inherited Label5: TLabel
Left = 391
Width = 196
end
end
inherited PanelAddressBase: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited rbAddrNumHex: TRadioButton
Width = 98
end
inherited rbAddrNumDec: TRadioButton
Left = 98
Width = 98
end
inherited rbAddrNumOct: TRadioButton
Left = 196
Width = 97
end
inherited rbAddrNumBin: TRadioButton
Left = 293
Width = 98
end
inherited lpAddrSpace: TLabel
Left = 391
Width = 98
end
inherited cbAddrSign: TCheckBox
Left = 489
Width = 98
end
end
inherited PanelAddressLeadZero: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited cbAddrNoLeadZero: TCheckBox
Width = 587
end
end
end
inherited PanelIndent: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer17: TLabel
Width = 130
end
inherited Spacer18: TLabel
Left = 134
Width = 587
end
inherited DividerBevelPointerDeref1: TDividerBevel
Width = 721
end
inherited lbOverrideIndent: TLabel
Width = 112
end
inherited PanelIndentMax: TPanel
Left = 134
Width = 587
ClientWidth = 587
end
inherited PanelIndentForceSingleLine: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited fill10: TLabel
Width = 141
end
inherited fill2: TLabel
Left = 162
Width = 46
end
inherited lbForceSingleLineStructFld: TLabel
Left = 211
Width = 137
end
inherited spinForceSingleLineStructFld: TSpinEdit
Left = 351
Width = 47
end
inherited lbForceSingleLineArrayLen: TLabel
Left = 401
Width = 136
end
inherited spinForceSingleLineArrayLen: TSpinEdit
Left = 540
Width = 47
end
inherited lbForceSingleLineRevDepth: TLabel
Width = 141
end
inherited spinForceSingleLineRevDepth: TSpinEdit
Left = 162
Width = 46
end
inherited lbForceSingleLineEach: TLabel
Left = 211
Width = 137
end
inherited spinForceSingleLineEach: TSpinEdit
Left = 351
Width = 47
end
inherited lbForceSingleLineLen: TLabel
Left = 401
Width = 136
end
inherited spinForceSingleLineLen: TSpinEdit
Left = 540
Width = 47
end
end
end
inherited PanelArray: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer21: TLabel
Width = 130
end
inherited Spacer22: TLabel
Left = 134
Width = 587
end
inherited DividerBevelArray: TDividerBevel
Width = 721
end
inherited lbOverrideArray: TLabel
Width = 112
end
inherited PanelArrayShowPrefix: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited cbArrayShowPrefix: TCheckBox
Width = 196
end
inherited cbArrayShowPrefixEmbedded: TCheckBox
Left = 196
Width = 195
end
inherited lbArrayLenMaxNest: TLabel
Left = 391
end
inherited spinArrayLenMaxNest: TSpinEdit
Left = 498
Width = 84
end
end
inherited lbArrayCombine: TLabel
Left = 134
end
inherited PanelArrayPrefixCombine: TPanel
Left = 224
Width = 497
ClientWidth = 497
inherited rbArrayCombineNone: TRadioButton
Width = 124
end
inherited rbArrayCombineAll: TRadioButton
Left = 124
Width = 124
end
inherited rbArrayCombineStat: TRadioButton
Left = 248
Width = 125
end
inherited rbArrayCombineDyn: TRadioButton
Left = 373
Width = 124
end
end
inherited PanelArrayHideLen: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited fill8: TLabel
Width = 140
end
inherited fill6: TLabel
Left = 161
Width = 50
end
inherited fill5: TLabel
Left = 214
Width = 135
end
inherited fill4: TLabel
Left = 352
Width = 50
end
inherited lbArrayHideLenIfLess: TLabel
Left = 405
Width = 129
end
inherited spinArrayHideLenIfLess: TSpinEdit
Left = 537
Width = 50
end
inherited lbArrayHideLenKeepDepth: TLabel
Width = 140
end
inherited spinArrayHideLenRevDepth: TSpinEdit
Left = 161
Width = 50
end
inherited lbArrayHideLenThresEach: TLabel
Left = 214
Width = 135
end
inherited spinArrayHideLenThresEach: TSpinEdit
Left = 352
Width = 50
end
inherited lbArrayHideLenThresLen: TLabel
Left = 405
Width = 129
end
inherited spinArrayHideLenThresLen: TSpinEdit
Left = 537
Width = 50
end
end
end
inherited PanelArrayNavBar: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited Spacer19: TLabel
Width = 130
end
inherited Spacer20: TLabel
Left = 134
Width = 587
end
inherited DividerBevelArrayNavBar: TDividerBevel
Width = 721
end
inherited lbOverrideArrayNavBar: TLabel
Width = 112
end
inherited PanelArrayNavBarOpts: TPanel
Left = 134
Width = 587
ClientWidth = 587
inherited cbArrayNavAutoHide: TCheckBox
Width = 196
end
inherited cbArrayNavEnforceBounds: TCheckBox
Left = 196
Width = 195
end
inherited lbPageSize: TLabel
Left = 391
end
inherited SpinPageSize: TSpinEdit
Left = 450
end
end
end
inherited PanelMemDump: TPanel
AnchorSideLeft.Control = DisplayFormatFrame1
AnchorSideRight.Control = DisplayFormatFrame1
Width = 721
ClientWidth = 721
inherited DividerBevelMemDump: TDividerBevel
Width = 721
end
inherited cbMemDump: TCheckBox
Width = 711
end
end
end
end
|