Project

General

Profile

Download (3.43 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.vaadin.component;
10

    
11
import com.vaadin.data.Container;
12
import com.vaadin.data.Property;
13
import com.vaadin.data.fieldgroup.FieldGroup;
14
import com.vaadin.server.FontAwesome;
15
import com.vaadin.ui.Button;
16
import com.vaadin.ui.Button.ClickListener;
17
import com.vaadin.ui.Component;
18
import com.vaadin.ui.CssLayout;
19
import com.vaadin.ui.ListSelect;
20
import com.vaadin.ui.themes.ValoTheme;
21

    
22
/**
23
 * @author a.kohlbecker
24
 * @since May 24, 2017
25
 *
26
 */
27
public class ToOneRelatedEntityListSelect<V extends Object> extends CompositeCustomField<V> implements ToOneRelatedEntityField<V> {
28

    
29
    private static final long serialVersionUID = 6277565876657520311L;
30

    
31
    public static final String PRIMARY_STYLE = "v-related-entity-list-select";
32

    
33
    private Class<V> type;
34

    
35
    private CssLayout container = new CssLayout();
36

    
37
    private ListSelect select;
38

    
39

    
40
    private Button addButton = new Button(FontAwesome.PLUS);
41
    private Button editButton  = new Button(FontAwesome.EDIT);
42

    
43
    public ToOneRelatedEntityListSelect(String caption, Class<V> type, Container dataSource){
44
        this.type = type;
45
        setCaption(caption);
46
        select = new ListSelect(caption, dataSource);
47
        addStyledComponents(select, addButton, editButton);
48
        addSizedComponent(select);
49
    }
50

    
51
    /**
52
     * {@inheritDoc}
53
     */
54
    @Override
55
    protected Component initContent() {
56
        container.addComponents(select, addButton, editButton);
57
        setPrimaryStyleName(PRIMARY_STYLE);
58
        addDefaultStyles();
59
        return container;
60
    }
61

    
62
    /**
63
     * {@inheritDoc}
64
     */
65
    @Override
66
    public Class<? extends V> getType() {
67
        return type;
68
    }
69

    
70
    /**
71
     * {@inheritDoc}
72
     */
73
    @Override
74
    protected void addDefaultStyles() {
75
        container.addStyleName(ValoTheme.LAYOUT_COMPONENT_GROUP);
76
    }
77

    
78
    /**
79
     * {@inheritDoc}
80
     */
81
    @Override
82
    public FieldGroup getFieldGroup() {
83
        return null;
84
    }
85

    
86
    /**
87
     * @return the select
88
     * @deprecated list specific method should not be in
89
     * the interface
90
     */
91
    @Deprecated
92
    public ListSelect getSelect() {
93
        return select;
94
    }
95

    
96
    /**
97
     * {@inheritDoc}
98
     */
99
    @Override
100
    public void setPropertyDataSource(Property newDataSource) {
101
        select.setPropertyDataSource(newDataSource);
102
    }
103

    
104
    @Override
105
    public Property getPropertyDataSource() {
106
        return select.getPropertyDataSource();
107
    }
108

    
109
    /**
110
     * {@inheritDoc}
111
     */
112
    @Override
113
    public void addClickListenerAddEntity(ClickListener listener) {
114
        addButton.addClickListener(listener);
115
    }
116

    
117
    /**
118
     * {@inheritDoc}
119
     */
120
    @Override
121
    public void setAddButtonEnabled(boolean enabled) {
122
        addButton.setEnabled(enabled);
123
    }
124

    
125
    /**
126
     * {@inheritDoc}
127
     */
128
    @Override
129
    public void addClickListenerEditEntity(ClickListener listener) {
130
        editButton.addClickListener(listener);
131
    }
132

    
133
    /**
134
     * {@inheritDoc}
135
     */
136
    @Override
137
    public void setEditButtonEnabled(boolean enabled) {
138
        editButton.setEnabled(enabled);
139
    }
140

    
141
    /**
142
     * {@inheritDoc}
143
     */
144
    @Override
145
    public void selectNewItem(V bean) {
146

    
147
      select.addItem(bean);
148
      select.select(bean);
149
    }
150

    
151

    
152
}
(14-14/14)