Package net.auroris.ColorPicker.client

Examples of net.auroris.ColorPicker.client.ColorPicker


public class ColorPickerDialog extends PromptDialogBox {

  public ColorPickerDialog(String startHex) {
    super("Color Chooser", "OK", null, "Cancel", false, true);
    setContent(new ColorPicker());
   
    ColorPicker colorPicker = (ColorPicker) getContent();
    try {
      if (startHex != null && startHex.startsWith("#")) {
        startHex = startHex.substring(1);
      }
      colorPicker.setHex(startHex);
    } catch (Exception e) {
    }
  }
View Full Code Here


    } catch (Exception e) {
    }
  }

  public String getHexColor() {
    ColorPicker colorPicker = (ColorPicker) getContent();
    return colorPicker.getHexColor();
  }
View Full Code Here

TOP

Related Classes of net.auroris.ColorPicker.client.ColorPicker

Copyright © 2018 www.massapicom. 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.