| demos\outlook\contacts\contacts.sdf |
1 Form { 2 name: "contactsSelection" 3 borders: "none" 4 bgColor: "#FFFFFF" 5 rows: "6" 6 layout: "table" 7 widgets { 8 { 9 Label { 10 templateName: "headerLabel" 11 bounds { y: "0" } 12 value: "My Contacts" 13 } 14 } 15 { 16 Tree { 17 bounds { y: "1"; height: "2ln" } 18 borders: "none" 19 verticalAlign: "top" 20 rootNode { value: "My Contacts" } 21 showRootNode: "false" 22 leafIcon: "resource:pim.icon.contacts" 23 dataURL:<< 24 My Contacts 25 Search Results 26 >> [ inline="true" ] 27 } 28 } 29 { 30 Label { 31 templateName: "headerLabel" 32 bounds { y: "2" } 33 value: "Current View" 34 } 35 } 36 { 37 GroupBox { 38 borders: "none" 39 bounds { y: "3" } 40 contentPadding { left: "20" } 41 rowSpacing: "0" 42 widgets { 43 { 44 RadioButton { 45 name: "addressCards" 46 bounds { y: "0" } 47 value: "Address Cards" 48 groupName: "view" 49 } 50 } 51 { 52 RadioButton { 53 name: "detailedAddressCards" 54 bounds { y: "1" } 55 value: "Detailed Address Cards" 56 groupName: "view" 57 } 58 } 59 { 60 RadioButton { 61 name: "activeTasks" 62 bounds { y: "2" } 63 value: "Active Tasks" 64 groupName: "view" 65 } 66 } 67 { 68 RadioButton { 69 name: "phoneList" 70 bounds { y: "3" } 71 value: "Phone List" 72 groupName: "view" 73 } 74 } 75 { 76 RadioButton { 77 name: "byCategory" 78 bounds { y: "4" } 79 value: "By Category" 80 groupName: "view" 81 } 82 } 83 { 84 RadioButton { 85 name: "byCompany" 86 bounds { y: "5" } 87 value: "By Company" 88 groupName: "view" 89 selected: "true" 90 } 91 } 92 { 93 RadioButton { 94 name: "byLocation" 95 bounds { y: "6" } 96 value: "By Location" 97 groupName: "view" 98 } 99 } 100 } 101 } 102 } 103 { 104 Line { 105 bounds { y: "4"; height: "2" } 106 fgColor: "inactiveCaption" 107 } 108 } 109 { 110 GroupBox { 111 borders: "none" 112 bounds { y: "5"} 113 bgColor: "#ffffff" 114 contentPadding { left: "14" } 115 widgets { 116 { 117 PushButton { 118 name: "sharedContacts" 119 bounds { y: "0" } 120 fgColor: "linkColor" 121 horizontalAlign: "left" 122 buttonStyle: "hyperlink" 123 value: "Open Shared Contacts..." 124 } 125 } 126 { 127 PushButton { 128 name: "customize" 129 bounds { y: "1" } 130 fgColor: "linkColor" 131 horizontalAlign: "left" 132 buttonStyle: hyperlink 133 value: "Customize Current View..." 134 } 135 } 136 } 137 } 138 } 139 } 140 } 141 142 143 144