Changeset 454 for GraphicTest/UMainForm.lfm
- Timestamp:
- Nov 26, 2012, 7:38:56 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GraphicTest/UMainForm.lfm
r453 r454 1 1 object MainForm: TMainForm 2 Left = 1652 Left = 258 3 3 Height = 444 4 Top = 1 174 Top = 176 5 5 Width = 857 6 6 Caption = 'Graphic test' … … 24 24 object TabSheet1: TTabSheet 25 25 Caption = 'Description' 26 ClientHeight = 3 8826 ClientHeight = 399 27 27 ClientWidth = 390 28 28 object Memo1: TMemo 29 29 Left = 0 30 Height = 3 8830 Height = 399 31 31 Top = 0 32 32 Width = 390 … … 534 534 TabOrder = 1 535 535 object ListViewMethods: TListView 536 Left = 9537 Height = 3 49538 Top = 8539 Width = 44 3536 Left = 4 537 Height = 324 538 Top = 4 539 Width = 448 540 540 Anchors = [akTop, akLeft, akRight, akBottom] 541 541 Columns = < … … 579 579 Left = 8 580 580 Height = 25 581 Top = 3 64581 Top = 336 582 582 Width = 115 583 Anchors = [akLeft, akBottom] 584 Caption = 'Test one method' 585 OnClick = ButtonSingleTestClick 583 Action = ATestOneMethod 584 Anchors = [akLeft, akBottom] 586 585 TabOrder = 1 587 586 end … … 589 588 Left = 136 590 589 Height = 25 591 Top = 3 64590 Top = 336 592 591 Width = 112 593 Anchors = [akLeft, akBottom] 594 Caption = 'Test all methods' 595 OnClick = ButtonBenchmarkClick 592 Action = ATestAllMethods 593 Anchors = [akLeft, akBottom] 596 594 TabOrder = 2 597 595 end 598 596 object FloatSpinEdit1: TFloatSpinEdit 599 597 Left = 88 600 Height = 2 3601 Top = 3 94598 Height = 21 599 Top = 368 602 600 Width = 58 603 601 Anchors = [akLeft, akBottom] … … 611 609 Left = 256 612 610 Height = 25 613 Top = 3 64611 Top = 336 614 612 Width = 75 615 Anchors = [akLeft, akBottom] 616 Caption = 'Stop' 617 OnClick = ButtonStopClick 613 Action = ATestStop 614 Anchors = [akLeft, akBottom] 618 615 TabOrder = 4 619 616 end 620 617 object Label1: TLabel 621 618 Left = 8 622 Height = 1 5623 Top = 3 98624 Width = 78619 Height = 13 620 Top = 372 621 Width = 69 625 622 Anchors = [akLeft, akBottom] 626 623 Caption = 'Step duration:' … … 629 626 object Label2: TLabel 630 627 Left = 152 631 Height = 1 5632 Top = 3 98628 Height = 13 629 Top = 372 633 630 Width = 5 634 631 Anchors = [akLeft, akBottom] … … 638 635 object SpinEditWidth: TSpinEdit 639 636 Left = 204 640 Height = 2 3641 Top = 3 94637 Height = 21 638 Top = 368 642 639 Width = 58 643 640 Anchors = [akLeft, akBottom] … … 649 646 object SpinEditHeight: TSpinEdit 650 647 Left = 273 651 Height = 2 3652 Top = 3 94648 Height = 21 649 Top = 368 653 650 Width = 58 654 651 Anchors = [akLeft, akBottom] … … 660 657 object Label3: TLabel 661 658 Left = 169 662 Height = 1 5663 Top = 3 99664 Width = 2 5659 Height = 13 660 Top = 373 661 Width = 23 665 662 Anchors = [akLeft, akBottom] 666 663 Caption = 'Size:' … … 669 666 object Label4: TLabel 670 667 Left = 265 671 Height = 1 5672 Top = 3 98668 Height = 13 669 Top = 372 673 670 Width = 6 674 671 Anchors = [akLeft, akBottom] … … 678 675 object CheckBoxDoubleBuffered: TCheckBox 679 676 Left = 336 680 Height = 24681 Top = 3 57682 Width = 118677 Height = 17 678 Top = 336 679 Width = 98 683 680 Anchors = [akLeft, akBottom] 684 681 Caption = 'Double buffered' … … 688 685 object CheckBoxEraseBackground: TCheckBox 689 686 Left = 336 690 Height = 24691 Top = 3 74692 Width = 1 24687 Height = 17 688 Top = 353 689 Width = 106 693 690 Anchors = [akLeft, akBottom] 694 691 Caption = 'Erase background' … … 698 695 object CheckBox1: TCheckBox 699 696 Left = 336 700 Height = 24701 Top = 3 94702 Width = 69697 Height = 17 698 Top = 369 699 Width = 58 703 700 Anchors = [akLeft, akBottom] 704 701 Caption = 'Opaque' 705 702 OnChange = CheckBox1Change 706 703 TabOrder = 9 704 end 705 object Label5: TLabel 706 Left = 8 707 Height = 13 708 Top = 399 709 Width = 61 710 Anchors = [akLeft, akBottom] 711 Caption = 'Pixel format:' 712 ParentColor = False 713 end 714 object ComboBox1: TComboBox 715 Left = 89 716 Height = 21 717 Top = 394 718 Width = 100 719 Anchors = [akLeft, akBottom] 720 ItemHeight = 13 721 OnChange = ComboBox1Change 722 Style = csDropDownList 723 TabOrder = 10 707 724 end 708 725 end … … 747 764 OnExecute = AExportAsWikiTextExecute 748 765 end 749 object Action1: TAction 750 Caption = 'Action1' 766 object ATestOneMethod: TAction 767 Caption = 'Test one method' 768 OnExecute = ATestOneMethodExecute 769 ShortCut = 113 751 770 end 752 771 object FileExit1: TFileExit … … 755 774 Hint = 'Exit' 756 775 ShortCut = 32883 776 end 777 object ATestStop: TAction 778 Caption = 'Stop' 779 Hint = 'Stop' 780 OnExecute = ATestStopExecute 781 ShortCut = 114 782 end 783 object ATestAllMethods: TAction 784 Caption = 'Test all methods' 785 Hint = 'Test all methods' 786 OnExecute = ATestAllMethodsExecute 787 ShortCut = 114 788 end 789 object AShowDrawForm: TAction 790 Caption = 'Draw form' 791 OnExecute = AShowDrawFormExecute 757 792 end 758 793 end … … 769 804 end 770 805 end 806 object MenuItemTest: TMenuItem 807 Caption = 'Test' 808 object MenuItem5: TMenuItem 809 Action = ATestOneMethod 810 end 811 object MenuItem6: TMenuItem 812 Action = ATestAllMethods 813 end 814 object MenuItem7: TMenuItem 815 Action = ATestStop 816 end 817 end 818 object MenuItem4: TMenuItem 819 Caption = 'View' 820 object MenuItem8: TMenuItem 821 Action = AShowDrawForm 822 end 823 end 771 824 end 772 825 object SaveDialog1: TSaveDialog
Note:
See TracChangeset
for help on using the changeset viewer.