aboutsummaryrefslogtreecommitdiff
path: root/doc/classes/Control.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update doc version strings to 3.0.1Hein-Pieter van Braam2018-02-241-1/+1
|
* Small fixes for the Control description in the docs.Michael Alexsander Silva Dias2018-02-041-3/+3
| | | | (cherry picked from commit 5e0821e867ee2b63297d527d2fe7aaae377a2007)
* doc: Fix references to online tutorials after godotengine/godot-docs#1015Rémi Verschelde2018-01-251-2/+2
|
* 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).
* Fix typos in code and docs with codespellRémi Verschelde2018-01-181-1/+1
| | | | Using v1.11.0 from https://github.com/lucasdemarchi/codespell
* doc: Replace some more "val" with "value" + syncRémi Verschelde2018-01-171-2/+2
|
* Filled tutorial field in most relevent classes.Juan Linietsky2018-01-151-0/+2
| | | | Added tutorial display in doc.
* doc: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* Small fix for Control bindingsletheed2018-01-131-1/+9
|
* Update docsBojidar Marinov2018-01-121-48/+9
| | | | [ci skip]
* Improve Control and Label documentation about mouse filteringRémi Verschelde2018-01-091-6/+6
| | | | Fixes #9657.
* Document Control.mouse_filter and its constants.PJB30052018-01-041-0/+4
|
* doc: Fix enum tags thanks to 2bc6db6Rémi Verschelde2017-11-241-59/+59
|
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-241-302/+0
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-241-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2017-11-241-0/+4
|
* Fix the class docs for the rst-syntax errors.Martin Capitanio2017-11-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | - Generate a correkt rst-syntax for the [/code] inline markup. (http://www.sphinx-doc.org/en/1.6.5/rest.html#inline-markup) - Fix xml souce bugs for the sphinx's rst syntax werrors: class_area.rst:319: WARNING: Inline literal start-string without end-string. class_area2d.rst:287: WARNING: Inline literal start-string without end-string. class_audioserver.rst:287: WARNING: Inline literal start-string without end-string. class_control.rst:509: WARNING: Inline literal start-string without end-string. class_image.rst:422: WARNING: Inline literal start-string without end-string. class_image.rst:434: WARNING: Inline literal start-string without end-string. class_inputevent.rst:74: WARNING: Inline literal start-string without end-string. class_inputeventaction.rst:45: WARNING: Inline literal start-string without end-string. class_inputmap.rst:47: WARNING: Inline literal start-string without end-string. class_kinematicbody.rst:80: WARNING: Inline interpreted text or phrase reference start-string without end-string. class_kinematicbody2d.rst:80: WARNING: Inline interpreted text or phrase reference start-string without end-string. class_line2d.rst:182: WARNING: Inline literal start-string without end-string. class_thread.rst:51: WARNING: Inline literal start-string without end-string. class_treeitem.rst:160: WARNING: Inline literal start-string without end-string.
* Merge pull request #12962 from SaracenOne/gui_focus_next_prevJuan Linietsky2017-11-171-2/+34
|\ | | | | Add manual overrides for focus_next and focus_previous
| * Add manual overrides for focus_next and focus_previous on controls similar ↵Saracen2017-11-161-2/+34
| | | | | | | | to what can already be done with focus neighbours.
* | doc: Remove revision.module_config from version stringRémi Verschelde2017-11-151-1/+1
|/ | | | | It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs.
* Unify degree members and propertiesletheed2017-11-101-3/+3
|
* classref: Sync with current sourceRémi Verschelde2017-10-221-5/+5
| | | | | Also fix hyperlink references to same class as per the guidelines. [ci skip]
* doc: Sync classref with current sourceRémi Verschelde2017-10-111-5/+28
| | | | | Ensure that s/fixed_process/physics_process/ is handled properly. [ci skip]
* [DOCS] Write member, signals and constants in the Control classNathan2017-10-021-34/+103
| | | | | | | | | | I left the following properties and constants out: - rect_clip_content, I think it should let me resize the node below the content's size, but even with the minimum size set to (0,0) Godot won't let me - mouse_filter, grow_horizontal and grow_vertical, same issue, after testing I don't know when they're necessary, so can't document them. - GROW_DIRECTION_BEGIN, GROW_DIRECTION_END, MOUSE_FILTER_STOP, MOUSE_FILTER_PASS, MOUSE_FILTER_IGNORE, constants that correspond to the member variables above For the mouse_filter, I couldn't see what it does in 3.0 alpha 1. For the grow_direction, I can see they might change the size calculation when the node's size changes, but in practice, with containers, I couldn't see a difference. If you know when to use it, please tell me and I'll add them to the PR.
* Rename pos to position in user facing methods and variablesletheed2017-09-201-10/+10
| | | | | | | | | | | Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is.
* doc: Sync classref with current sourceRémi Verschelde2017-09-131-27/+27
| | | | [ci skip]
* Changed the doc class generation to individual files per class. It is also ↵Juan Linietsky2017-09-121-0/+1062
possible to save module files in module directories and the build system will recognize them.