BrightSide Workbench Full Report + Source Code
DossierStatusCtrl.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.dossier;
19 
20 import java.util.HashSet;
21 import java.util.Set;
22 import org.turro.dossier.entity.DossierStatus;
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 DossierStatusCtrl extends Bandbox {
41 
42  private Set<DossierStatus> statusSet = new HashSet<DossierStatus>();
43  private Listbox status;
44 
45  public DossierStatusCtrl() {
46  setReadonly(true);
47  addPopup();
48  }
49 
50  public Set<DossierStatus> getStatusSet() {
51  return statusSet;
52  }
53 
54  public void setStatusSet(Set<DossierStatus> statusSet) {
55  this.statusSet = statusSet;
56  updateCheckMarks();
57  updateText();
58  }
59 
60  private void addPopup() {
61  Bandpopup popup = new Bandpopup();
62  appendChild(popup);
63 
64  status = new Listbox();
65  status.setWidth("300px");
66  status.setMultiple(true);
67  status.setCheckmark(true);
68  Listhead lh = new Listhead();
69  lh.appendChild(new Listheader(I_.get("Status")));
70  status.appendChild(lh);
71  status.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  statusSet.add((DossierStatus) li.getValue());
78  }
79  }
80  Set<Listitem> unselected = ((SelectEvent) event).getUnselectedItems();
81  if(unselected != null) {
82  for(Listitem li : unselected) {
83  statusSet.remove((DossierStatus) li.getValue());
84  }
85  }
86  updateText();
87  }
88  });
89  popup.appendChild(status);
90 
91  for(DossierStatus is : DossierStatus.values()) {
92  Listitem li = new Listitem(I_.byKey(is.toString()));
93  li.setValue(is);
94  status.appendChild(li);
95  }
96  }
97 
98  private void updateCheckMarks() {
99  for(Object obj : status.getChildren()) {
100  if(obj instanceof Listitem) {
101  Listitem li = (Listitem) obj;
102  li.setSelected(statusSet.contains(li.getValue()));
103  }
104  }
105  }
106 
107 
108  private void updateText() {
109  PhraseBuilder pb = new PhraseBuilder();
110  for(Object obj : status.getChildren()) {
111  if(obj instanceof Listitem) {
112  Listitem li = (Listitem) obj;
113  if(li.isSelected()) {
114  pb.addWord(I_.byKey(li.getValue().toString()));
115  pb.addPendingSeparator(",");
116  }
117  }
118  }
119  Events.postEvent(new Event(Events.ON_CHANGE, DossierStatusCtrl.this));
120  setText(pb.toString());
121  }
122 }
123 
void setStatusSet(Set< DossierStatus > statusSet)
static String get(String msg)
Definition: I_.java:41