guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: guile-gtk doc


From: Joshua Judson Rosen
Subject: Re: guile-gtk doc
Date: Tue, 29 Jan 2002 10:08:39 -0500
User-agent: Mutt/1.3.25i

On Tue, Jan 29, 2002 at 09:18:29AM -0500, Brett Viren wrote:
> Stan Pinte writes:
>  > 
>  > I am fairly new to guile-gtk development, and I wonder where I can
>  > get a list of the functions defined in the (gtk gtk) module...
> 
> If readline is activated in guile then you can do:
> 
> shell> guile
> guile> (use-modules (gtk gtk))
> guile> gtk-<TAB>
> 
> And you should see all defined "gtk-" symbols flash by the screen.

... or you can do:
    (use-modules (gtk gtk)) (apropos "gtk")


If you want to dump that into a file, you could use (in bash; I don't know 
about other command-shells):
    echo '(use-modules (gtk gtk)) (apropos "gtk")' | guile > logfile

Or, here's some Scheme code to do the same thing:
    (use-modules (gtk gtk))
    (with-output-to-file "logfile" (lambda () (apropos "gtk")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]