Java tutorial
/* * Copyright (C) 2015 Glauco Knihs. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Please contact Glauco Knihs, Rua 10 de Junho, N469, Centro, * Guabiruba-SC, CEP 88360-000, BRAZIL, eglauko@hotmail.com, * if you need additional information or have any questions. */ package org.balisunrise.vaadin.components.header; import com.vaadin.event.FieldEvents; import com.vaadin.event.ShortcutAction; import com.vaadin.ui.AbstractField; import com.vaadin.ui.CustomComponent; import com.vaadin.ui.Notification; import com.vaadin.ui.TextField; /** * * @author Glauco */ public class SearchInput extends CustomComponent implements FieldEvents.BlurListener { private TextField input; public SearchInput() { init(); } private void init() { setStyleName("b-search-input"); setHeight("100%"); input = new TextField(); input.setStyleName("b-search-input"); input.setWidth("160px"); input.setImmediate(true); input.addBlurListener(this); input.addShortcutListener(new AbstractField.FocusShortcut(input, ShortcutAction.KeyCode.F2)); setCompositionRoot(input); } @Override public void blur(FieldEvents.BlurEvent event) { Notification.show("Pesquisar por: " + input.getValue(), Notification.Type.HUMANIZED_MESSAGE); } }