]> Dogcows Code - chaz/openbox/commitdiff
sync with bb-cvs: re-add support for alt-button2, fix some off by 2's temorarily
authorDana Jansens <danakj@orodu.net>
Fri, 5 Jul 2002 23:56:10 +0000 (23:56 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 5 Jul 2002 23:56:10 +0000 (23:56 +0000)
nls/fr_FR/Configmenu.m
src/Window.cc

index f5579bb1c9baefb4c92850f36b12a8d2ecbf0948..cfa206a32377478ea3ec4e4944643091412c4763 100644 (file)
@@ -13,9 +13,9 @@ $ #OpaqueMove
 $ #FullMax
 # Maximisation complète
 $ #FocusNew
-# Clavier à la nouvelle fenêtre
+# Attribuer le clavier à la nouvelle fenêtre
 $ #FocusLast
-# Clavier à la dernière fenêtre
+# Attribuer le clavier en changeant d'espace de travail
 $ #ClickToFocus
 # Cliquer pour obtenir le clavier
 $ #SloppyFocus
index be571e3ca4a9d05f887e04251e3e0cf9a8589f38..1f06df63c5a2eaf50b77c37982d849c84953f0b0 100644 (file)
@@ -847,6 +847,10 @@ void BlackboxWindow::grabButtons(void) {
                          ButtonReleaseMask | ButtonMotionMask, GrabModeAsync,
                          GrabModeAsync, frame.window,
                          blackbox->getLowerRightAngleCursor());
+  // alt+middle lowers the window
+  blackbox->grabButton(Button2, Mod1Mask, frame.window, True,
+                       ButtonReleaseMask, GrabModeAsync, GrabModeAsync,
+                       frame.window, None);
 }
 
 
@@ -855,6 +859,7 @@ void BlackboxWindow::ungrabButtons(void) {
     blackbox->ungrabButton(Button1, 0, frame.plate);
 
   blackbox->ungrabButton(Button1, Mod1Mask, frame.window);
+  blackbox->ungrabButton(Button2, Mod1Mask, frame.window);
   blackbox->ungrabButton(Button3, Mod1Mask, frame.window);
 }
 
@@ -2216,7 +2221,7 @@ void BlackboxWindow::applyGravity(Rect &r) {
   case NorthEastGravity:
   case SouthEastGravity:
   case EastGravity:
-    r.setX(client.rect.x() - frame.margin.left - frame.margin.right);
+    r.setX(client.rect.x() - frame.margin.left - frame.margin.right + 2);
     break;
 
   case ForgetGravity:
@@ -2243,7 +2248,7 @@ void BlackboxWindow::applyGravity(Rect &r) {
   case SouthWestGravity:
   case SouthEastGravity:
   case SouthGravity:
-    r.setY(client.rect.y() - frame.margin.top - frame.margin.bottom);
+    r.setY(client.rect.y() - frame.margin.top - frame.margin.bottom + 2);
     break;
 
   case ForgetGravity:
@@ -2279,7 +2284,7 @@ void BlackboxWindow::restoreGravity(Rect &r) {
   case NorthEastGravity:
   case SouthEastGravity:
   case EastGravity:
-    r.setX(frame.rect.x() + frame.margin.left + frame.margin.right);
+    r.setX(frame.rect.x() + frame.margin.left + frame.margin.right - 2);
     break;
 
   case ForgetGravity:
@@ -2306,7 +2311,7 @@ void BlackboxWindow::restoreGravity(Rect &r) {
   case SouthWestGravity:
   case SouthEastGravity:
   case SouthGravity:
-    r.setY(frame.rect.y() + frame.margin.top + frame.margin.bottom);
+    r.setY(frame.rect.y() + frame.margin.top + frame.margin.bottom - 2);
     break;
 
   case ForgetGravity:
@@ -2821,6 +2826,9 @@ void BlackboxWindow::buttonReleaseEvent(const XButtonEvent *re) {
     endMove();
   } else if (flags.resizing) {
     endResize();
+  } else if (re->window == frame.window) {
+    if (re->button == 2 && re->state == Mod1Mask)
+      XUngrabPointer(blackbox->getXDisplay(), CurrentTime);
   }
 }
 
This page took 0.037824 seconds and 4 git commands to generate.