| Line 6... |
Line 6... |
| 6 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
6 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
| 7 |
import com.google.gwt.user.client.ui.Anchor;
|
7 |
import com.google.gwt.user.client.ui.Anchor;
|
| 8 |
import com.google.gwt.user.client.ui.Composite;
|
8 |
import com.google.gwt.user.client.ui.Composite;
|
| 9 |
import com.google.gwt.user.client.ui.DockLayoutPanel;
|
9 |
import com.google.gwt.user.client.ui.DockLayoutPanel;
|
| 10 |
import com.google.gwt.user.client.ui.HTML;
|
10 |
import com.google.gwt.user.client.ui.HTML;
|
| 11 |
import com.google.gwt.user.client.ui.Image;
|
- |
|
| 12 |
import com.google.gwt.user.client.ui.Label;
|
11 |
import com.google.gwt.user.client.ui.Label;
|
| 13 |
import com.google.gwt.user.client.ui.SimplePanel;
|
- |
|
| 14 |
import com.google.gwt.user.client.ui.SplitLayoutPanel;
|
12 |
import com.google.gwt.user.client.ui.SplitLayoutPanel;
|
| 15 |
import com.google.gwt.user.client.ui.StackLayoutPanel;
|
13 |
import com.google.gwt.user.client.ui.StackLayoutPanel;
|
| 16 |
import com.google.gwt.user.client.ui.Tree;
|
14 |
import com.google.gwt.user.client.ui.Tree;
|
| 17 |
import com.google.gwt.user.client.ui.TreeItem;
|
15 |
import com.google.gwt.user.client.ui.TreeItem;
|
| 18 |
import com.google.gwt.user.client.ui.Widget;
|
16 |
import com.google.gwt.user.client.ui.Widget;
|
| 19 |
|
17 |
|
| 20 |
public class InboxWidget extends Composite implements Display{
|
18 |
public class InboxWidget extends Composite implements Display{
|
| 21 |
|
19 |
|
| 22 |
private final HTML commandList = new HTML("Navigation");
|
20 |
private final HTML commandList = new HTML("Navigation");
|
| 23 |
private final HTML messageList = new HTML("Messages are");
|
- |
|
| 24 |
private final HTML messageDetails = new HTML("Message Details");
|
21 |
private final HTML messageDetails = new HTML("Message Details");
|
| 25 |
private DockLayoutPanel dpanel = new DockLayoutPanel(Unit.EM);
|
22 |
private DockLayoutPanel dpanel = new DockLayoutPanel(Unit.EM);
|
| 26 |
private SplitLayoutPanel sp = new SplitLayoutPanel();
|
23 |
private SplitLayoutPanel sp = new SplitLayoutPanel();
|
| 27 |
|
24 |
|
| 28 |
private Tree orderTree = new Tree();
|
25 |
private Tree orderTree = new Tree();
|
| Line 47... |
Line 44... |
| 47 |
|
44 |
|
| 48 |
private Tree providerTree = new Tree();
|
45 |
private Tree providerTree = new Tree();
|
| 49 |
private final Anchor allProviders = new Anchor("All Couriers");
|
46 |
private final Anchor allProviders = new Anchor("All Couriers");
|
| 50 |
|
47 |
|
| 51 |
private final Anchor alerts = new Anchor("Alerts");
|
48 |
private final Anchor alerts = new Anchor("Alerts");
|
| 52 |
private final Image image = new Image("img/shop2020.jpg");
|
- |
|
| 53 |
private Widget finalWidget = null;
|
49 |
private Widget finalWidget = null;
|
| 54 |
private Widget northWidget = null;
|
50 |
private Widget northWidget = null;
|
| 55 |
private TopPanel topPanel = new TopPanel();
|
51 |
private TopPanel topPanel = new TopPanel();
|
| 56 |
|
52 |
|
| 57 |
public InboxWidget(){
|
53 |
public InboxWidget(){
|