List of usage examples for com.vaadin.ui HorizontalLayout subclass-usage
From source file org.opennms.features.jmxconfiggenerator.webui.ui.mbeans.EditControls.java
/**
* This class represents a "control panel", providing three buttons: edit,
* cancel, save. At the beginning only edit button is visible. After clicking
* edit-Button, cancel and save are visible. Pressing save indicates a commit(),
* cancel a discard() on the outer component (e.g. a table).
*
From source file org.opennms.features.jmxconfiggenerator.webui.ui.mbeans.TableTextFieldWrapper.java
/**
* This class wraps a {@link TextField} so it is laid out correctly inside a
* editable Table. Because by default a {@link TextField} inside an editable
* table does not show any error indicator on a failed validation. The Vertical-
* or HorizontalLayout does show an error indicator, so we wrap the layout
* around the text field.
From source file org.opennms.features.topology.app.internal.ui.InfoPanel.java
public class InfoPanel extends HorizontalLayout { private static String ID = "info-panel-component"; private static String HIDE_TOOLTIP = "Hide info panel"; private static String SHOW_TOOLTIP = "Show info panel";
From source file org.opennms.features.vaadin.config.EditorToolbar.java
/** * The Class EditorToolbar. */ @SuppressWarnings("serial") public abstract class EditorToolbar extends HorizontalLayout implements ClickListener {
From source file org.opennms.features.vaadin.dashboard.config.ui.editors.CriteriaRestrictionComponent.java
/** * This class represents a component for editing a single restriction of a criteria. * * @author Christian Pape */ public class CriteriaRestrictionComponent extends HorizontalLayout {
From source file org.opennms.features.vaadin.dashboard.config.ui.WallboardConfigView.java
/** * This class represents the base editing component for {@link Wallboard} instances. * * @author Christian Pape */ public class WallboardConfigView extends HorizontalLayout
From source file org.opennms.features.vaadin.dashboard.ui.HeaderLayout.java
/**
* The top heading layout for the wallboard view.
*
* @author Christian Pape
* @author Marcus Hellberg (marcus@vaadin.com)
*/
From source file org.opennms.features.vaadin.jmxconfiggenerator.ui.ButtonPanel.java
public class ButtonPanel extends HorizontalLayout { private final Button next; private final Button previous; public ButtonPanel(ClickListener listener) { next = UIHelper.createButton("", "next", Config.Icons.BUTTON_NEXT, listener);
From source file org.opennms.features.vaadin.jmxconfiggenerator.ui.mbeans.TableTextFieldWrapper.java
/**
* This class wraps a {@link TextField} so it is laid out correctly inside a
* editable Table. Because by default a {@link TextField} inside an editable
* table does not show any error indicator on a failed validation. The Vertical-
* or HorizontalLayout does show an error indicator, so we wrap the layout
* around the text field.
From source file org.ow2.sirocco.cloudmanager.SecurityGroupRuleView.java
public class SecurityGroupRuleView extends HorizontalLayout implements ValueChangeListener { private static final long serialVersionUID = 1L; private Table ruleTable; private BeanContainer<String, SecurityGroupRuleBean> rules;