1<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'
2  xmlns:dt='urn:import:com.google.gwt.sample.dynatablerf.client.widgets'>
3  <ui:style>
4    body {
5      background-color: white;
6      color: black;
7      font-family: Arial,sans-serif;
8      font-size: small;
9      margin: 8px;
10      margin-top: 3px;
11    }
12
13    .boxed {
14      border: thin solid black;
15      margin: 2px;
16      overflow: hidden;
17      padding: 5px;
18      -moz-border-radius: 5px;
19      -webkit-border-radius: 5px;
20    }
21
22    .header {
23      font-weight: bold;
24      font-size: 200%;
25    }
26
27    .main {
28      margin: 5px;
29    }
30
31    @external gwt-SplitLayoutPanel-VDragger;
32
33    .gwt-SplitLayoutPanel-VDragger {
34      cursor: row-resize;
35    }
36
37  </ui:style>
38  <g:DockLayoutPanel unit="EX" stylePrimaryName="{style.main}">
39    <g:north size="5">
40      <g:HTML styleName="{style.header}">School Schedule for Professors and Students
41      </g:HTML>
42    </g:north>
43    <g:east size="30">
44      <g:SplitLayoutPanel>
45        <g:north size="250">
46          <dt:DayFilterWidget ui:field="filter"
47            stylePrimaryName="{style.boxed}" />
48        </g:north>
49        <g:center>
50          <dt:FavoritesWidget ui:field="favorites"
51            stylePrimaryName="{style.boxed}" />
52        </g:center>
53      </g:SplitLayoutPanel>
54    </g:east>
55    <g:center>
56      <dt:SummaryWidget ui:field="calendar" stylePrimaryName="{style.boxed}" />
57    </g:center>
58  </g:DockLayoutPanel>
59</ui:UiBinder>