All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.mhus.lib.vaadin.TextInputDialog Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2018 Mike Hummel
 *
 * 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 de.mhus.lib.vaadin;

import com.vaadin.event.ShortcutAction;
import com.vaadin.event.ShortcutListener;
import com.vaadin.shared.ui.ContentMode;
import com.vaadin.ui.UI;
import com.vaadin.ui.Label;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;

public class TextInputDialog extends ModalDialog {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String message;
	private Listener listener;
	private Action confirm;
	private Action cancel;
	protected Label label;
	private TextField textField;
	private String txtInput;
	private Action result;

	public TextInputDialog(String title, String message, String txtInput, String txtConfirm, String txtCancel, Listener listener) throws Exception {

		this.message = message;
		this.listener = listener;
		this.txtInput = txtInput;
		confirm = new Action("confirm", txtConfirm);
		cancel = new Action("cancel", txtCancel);
		actions = new Action[] {confirm,cancel};
		initUI();
		setCaption(title);
		
	}
	
	public Label getLabel() {
		return label;
	}
	
	public TextField getTextField() {
		return textField;
	}
	
	@Override
	protected void initContent(VerticalLayout layout) throws Exception {
		label = new Label(message);
		label.setContentMode(ContentMode.HTML);
		layout.addComponent(label);
		
		textField = new TextField();
		textField.setValue(txtInput);
		textField.setWidth("100%");
		textField.focus();
		
		textField.addShortcutListener(new ShortcutListener("Confirm", ShortcutAction.KeyCode.ENTER, null) {
			private static final long serialVersionUID = 1L;

				@Override
			    public void handleAction(Object sender, Object target) {
			    	confirm.doAction(TextInputDialog.this);
			    }
			});
		
		layout.addComponent(textField);
		txtInput = null;
	}

	@Override
	protected boolean doAction(Action action) {
		result = action;
		if (action.equals(confirm)) txtInput = (String) textField.getValue();
		if (listener != null) {
			if (action.equals(confirm) && !listener.validate(txtInput))
				return false;
			listener.onClose(this);
		}
		return true;
	}

	public static void show(UI parent, String title, String txtInput, String message, String txtConfirm, String txtCancel, Listener listener) {
		try {
//			if (parent == null) parent = UI.getCurrent();
			new TextInputDialog(title,message,txtInput,txtConfirm,txtCancel,listener).show(parent);
		} catch (Exception e) {
		}
	}

	public static interface Listener {

		public boolean validate(String txtInput);
		
		public void onClose(TextInputDialog dialog);
		
	}

	public boolean isConfirmed() {
		return result == confirm;
	}
	
	public boolean isCancel() {
		return result == cancel;
	}

	public String getInputText() {
		return txtInput;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy