BrightSide Workbench Full Report + Source Code
elephant-attach/src/main/java/org/turro/attach/zul/document/DocumentBox.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.attach.zul.document;
19 
20 import org.turro.entities.Entities;
21 import org.turro.i18n.I_;
22 import org.zkoss.zk.ui.event.Event;
23 import org.zkoss.zk.ui.event.EventListener;
24 import org.zkoss.zk.ui.event.Events;
25 import org.zkoss.zk.ui.ext.AfterCompose;
26 import org.zkoss.zul.Hbox;
27 import org.zkoss.zul.Toolbarbutton;
28 
33 public class DocumentBox extends Hbox implements AfterCompose {
34 
35  private String path, name;
36 
37  public DocumentBox() {
38  }
39 
40  public DocumentBox(String path) {
41  this.path = path;
42  name = Entities.getController(path).getName();
43  initialize();
44  }
45 
46  public String getPath() {
47  return path;
48  }
49 
50  public void setPath(String path) {
51  this.path = path;
52  name = Entities.getController(path).getName();
53  }
54 
55  @Override
56  public void afterCompose() {
57  initialize();
58  }
59 
60  private void initialize() {
61  setSpacing("10px");
62  Toolbarbutton wdButton = new Toolbarbutton(I_.get("Create on Working directory"), "/_zul/images/working-dir-move.png");
63  appendChild(wdButton);
64  wdButton.addEventListener(Events.ON_CLICK, new EventListener() {
65  @Override
66  public void onEvent(Event event) throws Exception {
67  //AttachMenu.createWorkDirectoryFor(name, path);
68  }
69  });
70  }
71 
72 }
static IElephantEntity getController(String path)
Definition: Entities.java:78
static String get(String msg)
Definition: I_.java:41