Mercurial > hg > xemacs-beta
view lisp/gtk-package.el @ 1458:60c5c2f74650
[xemacs-hg @ 2003-05-05 04:52:40 by youngs]
2003-05-05 Steve Youngs <youngs@xemacs.org>
* lwlib-Xm.c (xm_update_one_widget): Only call
`xm_update_progress' if `LWLIB_WIDGETS_MOTIF' is defined.
author | youngs |
---|---|
date | Mon, 05 May 2003 04:52:40 +0000 |
parents | 7039e6323819 |
children | db7068430402 |
line wrap: on
line source
;; A GTK version of package-ui.el (globally-declare-fboundp '(gtk-window-new gtk-hbox-new gtk-container-add gtk-widget-show-all)) (require 'package-get) (require 'package-ui) (defun package-gtk-edit-sites () (let ((window (gtk-window-new 'toplevel)) (box (gtk-hbox-new nil 5))) (gtk-container-add window box) (gtk-widget-show-all window)))