blob: f0e852d0468a460e900aa37afc034070d4051e15 [file] [log] [blame]
/*
* Copyright 2007 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.sample.mail.client;
import com.google.gwt.user.client.ui.AbstractImagePrototype;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.ImageBundle;
import com.google.gwt.user.client.ui.Tree;
import com.google.gwt.user.client.ui.TreeImages;
import com.google.gwt.user.client.ui.TreeItem;
/**
* A tree displaying a set of email folders.
*/
public class Mailboxes extends Composite {
/**
* Specifies the images that will be bundled for this Composite and specify
* that tree's images should also be included in the same bundle.
*/
public interface Images extends ImageBundle, TreeImages {
AbstractImagePrototype drafts();
AbstractImagePrototype home();
AbstractImagePrototype inbox();
AbstractImagePrototype sent();
AbstractImagePrototype templates();
AbstractImagePrototype trash();
@Resource("noimage.png")
AbstractImagePrototype treeLeaf();
}
private Tree tree;
/**
* Constructs a new mailboxes widget with a bundle of images.
*
* @param images a bundle that provides the images for this widget
*/
public Mailboxes(Images images) {
tree = new Tree(images);
TreeItem root = new TreeItem(
imageItemHTML(images.home(), "foo@example.com"));
tree.addItem(root);
addImageItem(root, "Inbox", images.inbox());
addImageItem(root, "Drafts", images.drafts());
addImageItem(root, "Templates", images.templates());
addImageItem(root, "Sent", images.sent());
addImageItem(root, "Trash", images.trash());
root.setState(true);
initWidget(tree);
}
/**
* A helper method to simplify adding tree items that have attached images.
* {@link #addImageItem(TreeItem, String, AbstractImagePrototype) code}
*
* @param root the tree item to which the new item will be added.
* @param title the text associated with this item.
*/
private TreeItem addImageItem(TreeItem root, String title,
AbstractImagePrototype imageProto) {
TreeItem item = new TreeItem(imageItemHTML(imageProto, title));
root.addItem(item);
return item;
}
/**
* Generates HTML for a tree item with an attached icon.
*
* @param imageProto the image prototype to use
* @param title the title of the item
* @return the resultant HTML
*/
private String imageItemHTML(AbstractImagePrototype imageProto, String title) {
return imageProto.getHTML() + " " + title;
}
}