/******************************************************************************* * Copyright (c) 2007, 2014 compeople AG and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * compeople AG - initial API and implementation *******************************************************************************/ package org.eclipse.riena.ui.ridgets.swt.views; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.riena.ui.swt.IStatusLineContentFactory; import org.eclipse.riena.ui.swt.Statusline; import org.eclipse.riena.ui.swt.StatuslineMessage; /** * Create a simple status line for dialog. * <p> * This status line only displays a message. * * @since 5.0 */ public class DialogStatuslineContentFactory implements IStatusLineContentFactory { public void createContent(final Statusline statusline) { statusline.setLayout(new FormLayout()); final StatuslineMessage message = statusline.getMessageComposite(); final FormData formData = new FormData(); formData.top = new FormAttachment(0, 0); formData.bottom = new FormAttachment(100, 0); formData.left = new FormAttachment(0, 0); formData.right = new FormAttachment(100, 0); message.setLayoutData(formData); } }