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 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
|
object AdminUsersForm: TAdminUsersForm
Left = 120
Top = 66
Caption = 'User Administration'
ClientHeight = 544
ClientWidth = 781
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poDesigned
Scaled = False
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Splitter1: TTntSplitter
Left = 185
Top = 0
Height = 544
ExplicitHeight = 546
end
object UserPnl: TTntPanel
Left = 188
Top = 0
Width = 593
Height = 544
Align = alClient
BevelOuter = bvNone
ParentBackground = False
TabOrder = 0
OnResize = UserPnlResize
object UserPageControl: TTntPageControl
Left = 10
Top = 10
Width = 571
Height = 487
ActivePage = UserInfoSheet
TabOrder = 0
OnChange = UserPageControlChange
object UserInfoSheet: TTabSheet
Caption = 'User Information'
ImageIndex = 2
object Panel1: TTntPanel
Left = 0
Top = 0
Width = 563
Height = 45
Align = alTop
BevelOuter = bvNone
ParentColor = True
TabOrder = 0
object UserInfoBevel: TTntBevel
Left = 12
Top = 38
Width = 535
Height = 3
Shape = bsTopLine
end
object UserInfoNameLbl: TTntLabel
Left = 46
Top = 6
Width = 104
Height = 13
Caption = 'brian, (Brian Aker)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object HeaderImg: TTntImage
Left = 12
Top = 8
Width = 24
Height = 24
end
object UserInfoLbl: TTntLabel
Left = 46
Top = 20
Width = 205
Height = 13
Caption = 'Login and additional information on the user'
end
end
object UserInfoScrollBox: TTntScrollBox
Left = 0
Top = 45
Width = 563
Height = 414
Align = alClient
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
ParentBackground = True
TabOrder = 1
object UserInfoLoginGBox: TTntGroupBox
Left = 12
Top = 6
Width = 534
Height = 133
Caption = 'Login Information'
TabOrder = 0
object Label27: TTntLabel
Left = 14
Top = 26
Width = 63
Height = 13
Caption = 'MySQL User:'
end
object Label28: TTntLabel
Left = 236
Top = 22
Width = 285
Height = 31
AutoSize = False
Caption =
'The user has to enter this MySQL User name to connect to the MyS' +
'QL Server'
WordWrap = True
end
object Label3: TTntLabel
Left = 14
Top = 68
Width = 49
Height = 13
Caption = 'Password:'
end
object Label11: TTntLabel
Left = 236
Top = 68
Width = 285
Height = 15
AutoSize = False
Caption = 'Fill out this field if you want to set the user'#39's password'
WordWrap = True
end
object Label12: TTntLabel
Left = 14
Top = 98
Width = 87
Height = 13
Caption = 'Confirm Password:'
end
object Label13: TTntLabel
Left = 236
Top = 98
Width = 285
Height = 15
AutoSize = False
Caption = 'Again, enter the user'#39's password to confirm'
WordWrap = True
end
object UserNameEd: TTntEdit
Left = 120
Top = 22
Width = 101
Height = 21
TabOrder = 0
OnChange = UserNameEdChange
end
object PasswordEd: TTntEdit
Left = 120
Top = 64
Width = 101
Height = 21
PasswordChar = '*'
TabOrder = 1
OnChange = UserNameEdChange
end
object PasswordConfirmationEd: TTntEdit
Left = 120
Top = 94
Width = 101
Height = 21
PasswordChar = '*'
TabOrder = 2
OnChange = UserNameEdChange
end
end
object UserInfoAdditionalGBox: TTntGroupBox
Left = 12
Top = 150
Width = 534
Height = 247
Caption = 'Additional Information'
TabOrder = 1
object Label23: TTntLabel
Left = 14
Top = 24
Width = 50
Height = 13
Caption = 'Full Name:'
end
object Label25: TTntLabel
Left = 14
Top = 54
Width = 56
Height = 13
Caption = 'Description:'
end
object Label24: TTntLabel
Left = 312
Top = 26
Width = 207
Height = 15
AutoSize = False
Caption = 'The user'#39's full name'
WordWrap = True
end
object Label26: TTntLabel
Left = 312
Top = 56
Width = 207
Height = 15
AutoSize = False
Caption = 'Additional description of the user'
WordWrap = True
end
object Label29: TTntLabel
Left = 14
Top = 184
Width = 24
Height = 13
Caption = 'Icon:'
end
object Label30: TTntLabel
Left = 312
Top = 186
Width = 207
Height = 17
AutoSize = False
Caption = 'Icon assigned to the user'
WordWrap = True
end
object Label5: TTntLabel
Left = 14
Top = 115
Width = 95
Height = 13
Caption = 'Contact Information:'
end
object Label18: TTntLabel
Left = 312
Top = 116
Width = 207
Height = 15
AutoSize = False
Caption = 'Optional contact information '
WordWrap = True
end
object Label19: TTntLabel
Left = 14
Top = 86
Width = 28
Height = 13
Caption = 'Email:'
end
object Label20: TTntLabel
Left = 312
Top = 86
Width = 207
Height = 15
AutoSize = False
Caption = 'The user'#39's email address'
WordWrap = True
end
object FullNameEd: TTntEdit
Left = 120
Top = 22
Width = 179
Height = 21
TabOrder = 0
OnChange = UserNameEdChange
end
object DescriptionEd: TTntEdit
Left = 120
Top = 52
Width = 179
Height = 21
TabOrder = 1
OnChange = UserNameEdChange
end
object LoadImgBtn: TTntBitBtn
Left = 194
Top = 182
Width = 103
Height = 21
Caption = 'Load from disk'
TabOrder = 4
OnClick = LoadImgBtnClick
end
object Panel7: TTntPanel
Left = 120
Top = 182
Width = 52
Height = 52
BevelOuter = bvNone
BorderStyle = bsSingle
Color = clWindow
TabOrder = 6
object UserIcon: TTntImage
Left = 0
Top = 0
Width = 48
Height = 48
end
end
object EmailEd: TTntEdit
Left = 120
Top = 82
Width = 179
Height = 21
TabOrder = 2
OnChange = UserNameEdChange
end
object ContactInfoMemo: TTntMemo
Left = 120
Top = 112
Width = 179
Height = 59
TabOrder = 3
OnChange = UserNameEdChange
end
object ClearUserImg: TTntBitBtn
Left = 194
Top = 214
Width = 103
Height = 21
Caption = 'Clear Image'
TabOrder = 5
OnClick = ClearUserImgClick
end
end
end
end
object GlobalPrivSheet: TTabSheet
Caption = 'Global Privileges'
ImageIndex = 3
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object Label15: TTntLabel
Left = 12
Top = 50
Width = 91
Height = 13
Caption = 'Assigned Privileges'
end
object Label16: TTntLabel
Left = 220
Top = 50
Width = 91
Height = 13
Caption = 'Available Privileges'
end
object Panel9: TTntPanel
Left = 0
Top = 0
Width = 563
Height = 45
Align = alTop
BevelOuter = bvNone
ParentColor = True
TabOrder = 1
object GlobalBevel: TTntBevel
Left = 12
Top = 38
Width = 535
Height = 3
Shape = bsTopLine
end
object GlobalPrivNameLbl: TTntLabel
Left = 46
Top = 6
Width = 104
Height = 13
Caption = 'brian, (Brian Aker)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Header2Img: TTntImage
Left = 12
Top = 8
Width = 24
Height = 24
end
object GlobalPrivInfoLbl: TTntLabel
Left = 46
Top = 20
Width = 178
Height = 13
Caption = 'Global Privileges assigned to the User'
end
end
object AssignGlobalPrivBtn: TTntBitBtn
Left = 184
Top = 66
Width = 27
Height = 25
Caption = '<'
TabOrder = 2
OnClick = AssignGlobalPrivBtnClick
end
object RemoveGlobalPrivBtn: TTntBitBtn
Left = 184
Top = 100
Width = 27
Height = 25
Caption = '>'
TabOrder = 3
OnClick = RemoveGlobalPrivBtnClick
end
object GlobalPrivListView: TTntListView
Left = 220
Top = 66
Width = 327
Height = 359
Columns = <
item
Caption = 'Privilege'
MaxWidth = 200
Width = 150
end
item
AutoSize = True
Caption = 'Description'
MinWidth = 100
end>
MultiSelect = True
ReadOnly = True
RowSelect = True
ShowColumnHeaders = False
SmallImages = ApplicationDM.AdminTree16ImageList
TabOrder = 0
ViewStyle = vsReport
end
object GlobalAssignedPrivListView: TTntListView
Left = 12
Top = 66
Width = 163
Height = 359
Columns = <
item
Caption = 'Rights'
Width = 139
end>
MultiSelect = True
ReadOnly = True
ShowColumnHeaders = False
SmallImages = ApplicationDM.AdminTree16ImageList
TabOrder = 6
ViewStyle = vsReport
end
object AssignAllGlobalPrivBtn: TTntBitBtn
Left = 184
Top = 134
Width = 27
Height = 25
Caption = '<<'
TabOrder = 4
OnClick = AssignAllGlobalPrivBtnClick
end
object RemoveAllGlobalPrivBtn: TTntBitBtn
Left = 184
Top = 168
Width = 27
Height = 25
Caption = '>>'
TabOrder = 5
OnClick = RemoveAllGlobalPrivBtnClick
end
end
object SchemataPrivSheet: TTabSheet
Caption = 'Schema Privileges'
ImageIndex = 1
object Label7: TTntLabel
Left = 360
Top = 52
Width = 91
Height = 13
Caption = 'Available Privileges'
end
object Label6: TTntLabel
Left = 172
Top = 50
Width = 91
Height = 13
Caption = 'Assigned Privileges'
end
object Panel2: TTntPanel
Left = 0
Top = 0
Width = 563
Height = 45
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object DBBevel: TTntBevel
Left = 12
Top = 38
Width = 535
Height = 3
Shape = bsTopLine
end
object SchemaPrivNameLbl: TTntLabel
Left = 46
Top = 6
Width = 104
Height = 13
Caption = 'brian, (Brian Aker)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Header3Img: TTntImage
Left = 12
Top = 8
Width = 24
Height = 24
end
object SchemaPrivInfoLbl: TTntLabel
Left = 46
Top = 20
Width = 187
Height = 13
Caption = 'Schema Privileges assigned to the User'
end
end
object AssignSchemaPrivBtn: TTntBitBtn
Left = 324
Top = 66
Width = 27
Height = 25
Caption = '<'
TabOrder = 3
OnClick = AssignSchemaPrivBtnClick
end
object RemoveSchemaPrivBtn: TTntBitBtn
Left = 324
Top = 98
Width = 27
Height = 25
Caption = '>'
TabOrder = 4
OnClick = RemoveSchemaPrivBtnClick
end
object SchemaPrivAvailListView: TTntListView
Left = 360
Top = 66
Width = 187
Height = 359
Columns = <
item
Caption = 'Right'
MaxWidth = 200
Width = 120
end
item
AutoSize = True
Caption = 'Description'
end>
MultiSelect = True
ReadOnly = True
RowSelect = True
ShowColumnHeaders = False
SmallImages = ApplicationDM.AdminTree16ImageList
TabOrder = 7
ViewStyle = vsReport
end
object SchemaPrivAssignedListView: TTntListView
Left = 172
Top = 66
Width = 143
Height = 359
Columns = <
item
Caption = 'Rights'
Width = 98
end>
MultiSelect = True
ReadOnly = True
ShowColumnHeaders = False
SmallImages = ApplicationDM.AdminTree16ImageList
TabOrder = 2
ViewStyle = vsReport
end
inline SchemaPrivSchemataFrame: TSchemataFrame
Left = 12
Top = 49
Width = 146
Height = 376
TabOrder = 1
TabStop = True
ExplicitLeft = 12
ExplicitTop = 49
ExplicitWidth = 146
ExplicitHeight = 376
inherited CatalogVST: TVirtualStringTree
Width = 146
Height = 331
PopupMenu = CatalogTreePopup
OnChange = SchemaPrivSchemataFrameCatalogVSTChange
ExplicitWidth = 146
ExplicitHeight = 331
WideDefaultText = 'Fetching Data ...'
end
inherited TopPnl: TTntPanel
Width = 146
ExplicitWidth = 146
inherited SchemataLbl: TTntLabel
Top = 1
Width = 48
ExplicitTop = 1
ExplicitWidth = 48
end
end
inherited SpacerPnl: TTntPanel
Width = 146
ExplicitWidth = 146
end
inherited AdvancedEdit: TAdvancedEditFrame
Width = 146
ExplicitWidth = 146
inherited SearchEd: TTntEdit
Width = 100
OnChange = AdvancedSchemaEditSearchEdChange
ExplicitWidth = 100
end
end
inherited SchemaTreeViewPopupMenu: TTntPopupMenu
inherited RefreshCatalogsSchemataListMI: TTntMenuItem
OnClick = SchemaPrivSchemataFrameRefreshCatalogsSchemataListMIClick
end
end
end
object AssignAllSchemaPrivBtn: TTntBitBtn
Left = 324
Top = 132
Width = 27
Height = 25
Caption = '<<'
TabOrder = 5
OnClick = AssignAllSchemaPrivBtnClick
end
object RemoveAllSchemaPrivBtn: TTntBitBtn
Left = 324
Top = 166
Width = 27
Height = 25
Caption = '>>'
TabOrder = 6
OnClick = RemoveAllSchemaPrivBtnClick
end
end
object TablePrivSheet: TTabSheet
Caption = 'Schema Object Privileges'
ImageIndex = 2
object Label2: TTntLabel
Left = 404
Top = 52
Width = 91
Height = 13
Caption = 'Available Privileges'
end
object Label4: TTntLabel
Left = 216
Top = 50
Width = 91
Height = 13
Caption = 'Assigned Privileges'
end
object Panel5: TTntPanel
Left = 0
Top = 0
Width = 563
Height = 45
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object TableBevel: TTntBevel
Left = 12
Top = 38
Width = 535
Height = 3
Shape = bsTopLine
end
object TableColumnPrivNameLbl: TTntLabel
Left = 46
Top = 6
Width = 104
Height = 13
Caption = 'brian, (Brian Aker)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Header4Img: TTntImage
Left = 12
Top = 8
Width = 24
Height = 24
end
object TableColumnPrivInfoLbl: TTntLabel
Left = 46
Top = 20
Width = 234
Height = 13
Caption = 'Table and Column Privileges assigned to the User'
end
end
object AssignTblColPrivBtn: TTntBitBtn
Left = 368
Top = 66
Width = 27
Height = 25
Caption = '<'
TabOrder = 3
OnClick = AssignTblColPrivBtnClick
end
object RemoveTblColPrivBtn: TTntBitBtn
Left = 368
Top = 98
Width = 27
Height = 25
Caption = '>'
TabOrder = 4
OnClick = RemoveTblColPrivBtnClick
end
object TablePrivAvailListView: TTntListView
Left = 404
Top = 66
Width = 143
Height = 359
Columns = <
item
Caption = 'Right'
MaxWidth = 200
Width = 120
end
item
AutoSize = True
Caption = 'Description'
end>
MultiSelect = True
ReadOnly = True
RowSelect = True
ShowColumnHeaders = False
SmallImages = ApplicationDM.AdminTree16ImageList
TabOrder = 7
ViewStyle = vsReport
end
object TablePrivAssignedListView: TTntListView
Left = 216
Top = 66
Width = 143
Height = 359
Columns = <
item
AutoSize = True
Caption = 'Rights'
end>
MultiSelect = True
ReadOnly = True
ShowColumnHeaders = False
SmallImages = ApplicationDM.AdminTree16ImageList
TabOrder = 2
ViewStyle = vsReport
end
inline TblColSchemataFrame: TSchemataFrame
Left = 12
Top = 49
Width = 189
Height = 376
TabOrder = 0
TabStop = True
ExplicitLeft = 12
ExplicitTop = 49
ExplicitWidth = 189
ExplicitHeight = 376
inherited CatalogVST: TVirtualStringTree
Width = 189
Height = 331
OnChange = TblColSchemataFrameCatalogVSTChange
ExplicitWidth = 189
ExplicitHeight = 331
WideDefaultText = 'Fetching Data ...'
end
inherited TopPnl: TTntPanel
Width = 189
ExplicitWidth = 189
inherited SchemataLbl: TTntLabel
Top = 1
Width = 48
ExplicitTop = 1
ExplicitWidth = 48
end
end
inherited SpacerPnl: TTntPanel
Width = 189
ExplicitWidth = 189
end
inherited AdvancedEdit: TAdvancedEditFrame
Width = 189
ExplicitWidth = 189
inherited SearchEd: TTntEdit
Width = 100
ExplicitWidth = 100
end
end
inherited SchemaTreeViewPopupMenu: TTntPopupMenu
inherited RefreshCatalogsSchemataListMI: TTntMenuItem
OnClick = TblColSchemataFrameRefreshCatalogsSchemataListMIClick
end
end
end
object AssignAllTblColPrivBtn: TTntBitBtn
Left = 368
Top = 132
Width = 27
Height = 25
Caption = '<<'
TabOrder = 5
OnClick = AssignAllTblColPrivBtnClick
end
object RemoveAllTblColPrivBtn: TTntBitBtn
Left = 368
Top = 166
Width = 27
Height = 25
Caption = '>>'
TabOrder = 6
OnClick = RemoveAllTblColPrivBtnClick
end
end
object ResourceSheet: TTabSheet
Caption = 'Resources'
ImageIndex = 4
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object Panel6: TTntPanel
Left = 0
Top = 0
Width = 563
Height = 45
Align = alTop
BevelOuter = bvNone
ParentColor = True
TabOrder = 0
object ResourceBevel: TTntBevel
Left = 12
Top = 38
Width = 535
Height = 3
Shape = bsTopLine
end
object ResourceNameLbl: TTntLabel
Left = 46
Top = 6
Width = 104
Height = 13
Caption = 'brian, (Brian Aker)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Header5Img: TTntImage
Left = 12
Top = 8
Width = 24
Height = 24
end
object ResourcesInfoLbl: TTntLabel
Left = 46
Top = 20
Width = 110
Height = 13
Caption = 'Resource management'
end
end
object ScrollBox2: TTntScrollBox
Left = 0
Top = 45
Width = 563
Height = 414
Align = alClient
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
ParentBackground = True
TabOrder = 1
object UserResourceLimitGBox: TTntGroupBox
Left = 12
Top = 6
Width = 534
Height = 387
Caption = 'Limiting user resources'
TabOrder = 0
end
end
end
end
object Panel3: TTntPanel
Left = 0
Top = 503
Width = 593
Height = 41
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object BottomBtnPnl: TTntPanel
Left = 242
Top = 0
Width = 351
Height = 41
Align = alRight
BevelOuter = bvNone
TabOrder = 0
object DiscardChangesBtn: TTntButton
Left = 236
Top = 4
Width = 105
Height = 25
Action = DiscardAction
TabOrder = 2
end
object NewUserBtn: TTntButton
Left = 4
Top = 4
Width = 105
Height = 25
Action = AddUserAction
TabOrder = 0
end
object ApplyChangesBtn: TTntButton
Left = 120
Top = 4
Width = 105
Height = 25
Action = ApplyAction
TabOrder = 1
end
end
end
end
object SubTreePnl: TTntPanel
Left = 0
Top = 0
Width = 185
Height = 544
Align = alLeft
BevelOuter = bvNone
TabOrder = 1
object UserTreeView: TTntTreeView
Left = 0
Top = 45
Width = 185
Height = 499
Align = alClient
HideSelection = False
Images = ApplicationDM.AdminTree16ImageList
Indent = 19
PopupMenu = UserSubTreePopupMenu
ReadOnly = True
ShowLines = False
ShowRoot = False
TabOrder = 0
OnChange = UserTreeViewChange
OnChanging = UserTreeViewChanging
OnDeletion = UserTreeViewDeletion
end
object SubTreeSearchPnl: TTntPanel
Left = 0
Top = 0
Width = 185
Height = 19
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object Label1: TTntLabel
Left = 2
Top = 2
Width = 75
Height = 13
Caption = 'Users Accounts'
end
end
inline AdvancedEdit: TAdvancedEditFrame
Left = 0
Top = 19
Width = 185
Height = 22
Align = alTop
TabOrder = 2
TabStop = True
ExplicitTop = 19
ExplicitWidth = 185
ExplicitHeight = 22
inherited SearchEd: TTntEdit
OnChange = AdvancedEditSearchEdChange
end
end
object Panel4: TTntPanel
Left = 0
Top = 41
Width = 185
Height = 4
Align = alTop
BevelOuter = bvNone
TabOrder = 3
end
end
object UserSubTreePopupMenu: TTntPopupMenu
OnPopup = UserSubTreePopupMenuPopup
Left = 60
Top = 146
object AddUserMI: TTntMenuItem
Action = AddUserAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object CloneUserMI: TTntMenuItem
Action = CloneUserAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object DeleteUserMI: TTntMenuItem
Action = DeleteUserAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object N1: TTntMenuItem
Caption = '-'
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object AddHostMI: TTntMenuItem
Action = AddHostAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object RemoveHostMI: TTntMenuItem
Action = RemoveHostAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object ShowHostsMI: TTntMenuItem
Action = ShowHostsAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object N3: TTntMenuItem
Caption = '-'
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object RefreshUserListMI: TTntMenuItem
Action = RefreshAction
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
end
object CatalogTreePopup: TTntPopupMenu
Left = 212
Top = 500
object RefreshCatalogTreeMI: TTntMenuItem
Caption = 'Refresh Schemata List'
ShortCut = 116
OnClick = RefreshCatalogTreeMIClick
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object N4: TTntMenuItem
Caption = '-'
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
object AddSchemawithWidcardsMI: TTntMenuItem
Caption = 'Add Schema with Widcards'
OnClick = AddSchemawithWidcardsMIClick
OnAdvancedDrawItem = MenuDrawItem
OnMeasureItem = MenuMeasureItem
end
end
object UserActionManager: TActionManager
OnUpdate = UserActionManagerUpdate
Left = 140
Top = 56
StyleName = 'XP Style'
object AddUserAction: TAction
Category = 'User'
Caption = 'Add &new user'
OnExecute = AddUserActionExecute
end
object ApplyAction: TAction
Category = 'User'
Caption = '&Apply changes'
OnExecute = ApplyActionExecute
end
object DiscardAction: TAction
Category = 'User'
Caption = '&Discard changes'
OnExecute = DiscardActionExecute
end
object CloneUserAction: TAction
Category = 'User'
Caption = '&Clone user'
OnExecute = CloneUserActionExecute
end
object DeleteUserAction: TAction
Category = 'User'
Caption = '&Delete user'
OnExecute = DeleteUserActionExecute
end
object AddHostAction: TAction
Category = 'Host'
Caption = 'Add host from which the user can connect'
OnExecute = AddHostActionExecute
end
object RemoveHostAction: TAction
Category = 'Host'
Caption = 'Remove host from which the user can connect'
OnExecute = RemoveHostActionExecute
end
object ShowHostsAction: TAction
Category = 'Host'
Caption = 'Show hosts in user list'
OnExecute = ShowHostsActionExecute
end
object RefreshAction: TAction
Category = 'User'
Caption = 'Refresh user list'
OnExecute = RefreshActionExecute
end
end
end
|