Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce OS.set_drag_mode() #23972

Closed
wants to merge 1 commit into from

Conversation

toger5
Copy link
Contributor

@toger5 toger5 commented Nov 25, 2018

same as #16512 but rebased.

@akien-mga
Copy link
Member

Could you squash the commits together?

Note also that it fails building on OSX: https://travis-ci.org/godotengine/godot/jobs/459525810
And there are style issues: https://travis-ci.org/godotengine/godot/jobs/459525806

@akien-mga akien-mga modified the milestones: 3.1, 3.2 Nov 26, 2018
@toger5
Copy link
Contributor Author

toger5 commented Nov 26, 2018

@akien-mga
Couldn't bild on mac myself yesterday so i let travis do it.
I will look into it and squash.

@toger5
Copy link
Contributor Author

toger5 commented Nov 26, 2018

Th error on osx is just a matter of replacing OS with OS_OSX

OS.set_drag_mode() tells the window manager how to handle drag events on your app.
For example, setting DRAG_MODE_MOVE will tell the window manager to start moving your window on drag.
Setting DRAG_MODE_RESIZE_BOTTOMRIGHT will tell the window manger to start resizing your window from the bottom right on drag.

Support for these features is critical for borderless apps which need to support normal window manager interactions.
@toger5 toger5 force-pushed the feature/set-wm-drag-mode branch from 29ab488 to 7a9b1e6 Compare November 26, 2018 11:13
@toger5
Copy link
Contributor Author

toger5 commented Nov 26, 2018

@akien-mga fixed the OS X issue and rebased

@Nolkaloid
Copy link
Contributor

What's the status of this?

@toger5
Copy link
Contributor Author

toger5 commented Jan 11, 2019

confilcts :( ... no time right now. might check it this weekend

Copy link
Member

@bruvzg bruvzg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On Windows resize is a bit laggy (but same is true for normal Godot window resize).
On Linux/X11 resize lags massively, leave dirty traces and sometimes blinks during resize (it's much more noticeable with transparent window, but happens win non transparent too).

@@ -263,6 +264,10 @@ class OS_OSX : public OS_Unix {
void set_mouse_mode(MouseMode p_mode);
MouseMode get_mouse_mode() const;

void set_drag_mode(DragMode p_drag_mode);
OS::DragMode get_drag_mode() const;
bool process_drag_mode(NSEvent *event);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • OS_OSX::process_drag_mode() is defined but not implemented (probably copy-paste from X11)
  • X11 and Windows platforms don't set default drag_mode value (DRAG_MODE_NONE).

}

- (void)mouseUp:(NSEvent *)event {
if (OS_OSX::singleton->drag_mode == OS::DRAG_MODE_MOVE && [event clickCount] == 2) {
OS_OSX::singleton->set_window_maximized(!OS_OSX::singleton->is_window_maximized());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On macOS double-clicking window title should minimize window not maximize, and there's nothing like this implemented on other platforms.

case DRAG_MODE_RESIZE_TOPRIGHT: return HTTOPRIGHT;
case DRAG_MODE_RESIZE_BOTTOMRIGHT: return HTBOTTOMRIGHT;
case DRAG_MODE_RESIZE_BOTTOMLEFT: return HTBOTTOMLEFT;
case DRAG_MODE_NONE: return HTCLIENT;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DRAG_MODE_NONE / default should return DefWindowProcW(hWnd, uMsg, wParam, lParam); instead, returning HTCLIENT will break resizing of normal (non-borderless) windows.

@bruvzg
Copy link
Member

bruvzg commented Feb 18, 2019

And another problem, it's possible to resize borderless window to zero size and render it unusable.
Currently there's no way to prevent it (set minimum size limit or process and reject resize events). Ability to set size limits would be useful for normal windows as well.

@akien-mga akien-mga changed the title Introduce OS.set_drag_mode() rebase Introduce OS.set_drag_mode() Apr 30, 2019
@akien-mga akien-mga removed the request for review from reduz April 30, 2019 13:02
@akien-mga
Copy link
Member

There are quite a few outstanding issues that still need to be addressed.

@akien-mga akien-mga modified the milestones: 3.2, 4.0 Oct 4, 2019
@toger5
Copy link
Contributor Author

toger5 commented Oct 6, 2019

Not sure if i find time for it currently. Maybe someone else need to take care of it.

@aaronfranke
Copy link
Member

@toger5 Is this still desired? If so, this feature would probably need to be redone from scratch, considering the OS and DisplayServer split.

If not, abandoned pull requests will be closed in the future as announced here. I see that above you say that you may not have time for this, if you can't fix this up yourself, feel free to close it.

@toger5
Copy link
Contributor Author

toger5 commented May 23, 2020

I guess we close this one. It is not that propable that I will work on this commit. I think a lot it did was fixing issues with the old system.
It should be redone and the PR can be used as a resource for the person who looks into this.

So I will close for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants