Technology Programming

ColorPicker Overview

The ColorPicker Class

Overview


The ColorPicker class creates a control that allows the user to pick a color from a standard palette of colors or pick a custom color by choosing specific values. 

Initially the ColorPicker control looks like a ChoiceBox (or ComboBox) with the default option of White selected (this is represented by a small icon of the color and its name next to it). When the control is clicked by the user a drop-down window appears with a palette of standard color choices.


 

The palette windows is a grid of small squares, each one representing a particular color, that the user can click on to pick a color. If the user clicks on one of the squares the palette window disappears and the control goes back to its initial look of a ChoiceBox. The button part of the control will have changed to reflect the choice of color. The colors are a predefined set that span the full color spectrum.

Below the palette is a link called Custom Color. If the user clicks on this link a pop-up showing the user a modal dialog window containing different settings for choosing a color. 

The Custom Color dialog window has several parts:
  • A color square with a circle pointer on it. The user can drag the pointer anywhere on the square to fine tune the color they want.
  • A vertical color band which has a rectangular pointer on it. This pointer shows the small color range the color square is displaying. The user can pull the pointer up and down the band to change the color.
  • A set of tabs that offer the user a choice of specifying the color as a HSB, RGB or Web value. The HSB (Hue, Saturation and Brightness) tab creates a color based on those three values. Likewise the RGB (Red, Green Blue) tab creates the color based on the balance of red, green and blue. Lastly the web color is a hash code where every color corresponds to a particular 6 digit hexadecimal number.


  • An opacity slider which the user can use to set the transparency of the custom color.

Import Statement


import javafx.scene.control.ColorPicker;

Constructors


There are two constructors for the ColorPicker control. The first creates a default ColorPicker with the color being set to white:

ColorPicker colors = new ColorPicker();
The second constructor allows the passing of a color value. This color value can be a constant from the Color class:

ColorPicker colors = new ColorPicker(Color.BLANCHEDALMOND);
or a specfic RGB value:

ColorPicker colors = new ColorPicker(Color.rgb(120, 68, 92));
or a specific HSB value:

ColorPicker colors = new ColorPicker(Color.hsb(12, 0.5, 0.8));
or a specific web value:

ColorPicker colors = new ColorPicker(Color.web("#FF00FF"));

Useful Methods


The ColorPicker can be customized to change it's initial appearance away from the ChoiceBox look. Instead it can be made to look like a button or a split menu button (the button part of the control is split from the drop-down part of the control).

To change the look use the getStyleClass method and add a CSS class. For the split menu button look use the "split-button" class:

colors.getStyleClass().add("split-button");
For the button look use the "button" class:

colors.getStyleClass().add("button");
To find out about other JavaFX controls have a look at JavaFX User Interface Controls.
SHARE
RELATED POSTS on "Technology"
WordPress - How to Set up a New Theme to WordPress 3.
WordPress - How to Set up a New Theme to WordPress 3.
Solution of Creative Web Design
Solution of Creative Web Design
The three disciplines of User Experience
The three disciplines of User Experience
Web Design Sheffield Options For Professional Enterprises
Web Design Sheffield Options For Professional Enterprises
Do you have what it takes?
Do you have what it takes?
Segway Cost
Segway Cost
Microsoft Access 2010: What's Coming with Office 2010?
Microsoft Access 2010: What's Coming with Office 2010?
Companies of Web Development in Ireland Provide Designs that Work
Companies of Web Development in Ireland Provide Designs that Work
Penguin Update to Put Red-Flags on Negative SEO
Penguin Update to Put Red-Flags on Negative SEO
Innovative web 2 design templates can make your business famous quickly
Innovative web 2 design templates can make your business famous quickly
Building A Search Engine Friendly Website
Building A Search Engine Friendly Website
Exceptional Advice To Build Up Your Internet Marketing
Exceptional Advice To Build Up Your Internet Marketing
The Benefits of Selecting The Right Hosting Company
The Benefits of Selecting The Right Hosting Company
Is There a Methodology for Making Successful Logos
Is There a Methodology for Making Successful Logos
Benefits of Ruby On Rails Development
Benefits of Ruby On Rails Development
The Power of Colour and Shapes in Your Infant's Life.
The Power of Colour and Shapes in Your Infant's Life.
Advantages of Hiring PSD To HTML Service Providers
Advantages of Hiring PSD To HTML Service Providers
How to Make Responsive Web Design Attractive?
How to Make Responsive Web Design Attractive?
Converting PSD to Responsive HTML
Converting PSD to Responsive HTML
Just a few realy really hints and tips when it comes to website design but look for.
Just a few realy really hints and tips when it comes to website design but look for.

Leave Your Reply

*