| demos\outlook\tasks\tasks.sdf |
1 Form { 2 name: "tasksSelection" 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 Tasks" 13 } 14 } 15 { 16 Tree { 17 bounds { y: "1"; height: "1ln" } 18 borders: "none" 19 verticalAlign: "top" 20 rootNode { value: "My Tasks" } 21 showRootNode: "false" 22 leafIcon: "resource:pim.icon.tasks" 23 dataURL:<< Tasks >> [ inline="true" ] 24 } 25 } 26 { 27 Label { 28 templateName: "headerLabel" 29 bounds { y: "2" } 30 value: "Current View" 31 } 32 } 33 { 34 GroupBox { 35 borders: "none" 36 bounds { y: "3"} 37 contentPadding { left: "20" } 38 rowSpacing: "0" 39 widgets { 40 { 41 RadioButton { 42 name: "addressCards" 43 bounds { y: "0" } 44 value: "Simple List" 45 groupName: "view" 46 } 47 } 48 { 49 RadioButton { 50 name: "detailedAddressCards" 51 bounds { y: "1" } 52 value: "Detailed List" 53 selected: "true" 54 groupName: "view" 55 } 56 } 57 { 58 RadioButton { 59 name: "activeTasks" 60 bounds { y: "2" } 61 value: "Active Tasks" 62 groupName: "view" 63 } 64 } 65 { 66 RadioButton { 67 name: "phoneList" 68 bounds { y: "3" } 69 value: "Next Seven Days" 70 groupName: "view" 71 } 72 } 73 { 74 RadioButton { 75 name: "byCategory" 76 bounds { y: "4" } 77 value: "Overdue Tasks" 78 groupName: "view" 79 } 80 } 81 { 82 RadioButton { 83 name: "byCompany" 84 bounds { y: "5" } 85 value: "By Category" 86 groupName: "view" 87 } 88 } 89 { 90 RadioButton { 91 name: "byAssignment" 92 bounds { y: "6" } 93 value: "Assignment" 94 groupName: "view" 95 } 96 } 97 { 98 RadioButton { 99 name: "byPerson" 100 bounds { y: "7" } 101 value: "By Person Responsible" 102 groupName: "view" 103 } 104 } 105 { 106 RadioButton { 107 name: "byCompletedTasks" 108 bounds { y: "8" } 109 value: "Completed Tasks" 110 groupName: "view" 111 } 112 } 113 { 114 RadioButton { 115 name: "byTimeline" 116 bounds { y: "9" } 117 value: "Task Timeline" 118 groupName: "view" 119 } 120 } 121 } 122 } 123 } 124 { 125 Line { 126 bounds { y: "4"; height: "2" } 127 fgColor: "inactiveCaption" 128 } 129 } 130 { 131 GroupBox { 132 borders: "none" 133 bounds { y: "5"; } 134 bgColor: "#ffffff" 135 contentPadding { left: "14" } 136 widgets { 137 { 138 PushButton { 139 name: "sharedContacts" 140 bounds { y: "0" } 141 fgColor: "linkColor" 142 horizontalAlign: "left" 143 buttonStyle: "hyperlink" 144 value: "Open Shared Tasks..." 145 } 146 } 147 { 148 PushButton { 149 name: "customize" 150 bounds { y: "1" } 151 fgColor: "linkColor" 152 horizontalAlign: "left" 153 buttonStyle: "hyperlink" 154 value: "Customize Current View..." 155 } 156 } 157 } 158 } 159 } 160 } 161 } 162 163 164 165