X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/46158111c26726793dfd7a1702a2f3ce8dea9e30..6b4653285642d4a2c080ed1d0eaf69813a594016:/gtk/gtkwidget.lisp diff --git a/gtk/gtkwidget.lisp b/gtk/gtkwidget.lisp index 06bd1a0..9ef9b81 100644 --- a/gtk/gtkwidget.lisp +++ b/gtk/gtkwidget.lisp @@ -20,11 +20,10 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gtkwidget.lisp,v 1.24 2006/09/05 13:37:07 espen Exp $ +;; $Id: gtkwidget.lisp,v 1.28 2007/06/20 10:20:47 espen Exp $ (in-package "GTK") - #-debug-ref-counting (defmethod print-object ((widget widget) stream) (if (and @@ -67,24 +66,31 @@ ((call-next-method)))) -(defmethod compute-signal-function ((widget widget) signal function object) - (declare (ignore signal)) - (if (eq object :parent) - #'(lambda (&rest args) - (if (slot-boundp widget 'parent) - (apply function (widget-parent widget) (rest args)) - ;; Delay until parent is set - (signal-connect widget 'parent-set - #'(lambda (old-parent) - (declare (ignore old-parent)) - (let ((*signal-stop-emission* - #'(lambda () - (warn "Ignoring emission stop in delayed signal handler")))) - (apply function (widget-parent widget) (rest args)))) - :remove t) -; (warn "Widget has no parent -- ignoring signal") - )) - (call-next-method))) +(defparameter *widget-display-as-default-in-signal-handler-p* t) + +(defmethod compute-signal-function ((widget widget) signal function object args) + (let ((wrapper + (if (eq object :parent) + #'(lambda (&rest emission-args) + (let ((all-args (nconc (rest emission-args) args))) + (if (slot-boundp widget 'parent) + (apply function (widget-parent widget) all-args) + ;; Delay until parent is set + (signal-connect widget 'parent-set + #'(lambda (old-parent) + (declare (ignore old-parent)) + (apply #'signal-emit widget signal (rest emission-args))) + :remove t)))) + (call-next-method)))) + (if *widget-display-as-default-in-signal-handler-p* + #'(lambda (&rest args) + (let ((display (when (slot-boundp widget 'window) + (gdk:drawable-display (widget-window widget))))) + (gdk:with-default-display (display) + (apply wrapper args)))) + wrapper))) + + (defun child-property-value (widget slot) (slot-value (widget-child-properties widget) slot)) @@ -340,11 +346,11 @@ widget or a list of containers." for widget in (mklist root) do (cond ((and (slot-boundp widget 'name) (string= name (widget-name widget))) - (return widget)) + (return-from widget-find widget)) ((typep widget 'container) (let ((descendant (widget-find name (container-children widget) nil))) (when descendant - (return descendant)))))) + (return-from widget-find descendant)))))) (when error-p (error "Widget not found: ~A" name))) @@ -411,9 +417,9 @@ widget or a list of containers." (defbinding widget-reset-shapes () nil (widget widget)) -;; (defbinding widget-set-double-buffered () nil -;; (widget widget) -;; (double-buffered boolean)) +(defbinding widget-set-double-buffered () nil + (widget widget) + (double-buffered boolean)) ;; (defbinding widget-set-redraw-on-allocate () nil ;; (widget widget)