]> Dogcows Code - chaz/openbox/commitdiff
can resize now too. compress motion events.
authorDana Jansens <danakj@orodu.net>
Wed, 18 Dec 2002 16:31:16 +0000 (16:31 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 18 Dec 2002 16:31:16 +0000 (16:31 +0000)
src/actions.cc
src/actions.hh
src/client.cc

index 2c527b799f25138124d69b0d7ed63a0bc2e08705..c13dc7f5de78c2df2376efc6ef0ff4887a368b62 100644 (file)
@@ -42,7 +42,10 @@ void OBActions::insertPress(const XButtonEvent &e)
     _posqueue[i] = _posqueue[--i];
   _posqueue[0] = a;
   a->button = e.button;
-  a->pos.setPoint(e.x, e.y);
+  a->pos.setPoint(e.x_root, e.y_root);
+
+  OBClient *c = Openbox::instance->findClient(e.window);
+  a->clientarea = c->area();
 }
 
 void OBActions::removePress(const XButtonEvent &e)
@@ -169,20 +172,52 @@ void OBActions::motionHandler(const XMotionEvent &e)
 {
   if (!e.same_screen) return; // this just gets stupid
 
+  int x_root = e.x_root, y_root = e.y_root;
+  
+  // compress changes to a window into a single change
+  XEvent ce;
+  while (XCheckTypedEvent(otk::OBDisplay::display, e.type, &ce)) {
+    if (ce.xmotion.window != e.window) {
+      XPutBackEvent(otk::OBDisplay::display, &ce);
+      break;
+    } else {
+      x_root = e.x_root;
+      y_root = e.y_root;
+    }
+  }
+
+
   OBWidget *w = dynamic_cast<OBWidget*>
     (Openbox::instance->findHandler(e.window));
 
-  _dx = e.x - _posqueue[0]->pos.x();
-  _dy = e.y - _posqueue[0]->pos.y();
+  _dx = x_root - _posqueue[0]->pos.x();
+  _dy = y_root - _posqueue[0]->pos.y();
   
   // XXX: i can envision all sorts of crazy shit with this.. gestures, etc
   printf("GUILE: MOTION: win %lx type %d  modifiers %u x %d y %d\n",
          (long)e.window, (w ? w->type():-1), e.state, _dx, _dy);
 
-  if (w && (w->type() == OBWidget::Type_Titlebar ||
-            w->type() == OBWidget::Type_Label)) {
-    OBClient *c = Openbox::instance->findClient(e.window);
-    if (c) c->move(c->area().x() + _dx, c->area().y() + _dy);
+  OBClient *c = Openbox::instance->findClient(e.window);
+  if (w && c) {
+    switch (w->type()) {
+    case OBWidget::Type_Titlebar:
+    case OBWidget::Type_Label:
+      c->move(_posqueue[0]->clientarea.x() + _dx,
+              _posqueue[0]->clientarea.y() + _dy);
+      break;
+    case OBWidget::Type_LeftGrip:
+      c->resize(OBClient::TopRight,
+                _posqueue[0]->clientarea.width() - _dx,
+                _posqueue[0]->clientarea.height() + _dy);
+      break;
+    case OBWidget::Type_RightGrip:
+      c->resize(OBClient::TopLeft,
+                _posqueue[0]->clientarea.width() + _dx,
+                _posqueue[0]->clientarea.height() + _dy);
+      break;
+    default:
+      break;
+    }
   }
 }
 
index 9f65f7ed3ef284c055cacc6a6b6d0af0c556a692..7168fce459a95c1c58a30ab56b9b781d4dbab952 100644 (file)
@@ -7,6 +7,7 @@
 */
 
 #include "otk/point.hh"
+#include "otk/rect.hh"
 #include "otk/eventhandler.hh"
 
 extern "C" {
@@ -32,6 +33,7 @@ public:
   struct ButtonPressAction {
     unsigned int button;
     otk::Point pos;
+    otk::Rect clientarea;
     ButtonPressAction() { button = 0; }
   };
   
index 914672503178a16763503c5b1985dc6668fb3a89..8a6c1b11df7fd328c11f8458335fb1e3cb42e97b 100644 (file)
@@ -778,6 +778,11 @@ void OBClient::resize(Corner anchor, int w, int h)
   w -= _base_size.x(); 
   h -= _base_size.y();
 
+  // for interactive resizing. have to move half an increment in each
+  // direction.
+  w += _size_inc.x() / 2;
+  h += _size_inc.y() / 2;
+
   // is the window resizable? if it is not, then don't check its sizes, the
   // client can do what it wants and the user can't change it anyhow
   if (_min_size.x() <= _max_size.x() && _min_size.y() <= _max_size.y()) {
This page took 0.026537 seconds and 4 git commands to generate.