summaryrefslogtreecommitdiffstats
path: root/doc/classes/ItemList.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix ItemList layout (+EditorFileDialog)Hendrik Brucker2021-08-211-0/+3
|
* Add theme item descriptions to the online documentationYuri Sizov2021-08-041-17/+17
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-232/+116
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-5/+5
|
* Remove trivial examples in the ItemList class documentationHugo Locurcio2021-03-031-20/+1
| | | | See https://github.com/godotengine/godot-docs/issues/4712.
* [CTL] Add missing font outline drawing routines and theme constants.bruvzg2021-02-141-0/+6
|
* Change themes *_color_* to *_*_colorMarcel Admiraal2021-01-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changed: font_color_accel -> font_accelerator_color font_color_bg -> font_unselected_color font_color_disabled -> font_disabled_color font_color_fg -> font_selected_color font_color_hover -> font_hover_color font_color_hover_pressed -> font_hover_pressed_color font_color_pressed -> font_pressed_color font_color_readonly -> font_readonly_color font_color_selected -> font_selected_color font_color_shadow -> font_shadow_color font_color_uneditable -> font_uneditable_color icon_color_disabled -> icon_disabled_color icon_color_hover -> icon_hover_color icon_color_hover_pressed -> icon_hover_pressed_color icon_color_normal -> icon_normal_color icon_color_pressed -> icon_pressed_color Also includes: font_outline_modulate -> font_outline_color tab_fg -> tab_selected tab_bg -> tab_unselected
* Merge pull request #33685 from Scony/improve-item-lists-add-item-methodsRémi Verschelde2021-01-151-4/+5
|\ | | | | ItemList's add_(icon_)item method returns id of added item
| * ItemList's add_(icon_)item method returns id of added itemPawel Lampe2020-07-011-4/+5
| | | | | | | | - docs updated
* | doc: Sync classref with current sourceRémi Verschelde2021-01-041-16/+16
| |
* | Rename unselect to deselectMarcel Admiraal2020-12-211-2/+2
| |
* | [Complex Text Layouts] Add TextServer documentation. Update Font, ↵bruvzg2020-11-261-0/+76
| | | | | | | | CanvasItem, Theme and modified controls documentation.
* | Docs: Port Code Examples to C# (F, G, H, I, J, K, L)HaSa10022020-11-251-9/+20
|/ | | | | | | | | | | | | | | | | | Includes: * File * Geometry2D * HashingContext * HTTPClient * HTTPRequest * Image * Input * int * ItemList * JSONParseResult * KinematicBody2D * LineEdit Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* Improve shortcut formatting in docsYuri Sizov2020-04-101-4/+4
|
* doc: Sync classref for Packed{Int,Float}{32,64}Array additionsRémi Verschelde2020-02-251-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-1/+1
| | | | Handle removal of Pool*Array types and other recent changes.
* doc: Sync classref with current sourceRémi Verschelde2020-02-121-5/+5
| | | | | | | | Lots of internal API changes and some docstrings were lost in the conversion. I manually salvaged many of them but for all the rendering-related ones, an additional pass is needed. Added missing enum bindings in BaseMaterial3D and VisualServer.
* Completes doc for ItemList and TreeHaoyu Qiu2020-02-071-0/+14
|
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* Improves ItemListHaoyu Qiu2019-12-311-8/+23
| | | | | | | * Adds range hint for integer properties * Adds missing descriptions in documentation * Updates some method descriptions to match the actual behavior * Fixes second param name of `set_item_icon_transposed` from `rect` to `transposed`
* doc: Fix parsing of self-closing XML tagsRémi Verschelde2019-09-241-2/+2
| | | | | | | Follow-up to #31925, `<member />` tags just before `</members>` would cause a parsing issue, and we'd never notice that we're no longer parsing members. Also added space before closing `/>`.
* Run doctool after overridden properties changesBojidar Marinov2019-09-041-0/+2
|
* TreeItem: Rename new button disable method to set_button_disabledRémi Verschelde2019-07-091-1/+1
| | | | | | Follow-up to #30408. Also sync classref with current source.
* doc: Remove hardcoded default values from descriptionsRémi Verschelde2019-06-301-4/+4
| | | | They are now generated automatically by doctool.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-18/+18
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-25/+24
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* doc: Sync classref with current sourceRémi Verschelde2019-06-181-5/+5
| | | | Fix a few bugs.
* Document ItemList controlZak2019-06-181-26/+52
|
* Change "Return" to "Returns" where necessary in XML documentationSean Heffernan2019-05-231-3/+3
| | | | | | | | In many of the XML files it had been noted that when the documentation refers to a return value, both "Return" and "Returns" are used. This has now been fixed to only say "Returns". Fixes #28867
* Merge pull request #28125 from KoBeWi/code_true_codeRémi Verschelde2019-04-221-1/+1
|\ | | | | Consistently wrap booleans in [code]
| * Consistently wrap booleans in [code]Tomasz Chabora2019-04-171-1/+1
| |
* | doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|/
* doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|
* doc: Add missing commas after "If true/false"Rémi Verschelde2018-12-201-2/+2
|
* doc: Sync classref with current sourcePoommetee Ketson2018-11-101-0/+18
|
* ItemList signals additional documentationflorian2018-10-031-0/+2
| | | | | | Signals: * item_selected * item_rmb_select
* [Docs] Remove double-spaces from descriptions, as well a couple other small ↵LikeLakers22018-09-231-2/+2
| | | | fixes
* Bind ItemList's item_custom_fg_color methodsRémi Verschelde2018-08-171-0/+18
| | | | Fixes #21086.
* Small doc formating changes and Linux cursor theme noteMichael Alexsander Silva Dias2018-08-051-4/+2
|
* Update classref and docs, fix missing parameters' namePoommetee Ketson2018-04-111-2/+5
|
* doc: Sync classref with current sourceRémi Verschelde2018-04-101-0/+22
|
* Fix converting to tileset crashes Godot if existing file is not tilesetPoommetee Ketson2018-03-231-0/+20
| | | | also make TileSetEditorPlgn tile list updates the preview modulate
* doc: Remove status from hardcoded version stringRémi Verschelde2018-02-271-1/+1
| | | | It has no practical use case and just generates noise for each alpha, beta, etc.
* doc: Update version string in headerRémi Verschelde2018-02-191-1/+1
|
* Added "allow_reselect" property to ItemList and enabled it for the ↵Michael Alexsander Silva Dias2018-02-141-0/+5
| | | | method/help lists.
* doc: Sync with current sourceRémi Verschelde2018-01-251-1/+1
| | | | | | Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
* doc: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* Update docsBojidar Marinov2018-01-121-14/+2
| | | | [ci skip]
* doc: Sync classref after a496dd4d, removing NOEDITOR properties from docRémi Verschelde2017-12-071-2/+0
|