After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 83210 - button click, alt+click prefs discussion
button click, alt+click prefs discussion
Status: RESOLVED FIXED
Product: metacity
Classification: Other
Component: general
unspecified
Other other
: Normal enhancement
: future
Assigned To: Metacity maintainers list
Metacity maintainers list
: 87742 90418 93086 94235 111177 140710 317180 364449 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2002-05-28 01:34 UTC by Spider
Modified: 2006-10-23 16:25 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
Patch to add customizable alt+click mouse buttons (9.53 KB, patch)
2002-09-12 22:15 UTC, John McCutchan
none Details | Review
Updated patch with your suggestions (17.68 KB, patch)
2002-09-13 03:39 UTC, John McCutchan
none Details | Review
Updated patch (18.08 KB, patch)
2002-09-20 02:48 UTC, John McCutchan
none Details | Review
patch so far, doesn't have gconf keys, does have most of the rest (35.10 KB, patch)
2002-10-03 22:21 UTC, Havoc Pennington
none Details | Review

Description Spider 2002-05-28 01:34:35 UTC
hello,
  as of the moment metacity will move a window with Alt+left click
("standard") resize it with alt+middle and popup a menu with alt+left.

I'd really like to have theese changeable through a gconf scheme, the same
way the other keygrabbings are changeable.

Or make it sane defaults, Alt-middle lowers a window, alt-left moves it,
and alt-right resize it.. If I want a window-border menu I'll press the
window-border  ;)
Comment 1 xavier.bestel 2002-07-09 13:50:06 UTC
*** Bug 87742 has been marked as a duplicate of this bug. ***
Comment 2 Havoc Pennington 2002-09-12 02:37:52 UTC
*** Bug 93086 has been marked as a duplicate of this bug. ***
Comment 3 John McCutchan 2002-09-12 22:15:42 UTC
Created attachment 11052 [details] [review]
Patch to add customizable alt+click mouse buttons
Comment 4 John McCutchan 2002-09-12 22:18:31 UTC
Hi, I added this functionality to it, I tried to copy the way
things were handled for other prefs.
It adds
/apps/metacity/general/mouse_move_button   1
....................../mouse_resize_button 2
....................../mouse_menu_button   3

Which is what they were before, I modified display.c instead of 
using those hard coded numbers to use the meta_prefs_get_*
functions for the new gconf keys.
It works for me on my system.

Please tell me if I didn't do anything right. This is my first
attempt at a patch for a gnome program.
Comment 5 Havoc Pennington 2002-09-12 22:45:08 UTC
I was considering going the other direction, something like:

 modified_button_one_action = move
 modified_button_two_action = menu

or something. That has a pesky issue that you can't add new actions 
to the set of possible actions without breaking the configuration
setting (as the setting may be shared between multiple metacity
versions). This may be OK as long as old metacity versions gracefully 
fall back to defaults if they see an unknown action name.

In all this we need to be careful to handle the case where the
configuration changes in the midst of an action.
Comment 6 John McCutchan 2002-09-13 03:39:44 UTC
Created attachment 11054 [details] [review]
Updated patch with your suggestions
Comment 7 John McCutchan 2002-09-13 03:41:36 UTC
I updated the patch with your suggestions,
I added modified_mouse_button_one,two,three_action
with the possible values of "menu", "move", "resize" and "default"

The only thing that isn't done is protecting against the changes
happening while an action is taking place. I don't know enough
about the code to fix that. Any pointers would be appreciated.

Please comment on the patch.
Comment 8 Havoc Pennington 2002-09-13 13:34:41 UTC
marking PATCH/high
Comment 9 Rob Adams 2002-09-19 15:51:50 UTC
One more request on this bug -- can we add the ability to pass these
actions through to the window?  GIMP, for one, uses Alt-clicking for a
number of actions that are unavailable to metacity users because of
the Alt-grabbing behavior.
Comment 10 John McCutchan 2002-09-19 18:57:07 UTC
I have already coded up the prefs handling code for this,
but I don't know how to get event_callback() to pass the event on to
the window. Maybe havoc has some suggestions?
Comment 11 John McCutchan 2002-09-19 18:58:58 UTC
Aswell, from the prefs.c code is it possible to get a pointer
to the display/window so that I can call meta_mouse_end_grab_op?
Comment 12 Havoc Pennington 2002-09-19 19:39:21 UTC
end_grab_op doesn't belong in prefs.c I don't think, maybe in a prefs
listener callback.

To pass thru click, there's at least one example in display.c already
(look for XAllowEvents)
Comment 13 John McCutchan 2002-09-19 23:22:32 UTC
Can someone give me and example of how to detect if
alt+mouse button has passed through to an application?

Comment 14 John McCutchan 2002-09-20 02:48:21 UTC
Created attachment 11180 [details] [review]
Updated patch
Comment 15 John McCutchan 2002-09-20 02:49:51 UTC
Here is an updated patch, it *should* work with the passthrough
option but I am not sure. I also added a function in display.c
called meta_display_must_end_grab_op() which just walks
the display list called meta_display_end_grab_op() on each display.
This function is called before we make a change to the gconf
key. This might be overkill I am not sure.
Comment 16 Havoc Pennington 2002-09-26 14:20:31 UTC
*** Bug 94235 has been marked as a duplicate of this bug. ***
Comment 17 Rene Rask 2002-09-27 07:24:58 UTC
I think there's a bug in the patch (id=11180).

I does do something when I set it to "passthrough", but not what I
expected. It doesn't seem to pass through the pointer.
The <alt> keypress seems to be passed through without any problems.

I've been reading up on XGrabPointer and XAllowEvents, but this is a
bit above my understanding of C and XFree.

The problems seems to in the way the pointer is grabbed. That is just
an uneducated guess.

-Rene
Comment 18 John McCutchan 2002-09-30 03:46:01 UTC
I can only fix this if I get a test program. I don't know
anything about X programming but I should be able to figure it out.
Any pointers havoc?
Comment 19 Havoc Pennington 2002-09-30 04:11:33 UTC
The code already passes through plain (unmodified) clicks with
XAllowEvents(), it's just a matter of doing same for modified clicks.

(XGrabButton() does a 'passive grab' which means the mouse events are
frozen when the grabbed button/modifier combo is pressed;
XAllowEvents() says what to do with the frozen events - pass through,
or eat them, or whatever.)
Comment 20 Rene Rask 2002-10-02 08:44:25 UTC
John, you can use Gimp to test it. Paint a stroke or load a picture.
Alt+leftclick should enable the color picker. That should allow you to
drag over the picture while the selected color also updates.

I think what Havoc is saying is that we should use a XGrabPointer to
do 'active grabs' of the pointer. I have no idea where that should go
though.
Comment 21 Havoc Pennington 2002-10-02 13:31:40 UTC
I'm working on merging this patch.
Comment 22 Rene Rask 2002-10-02 15:31:26 UTC
With or without a fix for the 'active grab' vs 'passive grab' problem?

Just so I know if I should go bug a friend about fixing it.
Thanks.
Comment 23 Havoc Pennington 2002-10-02 16:27:47 UTC
I'll try to sort it all out. We'll see ;-)
Comment 24 John McCutchan 2002-10-02 19:37:59 UTC
I am busy with university right now, so I don't have time
to look at the code. But I think this should go in now, and a
new bug should be created to fix the pointer passing issue.
Comment 25 Havoc Pennington 2002-10-02 20:02:30 UTC
I'm working on it. It's complicating the code a fair bit and 
is going to take a bit of time to handle all the issues.
Comment 26 Rene Rask 2002-10-03 07:50:17 UTC
Well, what seems like the logical thing to do for me is simple to
change "passthrough" to "disable". The problem is that metacity tries
to do something with a shortcut that I want completely disable.
So wouldn't it be easier to make a switch that adds these shortcuts
into the ignored modifier mask?
That way metacity does what I want, and errors would be less likely (i
think).
Just a thought.
Comment 27 Havoc Pennington 2002-10-03 22:21:58 UTC
Created attachment 11391 [details] [review]
patch so far, doesn't have gconf keys, does have most of the rest
Comment 28 Havoc Pennington 2002-10-03 22:26:45 UTC
Here's my current patch, it does not yet read gconf keys, but 
does most of the rest. It's pretty likely to break some things 
so it might be nice to try it out. You can simulate changing the 
gconf keys by editing the prefs.c mouse_actions[] default values.

I'm not super happy with this yet, but it's getting sorted out.
Comment 29 Rene Rask 2002-10-04 07:37:14 UTC
Umm.. were can I get 2.4.2 ? It seems that is the version the patch is
against.
Comment 30 Havoc Pennington 2002-10-04 14:23:41 UTC
ftp.gnome.org
Comment 31 Rene Rask 2002-10-05 11:58:48 UTC
Thanks. I got the new source and it compiles with the patch. I have
not been able to make it work as I need though.
"Passthrough" seems to be gone and replaced by "nothing". I've tried
replacing "META_MOUSE_BUTTON_ACTION_MOVE" with
"META_MOUSE_BUTTON_ACTION_NOTHING" in several places and combinations.
It does have an effect, but the effect seems to be the same as the
"passthrough" option had with the old patch.
I just can't make any sense of prefs.c. Please explain what it is I
should change to disable the alt+mouse shortcuts.
Thanks.
Comment 32 Havoc Pennington 2002-10-05 15:04:22 UTC
There's an array near the top of prefs.c called button_actions that
you would call. 

(What I'm mostly interested in for this patch is whether the default 
behavior gets broken as a result of it, rather than whether 
all the config options work yet. We can sort out all the options later
if the basic setup is working.)
Comment 33 Rene Rask 2002-10-05 21:15:21 UTC
I've had no problems with default behavier when testing. I don't do
much testing since I'm working on a Redhat 7.3 install and will
continue to do so until I know that 8.0 is a workable solution.
The good old chicken and egg problem.
I have an old workstation for testing redhat 8.0. Metacity is the only
thing keeping me from trying it out on my workstation since I know I
will be unable to work.
Comment 34 John McCutchan 2002-10-07 22:39:19 UTC
The patch changes the default behaviour for double clicking
the title bar. It shouldn't be toggle maximize. It should toggle shade.
Also, is anything holding the gconf handling code? I could
easily write it up.
Comment 35 Havoc Pennington 2002-10-07 23:14:22 UTC
I attached a patch to http://bugzilla.gnome.org/show_bug.cgi?id=79315
that just makes the modifier for the Alt+foo actions configurable, 
and lets you disable the Alt+foo stuff if you are using Maya or whatever.

I've been thinking about the patch for this bug, and I really don't
like it. It adds substantial code complexity (I can't even convince
myself the patch works right by code inspection alone, and it will
make it harder to add things such as making windows raise on release,
or only when not doing DND). Moreover the patch makes it sort of
inevitable to allow configuring _unmodified_ clicks as well, which I'm
strongly opposed to.

Basically after spending a couple days on this I think I should have 
stuck to the standard metacity line here; this pref is not a good
idea. Maybe if I could figure out a cleaner implementation strategy, 
but I don't like this patch.

I would like to keep the double-click-titlebar aspect
because it isn't complicating much, that's on
http://bugzilla.gnome.org/show_bug.cgi?id=90418
That bug also mentions middle click which creates the same problems
as this patch.

Anyway I'm applying the configure-the-Alt-click-modifier patch 
immediately, but holding off on this bug, I just can't honestly say it
looks like a good idea to me, at least not with the patch as it stands.
Comment 36 John McCutchan 2002-10-07 23:28:21 UTC
What I meant about the double-click title bar configuration
option was that it changed the default and expected behaviour
from shading the window to the windows style of maximize/unmaximize.

And another point with this new patch is that when you alt+left click
(action assigned to move) it doesn't raise or focus the window. That
is the opposite of what everyone is used to.
Comment 37 Havoc Pennington 2002-10-08 01:13:21 UTC
When you say shade is 'expected' I assume you mean by the .5% of
desktop users using a window manager that does that, instead of 
by the 99% that are using Windows? ;-)

For not raising on alt+click, that's the kind of issue that I don't
like about the patch. It makes it hard to figure all that stuff out.
Comment 38 John McCutchan 2002-10-08 01:26:06 UTC
Don't forget the 5% of mac users.
The raising worked with my patch. Since all of this worked
before the patch, just with different mouse buttons it shouldn't
be that difficult to turn most of this into a nice interface
that could cover all the current behaviour and be extensible.
Comment 39 John McCutchan 2002-10-15 05:08:26 UTC
Whats the status of this? Has any patch gone in?
Comment 40 Havoc Pennington 2002-10-15 13:46:48 UTC
Same status:

> Anyway I'm applying the configure-the-Alt-click-modifier patch 
> immediately, but holding off on this bug, I just can't honestly say
> it looks like a good idea to me, at least not with the patch as it 
> stands.

I also want to add a setting for "double-click titlebar" action, 
there's another bug open for that.




Comment 41 Rene Rask 2002-10-17 08:12:38 UTC
I've been using the cvs patch since it was commited and have had no
problems with it :)
One thing that may be a bug in metacity: I have xmms set to "put on
all workspaces". That works, but whenever I change workspaces xmms is
_always_ the app focused instead of the app that was focused when I
left the workspace. Really annoying and maybe a bug.
-Rene
Comment 42 Havoc Pennington 2002-12-08 17:03:26 UTC
*** Bug 90418 has been marked as a duplicate of this bug. ***
Comment 43 Havoc Pennington 2003-02-22 22:43:08 UTC
I'm going to close to clean up the bug list, since I have 
no near-term actions planned for this bug. 
I added a link to it to rationales.txt, 
double-click-titlebar is configurable, Alt+click modifier 
configurable, that's all I plan to do for now.
Comment 44 Havoc Pennington 2003-03-19 19:32:35 UTC
*** Bug 108775 has been marked as a duplicate of this bug. ***
Comment 45 Alex Duggan 2003-03-21 02:23:56 UTC
*** Bug 103812 has been marked as a duplicate of this bug. ***
Comment 46 Havoc Pennington 2003-09-30 19:32:31 UTC
*** Bug 111177 has been marked as a duplicate of this bug. ***
Comment 47 Olav Vitters 2005-09-25 19:29:34 UTC
*** Bug 317180 has been marked as a duplicate of this bug. ***
Comment 48 Elijah Newren 2006-04-10 00:02:51 UTC
*** Bug 140710 has been marked as a duplicate of this bug. ***
Comment 49 Elijah Newren 2006-10-23 16:25:52 UTC
*** Bug 364449 has been marked as a duplicate of this bug. ***