Package com.gadglet.client.gwt.ui

Source Code of com.gadglet.client.gwt.ui.ActionLabel

/**
* Copyright (C)  Gadglet .
*
* This file is part of Gadglet
*
* Gadglet is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Gadglet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Gadglet. If not, see <http://www.gnu.org/licenses/>.
*/

package com.gadglet.client.gwt.ui;


import com.google.gwt.event.dom.client.MouseOutEvent;
import com.google.gwt.event.dom.client.MouseOutHandler;
import com.google.gwt.event.dom.client.MouseOverEvent;
import com.google.gwt.event.dom.client.MouseOverHandler;
import com.google.gwt.user.client.ui.Label;

/**
* This class enables to change style and keep an item id
* need to have in the css "gadglet-ActionLabel" and "gadglet-ActionLabel-hover"
*
*/
public class ActionLabel extends Label{
 
  private String itemId;
  public ActionLabel(String title){
    super(title);
   
    addStyleName("gadglet-ActionLabel");
   
    addMouseOutHandler(new MouseOutHandler(){

      @Override
      public void onMouseOut(MouseOutEvent event) {
         mouseOff();
       
      }});


    addMouseOverHandler(
        new MouseOverHandler() {

          @Override
          public void onMouseOver(MouseOverEvent event) {
            mouseOn();
           
            }
     
        });
   
  }
 
  public void mouseOn(){
    removeStyleName("gadglet-ActionLabel");
    setStyleName("gadglet-ActionLabel-hover");
  }
 
  public void mouseOff(){
    removeStyleName("gadglet-ActionLabel-hover");
    setStyleName("gadglet-ActionLabel");
  }
 
  public String getItemId() {
    return itemId;
  }
  public void setItemId(String itemId) {
    this.itemId = itemId;
  }
 
 
 

}
TOP

Related Classes of com.gadglet.client.gwt.ui.ActionLabel

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.