summaryrefslogtreecommitdiffstats
path: root/scene/gui/view_panner.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #85473 from miv391/fix-horizontal-mouse-wheeling-in-2d-viewYuri Sizov2023-12-191-8/+10
|\ | | | | | | Fix horizontal scroll in editor's 2D view
| * Fix horizontal mouse wheeling in 2D editor viewMika Viskari2023-11-281-8/+10
| |
* | Trigger zoom from pan gestures when pressing ctrlAitor Guevara2023-11-011-0/+11
|/ | | | | | Enables zooming using pan + ctrl on macOS trackpads / Magic Mouse. Windows and Linux don't emit pan gesture events, so shouldn't be affected. Not tested on Android.
* Add vararg call() method to C++ Callablekobewi2023-10-051-20/+9
|
* Fix the issue preventing dragging in the 2D and visual shader editorFredia Huya-Kouadio2023-03-191-1/+6
|
* Fix panning via InputEventPanGestureGilles Roudière2023-02-081-1/+1
| | | | Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* Add gesture to ViewPanner and simplify a bit its APIGilles Roudière2023-01-231-24/+60
|
* Use BitField<> in core type masksJuan Linietsky2023-01-081-1/+1
| | | | | | | | * All core types masks are now correctly marked as bitfields. * The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks. * Most bitmask operations replaced by functions in BitField<> * Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is. * Documentation and API dump updated to reflect bitfields in core types.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* fixed holding alt while zooming zooms in by 2 increments.MladoniSzabi2022-10-131-1/+3
|
* Remove Signal connect bindsJuan Linietsky2022-07-291-1/+1
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Fix that slow mouse wheel scroll has no zoom effect on 2D editorC.Even2022-04-011-1/+1
| | | | | | * scroll_vec in ViewPanner::gui_input is multiplied by float factors, so it should be a Vector2 rather than Vector2i * Fixes #57423
* Fix 2D Pan Toolkobewi2022-01-241-1/+10
|
* Minor tweaks and fixes to panningkobewi2022-01-231-3/+3
|
* Add ViewPanner to 2D editorkobewi2022-01-211-34/+67
|
* Add ViewPanner to more editorskobewi2022-01-141-3/+9
|
* Unify panning in sub-editors and make it configurablekobewi2022-01-111-0/+136