summaryrefslogtreecommitdiffstats
path: root/editor/editor_help.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* Documentation search fixesGregory Basile2021-06-161-1/+1
| | | | | | Updates rich_text_label so that the built-in documentation can be searched Previously, it would only find the first result and would not select other results Renames "_entered" functions to "_submitted"
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Refactor DocData into core and editor (DocTools) partsThakee Nathees2020-12-021-3/+3
|
* Documentation generation for GDScriptThakee Nathees2020-11-291-0/+1
| | | | | | | | | | | | | | | | | | - ClassDoc added to GDScript and property reflection data were extracted from parse tree - GDScript comments are collected from tokenizer for documentation and applied to the ClassDoc by the GDScript compiler - private docs were excluded (name with underscore prefix and doesn't have any doc comments) - default values (of non exported vars), arguments are extraced from the parser - Integrated with GDScript 2.0 and new enums were added. - merge conflicts fixed
* Remove unused unhandled_key_input method in EditorHelp. Search popup and ↵Eric M2020-11-231-2/+0
| | | | focus is handled by an external MenuButton shortcut.
* Remove empty lines around braces with the formatting scriptAaron Franke2020-11-161-1/+0
|
* Remove ToolButton in favor of ButtonHugo Locurcio2020-06-191-2/+2
| | | | | | | | | | | ToolButton has no redeeming differences with Button; it's just a Button with the Flat property enabled by default. Removing it avoids some confusion when creating GUIs. Existing ToolButtons will be converted to Buttons, but the Flat property won't be enabled automatically. This closes https://github.com/godotengine/godot-proposals/issues/1081.
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-2/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Remove unnecessary panel in EditorHelpBitMichael Alexsander2020-04-061-2/+2
|
* Reworked tooltips to use the popup system.Juan Linietsky2020-03-261-0/+2
|
* Move DocData and Collada out of their subfoldersRémi Verschelde2020-03-241-1/+1
| | | | | | | | Now that the unused DocDump was removed, the `editor/doc` subfolder is redundant. Similarly, there's no reason for Collada to have a subfolder for itself when glTF or OBJ don't.
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-3/+3
| | | | | | | | | | For us, it practically only changes the fact that `A<A<int>>` is now used instead of the C++03 compatible `A<A<int> >`. Note: clang-format 10+ changed the `Standard` arguments to fully specified `c++11`, `c++14`, etc. versions, but we can't use `c++17` now if we want to preserve compatibility with clang-format 8 and 9. `Cpp11` is still supported as deprecated alias for `Latest`.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Add shortcut Shift + F3 to search pervious in the built-in docsMarqus2019-10-101-2/+2
| | | | | | | | | | | | | | | | | When using the built-in docs, Godot would not support the shortcut "Shift + F3" to search for the previous occurrence of the search entry text, thus causing an inconsistent behaviour when using shortcuts in the "ScriptEditor" compared to using them in the "ScriptTextEditor". The previous parameter of the function "EditorHelp::_search()" in the class "editor_help" seems to be unused, thus replaced with a bool representing to search for previous search entry text or not. By adding the shortcut to Godot's "ScriptEditor", this commit now improves Godot's consistensy when using shortcuts. Fixes #31147. Co-Authored-By: Oscar Ferm <oscfer-6@student.ltu.se>
* Add horizontal margins to the editor help based on widthHugo Locurcio2019-08-231-0/+1
| | | | | This decreases the number of characters per line, and therefore helps make the editor help more readable.
* Show matches found when searching the docsMichael Alexsander Silva Dias2019-08-091-3/+6
|
* Fix description size in "New Node" dialogMichael Alexsander Silva Dias2019-02-171-2/+2
|
* General cleanup of script and doc search barsMichael Alexsander Silva Dias2019-02-101-6/+3
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Unify editor class and reference searchRay Koopa2018-11-201-86/+3
| | | | Co-authored-by: Michael Alexsander Silva Dias <michaelalexsander@protonmail.com>
* Fix warnings on virtual methods [-Woverloaded-virtual] ↵Rémi Verschelde2018-10-021-3/+3
| | | | | | | | | | | | | | | | | | | | | | | [-Wdelete-non-virtual-dtor] Fixes the following Clang 7 warnings: ``` editor/editor_help.h:123:7: warning: 'EditorHelpIndex::popup' hides overloaded virtual function [-Woverloaded-virtual] editor/editor_help.h:95:7: warning: 'EditorHelpSearch::popup' hides overloaded virtual function [-Woverloaded-virtual] editor/editor_help.h:96:7: warning: 'EditorHelpSearch::popup' hides overloaded virtual function [-Woverloaded-virtual] editor/plugins/curve_editor_plugin.h:141:15: warning: 'CurvePreviewGenerator::generate' hides overloaded virtual function [-Woverloaded-virtual] editor/plugins/script_editor_plugin.h:70:7: warning: 'ScriptEditorQuickOpen::popup' hides overloaded virtual function [-Woverloaded-virtual] editor/quick_open.h:69:7: warning: 'EditorQuickOpen::popup' hides overloaded virtual function [-Woverloaded-virtual] main/tests/test_io.cpp:53:15: warning: 'TestIO::TestMainLoop::input_event' hides overloaded virtual function [-Woverloaded-virtual] servers/audio/effects/audio_effect_record.h:69:15: warning: 'AudioEffectRecordInstance::process_silence' hides overloaded virtual function [-Woverloaded-virtual] core/os/memory.h:119:2: warning: destructor called on non-final 'ContextGL_X11' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] core/os/memory.h:119:2: warning: destructor called on non-final 'EditorScriptCodeCompletionCache' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] core/os/memory.h:119:2: warning: destructor called on non-final 'Engine' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] core/os/memory.h:119:2: warning: destructor called on non-final 'PhysicalBone::JointData' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] core/os/memory.h:119:2: warning: destructor called on non-final 'VisualServerScene' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] core/os/memory.h:119:2: warning: destructor called on non-final 'VisualServerViewport' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] ```
* display some constants as hexJuan Linietsky2018-08-211-0/+2
|
* -Fix tooltips in inspector, now they show as rich text.Juan Linietsky2018-07-201-2/+3
|
* [Doc] Fixes in find barGuilherme Felipe2018-05-161-0/+2
| | | | | - Automatically select all text when find bar called. - Adjust the size height when first displayed.
* Change from "search dialog" to "search bar" on help screenGuilherme Silva2018-05-081-1/+45
|
* Ctrl+Clicking a enum now scrolls down to it in the docs.Felix Yang2018-04-031-0/+1
|
* Fix for a possible compile error under OS XMarcelo Fernandez2018-02-141-1/+24
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Docs methods grouping by prefixpoke10242017-12-161-0/+12
|
* Make "Search Help" more responsivepoke10242017-12-061-0/+3
|
* Several fixed to editor doc.Daniel J. Ramirez2017-09-141-0/+4
| | | | | | Improved style Fixed editor help issues Added editor help index
* Fixed some inconsistent styles, plus some cleanupDaniel J. Ramirez2017-09-121-1/+0
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Changed MethodBind API to request information from methods. It's much claner ↵Juan Linietsky2017-08-231-1/+2
| | | | | | now. Also changed PropertyInfo to include informatino about class names.
* Removed EditorHelp::_scroll_changedWilson E. Alvarez2017-08-231-1/+0
|
* Updated function argument namesWilson E. Alvarez2017-08-121-2/+2
|
* editor: update helps and script panel on theme could change.toger52017-08-041-0/+1
|
* EditorHelp: Help>Class now switch to script editorPoommetee Ketson2017-05-311-2/+0
|
* Removal of InputEvent as built-in Variant type..Juan Linietsky2017-05-201-4/+4
| | | | this might cause bugs I haven't found yet..
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-58/+39
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-0/+222
The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful.