/******************************************************************************* * Copyright (c) 2013 hangum. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v2.1 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * * Contributors: * hangum - initial API and implementation ******************************************************************************/ package com.hangum.tadpole.commons.dialogs.message; import org.apache.log4j.Logger; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.dialogs.TitleAreaDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; import com.hangum.tadpole.commons.google.analytics.AnalyticCaller; import com.hangum.tadpole.commons.libs.core.message.CommonMessages; import com.hangum.tadpole.commons.util.GlobalImageUtils; /** * tadpole message dialog * * @author hangum * */ public class TadpoleMessageDialog extends TitleAreaDialog { private static final Logger logger = Logger.getLogger(TadpoleMessageDialog.class); private Text textMessage; private String title; private String head; private String message; private Text text; private Label lblDate; private Label lblMessage; /** * Create the dialog. * @param parentShell */ public TadpoleMessageDialog(Shell parentShell, String title, String head, String message) { super(parentShell); setShellStyle(SWT.MAX | SWT.RESIZE | SWT.TITLE | SWT.APPLICATION_MODAL); this.title = title; this.head = head; this.message = message; } @Override protected void configureShell(Shell newShell) { super.configureShell(newShell); newShell.setText("Tadpole Dialog"); //$NON-NLS-1$ newShell.setImage(GlobalImageUtils.getTadpoleIcon()); } /** * Create contents of the dialog. * @param parent */ @Override protected Control createDialogArea(Composite parent) { setMessage(title); setTitle("Tadpole Message"); Composite area = (Composite) super.createDialogArea(parent); Composite container = new Composite(area, SWT.NONE); container.setLayout(new GridLayout(2, false)); container.setLayoutData(new GridData(GridData.FILL_BOTH)); lblDate = new Label(container, SWT.NONE); lblDate.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1)); lblDate.setText("Date"); text = new Text(container, SWT.BORDER); text.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); text.setText(head); lblMessage = new Label(container, SWT.NONE); lblMessage.setText("Message"); new Label(container, SWT.NONE); textMessage = new Text(container, SWT.BORDER | SWT.WRAP | SWT.H_SCROLL | SWT.V_SCROLL | SWT.CANCEL | SWT.MULTI); textMessage.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1)); textMessage.setText(message); // google analytic AnalyticCaller.track(this.getClass().getName()); textMessage.setFocus(); return area; } /** * Create contents of the button bar. * @param parent */ @Override protected void createButtonsForButtonBar(Composite parent) { createButton(parent, IDialogConstants.OK_ID, CommonMessages.get().Close, true); //$NON-NLS-1$ } /** * Return the initial size of the dialog. */ @Override protected Point getInitialSize() { return new Point(450, 422); } }