summaryrefslogtreecommitdiffstats
path: root/doc/classes/AcceptDialog.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add minimum width/height to dialog buttonsHugo Locurcio2024-04-171-0/+6
| | | | | | | | | This makes buttons with short texts such as "OK" or "Close" easier to click, especially on a touchscreen. This is exposed to projects via `buttons_min_width` and `buttons_min_height` theme items in AcceptDialog (and therefore ConfirmationDialog and FileDialog), with the default values being 0 to preserve compatibility with existing projects.
* Fix some AcceptDialog argument typeskobewi2024-03-121-2/+2
|
* [DisplayServer] Add method to estimate window title bar size.bruvzg2023-10-031-0/+1
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Overhaul the top sections of the class reference (GUI classes)VolTer2023-05-281-2/+2
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Convert en_GB spelling to en_US with codespellRémi Verschelde2023-01-231-2/+2
|
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-021-1/+1
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* Make AcceptDialog and derivatives utilize StyleBox fullyYuri Sizov2022-09-071-6/+3
|
* Add dumb and manual theme caching systems to WindowYuri Sizov2022-09-011-0/+6
|
* [doc] Use "param" instead of "code" to refer to parameters (8)Andy Maloney2022-08-121-4/+4
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-7/+7
|
* Add ok_button_text to AcceptDialog and cancel_button_text to ConfirmationDialogFireForge2022-07-091-0/+4
|
* Add Blender install autodetection and configuration.reduz2022-04-011-0/+2
| | | | | | | | | | | | | This PR is a continuation to #54886 * Changed Blender path editor setting from binary to installation. * Add a class to query whether the format is supported. * This class allows to create proper editors to configure support. **NOTE**: This PR only provides autodetection on Linux. Code needs to be added for Windows and MacOS to autodetect the Blender installation. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com>
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Make overridden properties link to parent definitionYuri Sizov2021-12-031-5/+5
| | | | Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com>
* Add warnings to methods that give access to internal nodesYuri Sizov2021-10-101-0/+2
|
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* Add theme item descriptions to the online documentationYuri Sizov2021-08-041-1/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-26/+13
| | | | | | | | 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.
* Multiple cosmetic fixes for embedded windowsMichael Alexsander2021-07-271-0/+5
|
* Add AcceptDialog::remove_button methodkleonc2021-07-061-0/+11
|
* Use a more specific type for AcceptDialog register_text_enterAaron Franke2021-06-031-1/+1
|
* Rename AcceptDialog get_ok() to get_ok_button()Marcel Admiraal2020-12-141-3/+3
| | | | | | Also renames: - AcceptDialog add_cancel() to add_cancel_button() - ConfirmationDiaglog get_cancel() to get_cancel_button()
* Add C# code examples to the docsHaSa10022020-09-261-0/+1
| | | | | | | | | | | | | | | | | | | | Only existing GDScript code examples are converted and added to the docs. This is the first batch include classes beginning with A and B. Included classes: * AcceptDialog * AESContext * Animation * AnimationNodeStateMachine * AnimationNodeStateMachinePlayback * AnimationNodeStateMachineTransition * Array * ArrayMesh * AStar * AStar2D * Bool * Button
* Environment: Refactor code for readability + moreRémi Verschelde2020-07-011-0/+1
| | | | | | | | | | | | - Makes all boolean setters/getters consistent. - Fixes bug where `glow_hdr_bleed_scale` was not used. - Split CameraEffects to their own source file. - Reorder all Environment method and properties declarations, definitions and bindings to be consistent with each other and with the order of property bindings. - Bind missing enum values added with SDFGI. - Remove unused SDFGI enhance_ssr boolean. - Sync doc changes after SDFGI merge and other misc changes.
* doc: Sync classref with DisplayServer/Window changesRémi Verschelde2020-03-311-2/+9
|
* doc: Sync classref with StringName/Callable changesRémi Verschelde2020-02-221-1/+1
|
* 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.
* doc: Fix parsing of self-closing XML tagsRémi Verschelde2019-09-241-1/+1
| | | | | | | 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/+1
|
* doc: Remove hardcoded default values from descriptionsRémi Verschelde2019-06-301-2/+2
| | | | They are now generated automatically by doctool.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-3/+3
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-5/+5
| | | | | | | | | | | | | - 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
* Merge pull request #27389 from YeldhamDev/acceptdiag_label_wrapRémi Verschelde2019-06-191-1/+4
|\ | | | | Add option to enable autowrapping for label inside 'AcceptDialog'
| * Add option to enable autowrapping for label inside 'AcceptDialog'Michael Alexsander Silva Dias2019-04-041-1/+4
| |
* | Change "Return" to "Returns" where necessary in XML documentationSean Heffernan2019-05-231-2/+2
| | | | | | | | | | | | | | | | 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
* | 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-1/+1
|
* Doc: Clarify usage of dialog_hide_on_ok and caveat for FileDialogRémi Verschelde2018-08-151-2/+3
| | | | Fixes #20817.
* [docs] fix links in class docsKelly Thomas2018-05-171-1/+1
|
* 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
|
* 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
|
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-241-32/+0
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-241-1/+1
|