view lisp/gtk-package.el @ 1526:8b284a83dd90

[xemacs-hg @ 2003-06-13 00:11:16 by adrian] xemacs-21.5: Fix xemacs.exe is in a strange place? on 'windows-nt -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2003-06-13 Adrian Aichner <adrian@xemacs.org> * setup-paths.el (paths-emacs-root-p): Don't insist in lib-src directory on 'windows-nt, which currently does not have it.
author adrian
date Fri, 13 Jun 2003 00:11:16 +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)))