| demos\outlook\notes\notes.sdf |
1 Form { 2 name: "notesSelection" 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 Notes" 13 } 14 } 15 { 16 Tree { 17 bounds { y: "1"; height: "1ln" } 18 borders: "none" 19 verticalAlign: "top" 20 rootNode { value: "My Notes" } 21 showRootNode: "false" 22 leafIcon: "resource:pim.icon.notes" 23 dataURL:<< Notes >> [ 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: "Icons" 45 groupName: "view" 46 } 47 } 48 { 49 RadioButton { 50 name: "detailedAddressCards" 51 bounds { y: "1" } 52 value: "Notes List" 53 groupName: "view" 54 selected: "true" 55 } 56 } 57 { 58 RadioButton { 59 name: "activeTasks" 60 bounds { y: "2" } 61 value: "Last Seven Days" 62 groupName: "view" 63 } 64 } 65 { 66 RadioButton { 67 name: "byCategory" 68 bounds { y: "4" } 69 value: "By Category" 70 groupName: "view" 71 } 72 } 73 { 74 RadioButton { 75 name: "byCompany" 76 bounds { y: "5" } 77 value: "By Color" 78 groupName: "view" 79 } 80 } 81 } 82 } 83 } 84 { 85 Line { 86 bounds { y: "4"; height: "2" } 87 fgColor: "inactiveCaption" 88 } 89 } 90 { 91 GroupBox { 92 borders: "none" 93 bounds { y: "5" } 94 bgColor: "#ffffff" 95 contentPadding { left: "14" } 96 widgets { 97 { 98 PushButton { 99 name: "sharedContacts" 100 bounds { y: "0" } 101 fgColor: "linkColor" 102 horizontalAlign: "left" 103 buttonStyle: "hyperlink" 104 value: "Open Shared Notes..." 105 } 106 } 107 { 108 PushButton { 109 name: "customize" 110 bounds { y: "1" } 111 fgColor: "linkColor" 112 horizontalAlign: "left" 113 buttonStyle: "hyperlink" 114 value: "Customize Current View..." 115 } 116 } 117 } 118 } 119 } 120 } 121 } 122 123 124 125