Mercurial > hg > xemacs-beta
view lisp/gtk-package.el @ 1575:e0ca0b9b1a35
[xemacs-hg @ 2003-07-17 13:10:48 by crestani]
2003-06-11 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
* opaque.c: added opaque_ptr_description
author | crestani |
---|---|
date | Thu, 17 Jul 2003 13:10:49 +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)))