155e71a658febc6c1e8ef2bdd15b470c9d693fab
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / mvc / element / TextWithLabelElementMVC.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.ui.mvc.element;
11
12 import org.eclipse.swt.SWT;
13 import org.eclipse.swt.events.DisposeEvent;
14 import org.eclipse.swt.events.DisposeListener;
15 import org.eclipse.swt.widgets.Composite;
16 import org.eclipse.swt.widgets.Display;
17 import org.eclipse.swt.widgets.Text;
18 import org.eclipse.ui.forms.widgets.FormToolkit;
19 import org.eclipse.ui.forms.widgets.TableWrapData;
20 import org.eclipse.ui.forms.widgets.TableWrapLayout;
21
22 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
23 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
24 import eu.etaxonomy.taxeditor.ui.mvc.AbstractCdmComposite;
25
26 /**
27 * @author pplitzner
28 * @date 11.02.2014
29 *
30 */
31 public class TextWithLabelElementMVC extends AbstractCdmComposite {
32
33 private final FormToolkit toolkit = new FormToolkit(Display.getCurrent());
34 private final Text text;
35 private final String initialText;
36 private final Integer textHeight;
37
38 /**
39 * Create the composite.
40 * @param parent
41 * @param style
42 */
43 public TextWithLabelElementMVC(Composite parent, String initialText, Integer textHeight, int style) {
44 super(parent, SWT.BORDER);
45 this.initialText = initialText;
46 this.textHeight = textHeight;
47 addDisposeListener(new DisposeListener() {
48 @Override
49 public void widgetDisposed(DisposeEvent e) {
50 toolkit.dispose();
51 }
52 });
53 toolkit.adapt(this);
54 toolkit.paintBordersFor(this);
55 {
56 TableWrapLayout tableWrapLayout = new TableWrapLayout();
57 tableWrapLayout.verticalSpacing = 0;
58 tableWrapLayout.topMargin = 0;
59 tableWrapLayout.horizontalSpacing = 0;
60 tableWrapLayout.bottomMargin = 0;
61 tableWrapLayout.rightMargin = 0;
62 tableWrapLayout.leftMargin = 0;
63 setLayout(tableWrapLayout);
64 }
65
66 text = new Text(this, SWT.WRAP);
67 text.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP, 1, 1));
68 toolkit.adapt(text, true, true);
69
70 }
71
72 public Text getText() {
73 return text;
74 }
75
76 @Override
77 protected void initInternalController(CdmFormFactory formFactory, ICdmFormElement parentElement){
78 controller = new TextWithLabelElementController(this, formFactory, parentElement, this.initialText, this.textHeight, SWT.NONE);
79 }
80 }