User contributions for Thisdp
Jump to navigation
Jump to search
16 August 2023
- 12:1712:17, 16 August 2023 diff hist −4 Dgs-dxbutton →iconSize
15 August 2023
- 11:4011:40, 15 August 2023 diff hist +1,134 N DgsComboBoxSetItemBackGroundColor Created page with "{{Client function}} This function sets the background color of a specific item of the combo box. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetItemBackGroundColor( element comboBox, int itemIndex, texture imageDefault, texture imageHoving, texture imageSelected ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. *'''colorDefault:''' An integer of the colo..."
- 11:3911:39, 15 August 2023 diff hist +20 DgsComboBoxSetItemBackGroundImage No edit summary current
- 11:3811:38, 15 August 2023 diff hist −7 DgsGridListSetRowBackGroundImage →Required Arguments current
- 11:3811:38, 15 August 2023 diff hist +28 DgsGridListSetRowBackGroundImage No edit summary
- 11:3711:37, 15 August 2023 diff hist +940 N DgsComboBoxGetItemBackGroundColor Created page with "{{Client function}} This function gets the background color of a specific item of the combo box. ==Syntax== <syntaxhighlight lang="lua"> int, int, int dgsComboBoxGetRowBackGroundColor( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. ===Returns=== Returns 3 integers if exist are '''colorDefault''', '''colorHoving''', '''colorSelecte..." current
- 11:3611:36, 15 August 2023 diff hist −21 DgsComboBoxGetItemBackGroundImage →Example current
- 11:3411:34, 15 August 2023 diff hist +2 DgsComboBoxGetItemBackGroundImage No edit summary
- 11:3411:34, 15 August 2023 diff hist +1 DgsComboBoxSetItemBackGroundImage No edit summary
- 11:3411:34, 15 August 2023 diff hist +1,090 N DgsComboBoxGetItemBackGroundImage Created page with "{{Client function}} This function gets the background texture of a specific item of the combo box. ==Syntax== <syntaxhighlight lang="lua"> texture/nil, texture/nil, texture/nil dgsComboBoxGetItemBackGroundImage( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. ===Returns=== Returns 3 textures if exist are '''imageDefault''', '''imag..."
- 11:3311:33, 15 August 2023 diff hist +23 DgsComboBoxSetItemBackGroundImage No edit summary
- 11:3111:31, 15 August 2023 diff hist +1,120 N DgsComboBoxSetItemBackGroundImage Created page with "{{Client function}} This function sets the row background texture of the combo box. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetRowBackGroundImage( element comboBox, int itemIndex, texture imageDefault, texture imageHoving, texture imageSelected ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box that you want to operate. *'''itemIndex:''' An integer of the item index. *'''imageDefault:''' An integer of the image of the item..."
- 11:2911:29, 15 August 2023 diff hist +78 Template:DGS Combo Box Functions No edit summary
- 11:2911:29, 15 August 2023 diff hist +78 Template:DGS Combo Box Functions No edit summary
13 August 2023
- 14:1814:18, 13 August 2023 diff hist +76 Template:DGS Scroll Bar Functions No edit summary
- 13:0513:05, 13 August 2023 diff hist −1 DgsCreateSVG →Syntax
12 August 2023
- 07:5507:55, 12 August 2023 diff hist −33 DgsCreateMenu →Example current
- 07:5507:55, 12 August 2023 diff hist −2 DgsCreateMenu No edit summary
- 07:5407:54, 12 August 2023 diff hist +8 DgsCreateMenu No edit summary
- 07:5407:54, 12 August 2023 diff hist +1 DgsCreateMenu No edit summary
- 07:5307:53, 12 August 2023 diff hist −249 DgsCreateMenu No edit summary
- 07:5207:52, 12 August 2023 diff hist 0 N File:DGS Menu 1.png No edit summary current
- 07:4007:40, 12 August 2023 diff hist +3,006 N DgsCreateMenu Created page with "__NOTOC__ {{Client function}} frame|Example DGS Menu. This function is for creating a DGS menu. DGS menu is '''invisible''' by default. To show menu, use dgsMenuShow. ==Syntax== <syntaxhighlight lang="lua"> element dgsCreateMenu( float x, float y, float width, float height, bool relative [, element parent = nil ] ) </syntaxhighlight> ===Required Arguments=== *'''x:''' A float of the 2D x position of the DGS menu on a player's screen. This i..."
- 07:3507:35, 12 August 2023 diff hist +1,765 N OnDgsMenuHover Created page with "{{Client event}} __NOTOC__ This event is fired when cursor enters an item of a DGS menu. ==Parameters== <syntaxhighlight lang="lua"> dgs-dxmenu subMenu, integer itemUniqueIndex </syntaxhighlight> * '''subMenu''': The sub dgs-dxmenu that the item in. * '''itemUniqueIndex''': The item id. ==Source== The source of this event is the root dgs menu element. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local menu = DGS:dgsCreat..." current
- 07:3407:34, 12 August 2023 diff hist −12 OnDgsMenuSelect No edit summary current
- 07:3407:34, 12 August 2023 diff hist +1,776 N OnDgsMenuSelect Created page with "{{Client event}} __NOTOC__ This event is fired when the item of a DGS menu is clicked. ==Parameters== <syntaxhighlight lang="lua"> dgs-dxmenu subMenu, integer itemUniqueIndex </syntaxhighlight> * '''subMenu''': The sub dgs-dxmenu that the item in. * '''previous''': The item id that last selected. ==Source== The source of this event is the root dgs menu element. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs local menu = DG..."
- 07:2907:29, 12 August 2023 diff hist +40 N Template:DGS Events/Menu Created page with "*onDgsMenuHover *onDgsMenuSelect" current
- 07:2907:29, 12 August 2023 diff hist +113 Template:DGSEVENTS →Grid List
- 07:2507:25, 12 August 2023 diff hist +328 N Template:DGS Menu Functions Created page with "*dgsCreateMenu *dgsMenuShow *dgsMenuHide *dgsMenuAddItem *dgsMenuSetItemCommand *dgsMenuGetItemCommand *dgsMenuSetItemText *dgsMenuGetItemText *dgsMenuSetItemTextSize *dgsMenuGetItemTextSize *dgsMenuSetItemColor *dgsMenuGetItemColor *dgsMenuAddSeparator *dgsMenuRemoveItem" current
- 07:2407:24, 12 August 2023 diff hist +111 Template:DGSFUNCTIONS →Memo
5 August 2023
- 10:4110:41, 5 August 2023 diff hist −32 Template:DGS Combo Box Functions No edit summary
- 10:4010:40, 5 August 2023 diff hist −2 DgsComboBoxRemoveItemImage →Example current
- 10:4010:40, 5 August 2023 diff hist +2 DgsComboBoxGetItemImage →Example current
- 10:4010:40, 5 August 2023 diff hist +2 DgsComboBoxSetItemImage →Example current
- 10:3910:39, 5 August 2023 diff hist +1,065 N DgsComboBoxRemoveItemImage Created page with "{{Client function}} This function remove the image from the combo box item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxRemoveItemImage( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box containing the item you're interested in. *'''itemIndex:''' An integer of the index of the item. ===Returns=== Returns '''true''' if set successfully, ''false'' if one of the arguments was invalid. ==Example==..."
- 10:3810:38, 5 August 2023 diff hist −2 DgsGridListRemoveItemImage No edit summary current
- 10:3710:37, 5 August 2023 diff hist +1,105 N DgsComboBoxGetItemImage Created page with "{{Client function}} This function gets the image from a combo box item. ==Syntax== <syntaxhighlight lang="lua"> texture, int, float, float, float, float dgsComboBoxGetItemImage( element comboBox, int itemIndex ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box containing the item you're interested in. *'''itemIndex:''' An integer of the index of the item. ===Returns=== Returns texture, Color, PosX, PosY, Width, Height if success , ''false'..."
- 10:3510:35, 5 August 2023 diff hist +1,691 N DgsComboBoxSetItemImage Created page with "{{Client function}} This function sets the image on a combo box item. ==Syntax== <syntaxhighlight lang="lua"> bool dgsComboBoxSetItemImage( element comboBox, int itemIndex, element texture [, int color = 0xFFFFFFFF, float offsetX = 0, float offsetY = 0, float width, float height, bool relative ] ) </syntaxhighlight> ===Required Arguments=== *'''comboBox:''' the combo box containing the item you're interested in. *'''itemIndex:''' An integer of the index of the item..."
4 August 2023
- 13:4213:42, 4 August 2023 diff hist +14 DgsLabelGetColor No edit summary current
31 July 2023
- 12:4412:44, 31 July 2023 diff hist −1 Resource:DGS →Features
- 12:4312:43, 31 July 2023 diff hist +5 Resource:DGS →Features
27 July 2023
- 11:2411:24, 27 July 2023 diff hist +2 DgsGridListGetItemData →Example current
- 11:2411:24, 27 July 2023 diff hist −15 DgsGridListGetItemData No edit summary
- 11:2411:24, 27 July 2023 diff hist 0 DgsGridListGetItemData No edit summary
- 11:2311:23, 27 July 2023 diff hist +4 DgsGridListGetItemData No edit summary
- 11:2311:23, 27 July 2023 diff hist +1,391 DgsGridListGetItemData Undo revision 77213 by A7M8D (talk) Tag: Undo
18 July 2023
- 13:0313:03, 18 July 2023 diff hist +1 Resource:DGS No edit summary
- 13:0313:03, 18 July 2023 diff hist −106 Resource:DGS No edit summary
- 12:4512:45, 18 July 2023 diff hist −6 Resource:DGS No edit summary
- 12:4412:44, 18 July 2023 diff hist +110 Resource:DGS No edit summary