DgsBindToColorPicker

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function allows the possibility to bind a dgs edit/label/component selector/scrollbar to a dgs color picker. The value will be automatically syncronized without writing a lot of code.

Syntax

bool dgsBindToColorPicker( element boundSource, element targetColorPicker, string colorType, string colorAttribute [, bool isStatic = false ] )

Required Arguments

  • boundSource: Can be dgs edit/label/component selector/scrollbar.
  • targetColorPicker: The target color picker to bind.
  • colorType: The color type. Available values are as follows:
    • RGB
    • HSL
    • HSV
  • colorAttribute: The color attribute. Available values are as follows:
    • RGB:
      • R
      • G
      • B
    • HSL:
      • H
      • S
      • L
    • HSV:
      • H
      • S
      • V

Optional Arguments

  • colorType: The color type. Available values are as follows:
    • RGB:
      • color1: A number ranges from 0 to 255, indicates the R (red) value of the color.
      • color2: A number ranges from 0 to 255, indicates the G (green) value of the color.
      • color3: A number ranges from 0 to 255, indicates the B (blue) value of the color.
    • HSL:
      • color1: A number ranges from 0 to 360, indicates the H (hue) value of the color.
      • color2: A number ranges from 0 to 100, indicates the S (saturation) value of the color.
      • color3: A number ranges from 0 to 100, indicates the L (lightness) value of the color.
    • HSV:
      • color1: A number ranges from 0 to 360, indicates the H (hue) value of the color.
      • color2: A number ranges from 0 to 100, indicates the S (saturation) value of the color.
      • color3: A number ranges from 0 to 100, indicates the V (value) value of the color.

Returns

Returns three integers depends on color type if successful, false otherwise.

Example

DGS = exports.dgs --get exported functions from dgs

local cp = DGS:dgsCreateColorPicker("HSVRing",50,50,300,300,false)
local H,S,L = DGS:dgsColorPickerGetColor(cp,"HSL")
outputChatBox("H:"..H..";S:"..S..";V:"..V)
local R,G,B = DGS:dgsColorPickerGetColor(cp,"RGB")
outputChatBox("R:"..R..";G:"..G..";B:"..B)

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips