annotate lisp/gtk-package.el @ 818:accc481aef34
[xemacs-hg @ 2002-04-25 06:09:11 by youngs]
2002-04-25 Steve Youngs <youngs@xemacs.org>
* mule/mule-charset.el (string-to-char-list): New. This used to
be in 'mule-misc.el' but that file has been removed.
2002-04-14 Steve Youngs <youngs@xemacs.org>
* obsolete.el (find-non-ascii-charset-region): A couple of
packages use this.
(find-non-ascii-charset-string): Ditto.
| author |
youngs |
| date |
Thu, 25 Apr 2002 06:09:18 +0000 |
| parents |
7039e6323819 |
| children |
db7068430402 |
| rev |
line source |
|
462
|
1 ;; A GTK version of package-ui.el
|
|
|
2
|
|
502
|
3 (globally-declare-fboundp
|
|
|
4 '(gtk-window-new
|
|
|
5 gtk-hbox-new gtk-container-add gtk-widget-show-all))
|
|
|
6
|
|
462
|
7 (require 'package-get)
|
|
|
8 (require 'package-ui)
|
|
|
9
|
|
|
10 (defun package-gtk-edit-sites ()
|
|
|
11 (let ((window (gtk-window-new 'toplevel))
|
|
|
12 (box (gtk-hbox-new nil 5)))
|
|
|
13 (gtk-container-add window box)
|
|
|
14 (gtk-widget-show-all window)))
|