/* * Smart GWT (GWT for SmartClient) * Copyright 2008 and beyond, Isomorphic Software, Inc. * * Smart GWT is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3 * as published by the Free Software Foundation. Smart GWT is also * available under typical commercial license terms - see * http://smartclient.com/license * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ import com.smartgwt.client.types.Overflow; import com.smartgwt.client.types.VisibilityMode; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.IButton; import com.smartgwt.client.widgets.Img; import com.smartgwt.client.widgets.events.ClickEvent; import com.smartgwt.client.widgets.events.ClickHandler; import com.smartgwt.client.widgets.layout.HLayout; import com.smartgwt.client.widgets.layout.SectionStack; import com.smartgwt.client.widgets.layout.SectionStackSection; import com.smartgwt.client.widgets.layout.VLayout; import com.google.gwt.core.client.EntryPoint; public class SectionsResizeSample implements EntryPoint { public void onModuleLoad() { final HelpCanvas help1 = new HelpCanvas("help1"); final HelpCanvas help2 = new HelpCanvas("help2"); final SectionStack sectionStack = new SectionStack(); sectionStack.setVisibilityMode(VisibilityMode.MULTIPLE); sectionStack.setWidth(300); sectionStack.setHeight(350); SectionStackSection section1 = new SectionStackSection("Blue Pawn"); section1.setExpanded(true); section1.setResizeable(false); section1.addItem(new Img("pieces/48/pawn_blue.png", 48, 48)); sectionStack.addSection(section1); SectionStackSection section2 = new SectionStackSection("Help 1"); section2.setExpanded(true); section2.setCanCollapse(true); section2.addItem(help1); sectionStack.addSection(section2); SectionStackSection section3 = new SectionStackSection("Help 2"); section3.setExpanded(true); section3.setCanCollapse(true); section3.addItem(help2); sectionStack.addSection(section3); IButton resizeButton = new IButton("Resize Help 1"); resizeButton.setWidth(150); resizeButton.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { help1.setHeight(200); } }); HLayout layout = new HLayout(); layout.setMembersMargin(20); layout.addMember(sectionStack); VLayout buttons = new VLayout(); buttons.setMembersMargin(10); buttons.addMember(resizeButton); layout.addMember(buttons); layout.draw(); } class HelpCanvas extends Canvas { private String contents = "
Severity 1
- Critical problem
System is unavailable in production or " + "is corrupting data, and the error severely impacts the user's operations." + "
Severity 2
- Major problem
An important function of the system " + "is not available in production, and the user's operations are restricted." + "
Severity 3
- Minor problem
Inability to use a function of the " + "system occurs, but it does not seriously affect the user's operations."; public HelpCanvas(String id) { setID(id); setPadding(10); setOverflow(Overflow.AUTO); setContents(contents); } } }