View Javadoc

1   /**
2    * This file Copyright (c) 2012-2014 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.ui.vaadin.gwt.client.tabsheet.tab.connector;
35  
36  import info.magnolia.ui.vaadin.gwt.client.tabsheet.tab.widget.MagnoliaTabWidget;
37  import info.magnolia.ui.vaadin.tabsheet.MagnoliaTab;
38  
39  import com.vaadin.client.ComponentConnector;
40  import com.vaadin.client.ConnectorHierarchyChangeEvent;
41  import com.vaadin.client.communication.StateChangeEvent;
42  import com.vaadin.client.communication.StateChangeEvent.StateChangeHandler;
43  import com.vaadin.client.ui.AbstractSingleComponentContainerConnector;
44  import com.vaadin.shared.ui.Connect;
45  
46  /**
47   * MagnoliaTabConnector.
48   */
49  @Connect(MagnoliaTab.class)
50  public class MagnoliaTabConnector extends AbstractSingleComponentContainerConnector {
51  
52      @Override
53      protected void init() {
54          super.init();
55          addStateChangeHandler("isClosable", new StateChangeHandler() {
56              @Override
57              public void onStateChanged(StateChangeEvent stateChangeEvent) {
58                  getWidget().getLabel().setClosable(getState().isClosable);
59              }
60          });
61  
62          addStateChangeHandler("hasError", new StateChangeHandler() {
63              @Override
64              public void onStateChanged(StateChangeEvent stateChangeEvent) {
65                  getWidget().getLabel().setHasError(getState().hasError);
66              }
67          });
68  
69          addStateChangeHandler("isNotificationHidden", new StateChangeHandler() {
70              @Override
71              public void onStateChanged(StateChangeEvent stateChangeEvent) {
72                  getWidget().getLabel().hideNotification();
73              }
74          });
75  
76          addStateChangeHandler("notification", new StateChangeHandler() {
77              @Override
78              public void onStateChanged(StateChangeEvent stateChangeEvent) {
79                  getWidget().getLabel().updateNotification(getState().notification);
80              }
81          });
82  
83          addStateChangeHandler("isActive", new StateChangeHandler() {
84              @Override
85              public void onStateChanged(StateChangeEvent stateChangeEvent) {
86                  getWidget().getLabel().updateNotification(getState().notification);
87                  if (getState().isActive) {
88                      getWidget().removeStyleName("inactive");
89                  } else {
90                      getWidget().addStyleName("inactive");
91                  }
92  
93              }
94          });
95      }
96  
97      @Override
98      public void updateCaption(ComponentConnector connector) {
99      }
100 
101     @Override
102     public MagnoliaTabWidget getWidget() {
103         return (MagnoliaTabWidget) super.getWidget();
104     }
105 
106     @Override
107     protected MagnoliaTabWidget createWidget() {
108         return new MagnoliaTabWidget(this);
109     }
110 
111     @Override
112     public MagnoliaTabState getState() {
113         return (MagnoliaTabState) super.getState();
114     }
115 
116     @Override
117     protected MagnoliaTabState createState() {
118         return new MagnoliaTabState();
119     }
120 
121     @Override
122     public void onConnectorHierarchyChange(ConnectorHierarchyChangeEvent e) {
123         if (!e.getOldChildren().isEmpty()) {
124             final ComponentConnector oldContent = e.getOldChildren().get(0);
125             getWidget().remove(oldContent.getWidget());
126         }
127 
128         if (getContent() != null) {
129             getWidget().setWidget(getContent().getWidget());
130         }
131     }
132 }