Dgs-dxwindow

From Multi Theft Auto: Wiki
Revision as of 08:13, 16 June 2018 by Thisdp (talk | contribs) (Created page with "DGS Properties is always used to change the gui style and make it more fantastic. This page shows the properties of dgs-dxwindow that you could use. ==Main Functions...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

DGS Properties is always used to change the gui style and make it more fantastic.

This page shows the properties of dgs-dxwindow that you could use.

Main Functions

Properties

titnamecolor

The color which can be translated by tocolor of the title text of the window.

dgsSetProperty(window,"titnamecolor",titnamecolor)
  • titnamecolor: An integer of the color of the title text of the window.

titcolor

The color which can be translated by tocolor of the title of the window.

dgsSetProperty(window,"titcolor",titcolor)
  • titcolor: An integer of the color of the title of the window.

text

This is equivalent to dgsSetText/dgsGetText.

dgsSetProperty(window,"text",text)
  • text: A string of the title text of the window.

textcolor

The color which can be translated by tocolor of the text of the window.

dgsSetProperty(window,"textcolor",textcolor)
  • textcolor: An integer of the color of the title text of the window.

textsize

The scale of the text of the window. Learn More dxDrawText

dgsSetProperty(window,"textsize",{scaleX,scaleY})
  • scaleX: A float of the 2D X scale of the title text of the window.
  • scaleY: A float of the 2D Y scale of the title text of the window.

font

This is equivalent to dgsSetFont/dgsGetFont. Learn More dxDrawText

dgsSetProperty(window,"font",font)

colorcoded

Whether the color code in the title text is enabled or not. Learn More dxDrawText

dgsSetProperty(window,"colorcoded",colorcoded)
  • colorcoded: Set to true to enable embedded #FFFFFF color codes.

movetyp

This property determines the moving type of the window.

dgsSetProperty(window,"movetyp",movetyp)
  • movetyp: A boolean value indicating the state of the moving type.
    • true: User can move the window by clicking anywhere of the window.
    • false: User can move the window by only clicking the title of the window.

movable

This is equivalent to dgsWindowSetMovable, which allows you to specify whether or not a user can move a DGS window.

dgsSetProperty(window,"movable",movable)
  • movable: A boolean value indicating whether user can move the window or not.

sizable

This is equivalent to dgsWindowSetSizable, which allows you to specify whether or not a user can resize a DGS window.

dgsSetProperty(window,"sizable",sizable)
  • movable: A boolean value indicating whether user can resize the window or not.

minSize

This property determines the minimum width and height of the window that users can resize to.

dgsSetProperty(window,"minSize",{minWidth,minHeight})
  • minWidth: An integer of the minimum width of the window.
  • minHeight: An integer of the minimum height of the window.

maxSize

This property determines the maximum width and height of the window that users can resize to.

dgsSetProperty(window,"maxSize",{maxWidth,maxHeight})
  • maxWidth: An integer of the maximum width of the window.
  • maxHeight: An integer of the maximum height of the window.

sidesize

This property determines the border size in pixels which is used to resize the window.

dgsSetProperty(window,"sidesize",sidesize)
  • sidesize: An integer of the size of the border of the window in pixels.

titlesize

This property determines the title size in pixels which is also used to move the window.

dgsSetProperty(window,"titlesize",titlesize)
  • titlesize: An integer of the size of the title of the window in pixels.

ignoreTitleSize

This property determines whether to ignore the window title when calculating window's child elements (useful for gui to dgs).

dgsSetProperty(window,"ignoreTitleSize",ignoreTitleSize)
  • ignoreTitleSize: A bool of the state of whether to ignore the window title.

See Also

General Properties

Unique Properties For DGS Core Elements

Extra Properties For DGS Plugins