demos\outlook\navigator.sdf
 1 FloorTabPane {
 2   name: "navigator_tabs"
 3   font { style: "bold" }
 4   standardHandlers: "onChange"
 5   focusable: false
 6   outlookStyle: "true"
 7   buttonPainter {
 8     bgColor: "Sage.controlLtGradient,Sage.controlDkGradient"
 9     borders {
10       matte [insets="1,0,0,1"]
11     }
12   }
13   buttonRolloverPainter {
14     bgColor: "#fff4cc,#ffd091"
15     borders {
16       matte [insets="1,0,0,1"]
17     }
18   }
19   buttonSelectedPainter {
20     bgColor: "#ffd58c,#ffad55"
21     borders {
22       matte [insets="1,0,0,1"]
23     }
24   }
25 
26   tabs {
27     {
28       name: "mail_view"
29       title: "Mail"
30       icon: "resource:pim.icon.mail24"
31       alternateIcon: "resource:pim.icon.mail"
32       dataURL: "email/email.sdf"
33       linkedData: "email"
34     }
35     {
36       name: "calendar_view"
37       title: "Calendar"
38       icon: "resource:pim.icon.calendar24"
39       alternateIcon: "resource:pim.icon.calendar"
40       dataURL: "calendar/calendar.sdf"
41       linkedData: "calendar"
42     }
43     {
44       name: "contacts_view"
45       title: "Contacts"
46       icon: "resource:pim.icon.contacts24"
47       alternateIcon: "resource:pim.icon.contacts"
48       dataURL: "contacts/contacts.sdf"
49       linkedData: "contacts"
50     }
51     {
52       name: "tasks_view"
53       title: "Tasks"
54       icon: "resource:pim.icon.tasks24"
55       alternateIcon: "resource:pim.icon.tasks"
56       dataURL: "tasks/tasks.sdf"
57       linkedData: "tasks"
58     }
59     {
60       name: "notes_view"
61       title: "Notes"
62       icon: "resource:pim.icon.notes24"
63       alternateIcon: "resource:pim.icon.notes"
64       dataURL: "notes/notes.sdf"
65       linkedData: "notes"
66     }
67   }
68 }
69 
70 
71 
72