BrightSide Workbench Full Report + Source Code
IssueTypeCtrl.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2011 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 package org.turro.dossier.zul.issue;
19 
20 import java.util.HashSet;
21 import java.util.Set;
22 import org.turro.dossier.entity.IssueType;
23 import org.turro.i18n.I_;
24 import org.turro.util.PhraseBuilder;
25 import org.zkoss.zk.ui.event.Event;
26 import org.zkoss.zk.ui.event.EventListener;
27 import org.zkoss.zk.ui.event.Events;
28 import org.zkoss.zk.ui.event.SelectEvent;
29 import org.zkoss.zul.Bandbox;
30 import org.zkoss.zul.Bandpopup;
31 import org.zkoss.zul.Listbox;
32 import org.zkoss.zul.Listhead;
33 import org.zkoss.zul.Listheader;
34 import org.zkoss.zul.Listitem;
35 
40 public class IssueTypeCtrl extends Bandbox {
41 
42  private Set<IssueType> typeSet = new HashSet<>();
43  private Listbox type;
44 
45  public IssueTypeCtrl() {
46  setReadonly(true);
47  addPopup();
48  }
49 
50  public Set<IssueType> getTypeSet() {
51  return typeSet;
52  }
53 
54  public void setTypeSet(Set<IssueType> typeSet) {
55  this.typeSet = typeSet;
56  updateCheckMarks();
57  updateText();
58  }
59 
60  private void addPopup() {
61  Bandpopup popup = new Bandpopup();
62  appendChild(popup);
63 
64  type = new Listbox();
65  type.setWidth("300px");
66  type.setMultiple(true);
67  type.setCheckmark(true);
68  Listhead lh = new Listhead();
69  lh.appendChild(new Listheader(I_.get("Type")));
70  type.appendChild(lh);
71  type.addEventListener(Events.ON_SELECT, new EventListener() {
72  @Override
73  public void onEvent(Event event) throws Exception {
74  Set<Listitem> selected = ((SelectEvent) event).getSelectedItems();
75  if(selected != null) {
76  for(Listitem li : selected) {
77  typeSet.add((IssueType) li.getValue());
78  }
79  }
80  Set<Listitem> unselected = ((SelectEvent) event).getUnselectedItems();
81  if(unselected != null) {
82  for(Listitem li : unselected) {
83  typeSet.remove((IssueType) li.getValue());
84  }
85  }
86  updateText();
87  }
88  });
89 
90  for(IssueType is : IssueType.values()) {
91  Listitem li = new Listitem(I_.byKey(is.toString()));
92  li.setValue(is);
93  type.appendChild(li);
94  }
95 
96  popup.appendChild(type);
97  }
98 
99  private void updateCheckMarks() {
100  for(Object obj : type.getChildren()) {
101  if(obj instanceof Listitem) {
102  Listitem li = (Listitem) obj;
103  li.setSelected(typeSet.contains(li.getValue()));
104  }
105  }
106  }
107 
108 
109  private void updateText() {
110  PhraseBuilder pb = new PhraseBuilder();
111  for(Object obj : type.getChildren()) {
112  if(obj instanceof Listitem) {
113  Listitem li = (Listitem) obj;
114  if(li.isSelected()) {
115  pb.addWord(I_.byKey(li.getValue().toString()));
116  pb.addPendingSeparator(",");
117  }
118  }
119  }
120  Events.postEvent(new Event(Events.ON_CHANGE, IssueTypeCtrl.this));
121  setText(pb.toString());
122  }
123 }
void setTypeSet(Set< IssueType > typeSet)
static String get(String msg)
Definition: I_.java:41