Class ColorSelector
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
The ColorSelector is a widget to set a series of colors. It also allows to load/save colors from/to the configuration with a unique identifier.
[Obsolete("This has been deprecated in API12")]
public class ColorSelector : Layout, IAccessibleObject
- Inheritance
- Implements
Remarks
By default, the colors are loaded/saved from/to configuration using the "default" identifier. The colors can be picked by the user from the color set by clicking on individual color items on the palette, or by selecting it from the selector.
Constructors
View SourceColorSelector(EvasObject)
Creates and initializes a new instance of the ColorSelector class.
Declaration
[Obsolete("This has been deprecated in API12")]
public ColorSelector(EvasObject parent)
Parameters
| Type | Name | Description |
|---|---|---|
| EvasObject | parent |
Properties
View SourceMode
Gets or sets the Colorselector's mode.
Declaration
[Obsolete("This has been deprecated in API12")]
public ColorSelectorMode Mode { get; set; }
Property Value
| Type | Description |
|---|---|
| ColorSelectorMode |
Opacity
Gets the Alpha of a default Color class (value is -1).
Declaration
[Obsolete("This has been deprecated in API12")]
public override int Opacity { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Overrides
View SourcePaletteName
Gets or sets the current palette's name.
Declaration
[Obsolete("This has been deprecated in API12")]
public string PaletteName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
SelectedColor
Gets or sets the color of colorselector.
Declaration
[Obsolete("This has been deprecated in API12")]
public Color SelectedColor { get; set; }
Property Value
| Type | Description |
|---|---|
| Color |
Methods
View SourceAddPaletteColor(Color)
Adds a new color item to the palette.
Declaration
[Obsolete("This has been deprecated in API12")]
public ColorSelectorItem AddPaletteColor(Color color)
Parameters
| Type | Name | Description |
|---|---|---|
| Color | color | The color item to add. |
Returns
| Type | Description |
|---|---|
| ColorSelectorItem | A new color palette Item. |
ClearPalette()
Clears the palette items.
Declaration
[Obsolete("This has been deprecated in API12")]
public void ClearPalette()
CreateHandle(EvasObject)
Creates a widget handle.
Declaration
[Obsolete("This has been deprecated in API12")]
protected override nint CreateHandle(EvasObject parent)
Parameters
| Type | Name | Description |
|---|---|---|
| EvasObject | parent | Parent EvasObject. |
Returns
| Type | Description |
|---|---|
| nint | Handle IntPtr. |
Overrides
Events
View SourceColorChanged
ColorChanged will be triggered when the SelectedColor is changed.
Declaration
[Obsolete("This has been deprecated in API12")]
public event EventHandler<ColorChangedEventArgs> ColorChanged
Event Type
| Type | Description |
|---|---|
| EventHandler<ColorChangedEventArgs> |