unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Customize a checklist
@ 2002-12-15 15:38 Peter S Galbraith
  0 siblings, 0 replies; 3+ messages in thread
From: Peter S Galbraith @ 2002-12-15 15:38 UTC (permalink / raw)


Hi all,

I'd like to customize a list which would contain certain symbols or
strings from certain possibilities.  The aim is to setup which buttons
appear in a toolbar through a checklist, such as

    [*] inc
    [*] MIME save
    ...
    [*] preferences
    [*] help
 
I haven't found a way to do this in customize.
Did I miss something?

Any implementation ideas or suggestions?

Thanks,
-- 
Peter S. Galbraith, MH-E developer  <p.galbraith@globetrotter.net>
GPG key 1024/D2A913A1 - 97CE 866F F579 96EE  6E68 8170 35FF 799E
6623'rd GNU/Linux user at the Counter - http://counter.li.org/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Customize a checklist
       [not found] <mailman.227.1039966739.19936.help-gnu-emacs@gnu.org>
@ 2002-12-15 18:56 ` Klaus Berndl
       [not found]   ` <Klaus.Berndl@sdm.de>
  0 siblings, 1 reply; 3+ messages in thread
From: Klaus Berndl @ 2002-12-15 18:56 UTC (permalink / raw)


On Sun, 15 Dec 2002, Peter S. Galbraith wrote:



>  Hi all,
>  
>  I'd like to customize a list which would contain certain symbols or
>  strings from certain possibilities.  The aim is to setup which buttons
>  appear in a toolbar through a checklist, such as
>  
>      [*] inc
>      [*] MIME save
>      ...
>      [*] preferences
>      [*] help
>   
>  I haven't found a way to do this in customize.
>  Did I miss something?
>  
>  Any implementation ideas or suggestions?


(defcustom ecb-advice-window-functions '(other-window
                                         delete-window delete-other-windows
                                         delete-windows-on
                                         split-window-horizontally
                                         split-window-vertically
                                         switch-to-buffer
                                         switch-to-buffer-other-window)
  :group 'ecb-layout
  :initialize 'custom-initialize-default
  :type '(set (const :tag "other-window"
                     :value other-window)
              (const :tag "delete-window"
                     :value delete-window)
              (const :tag "delete-other-windows"
                     :value delete-other-windows)
              (const :tag "delete-windows-on"
                     :value delete-windows-on)
              (const :tag "split-window-horizontally"
                     :value split-window-horizontally)
              (const :tag "split-window-vertically"
                     :value split-window-vertically)
              (const :tag "switch-to-buffer"
                     :value switch-to-buffer)
              (const :tag "switch-to-buffer-other-window"
                     :value switch-to-buffer-other-window)
              (const :tag "other-window-for-scrolling"
                     :value other-window-for-scrolling)))

This is an example for a set of function symbols...

Ciao,
Klaus
                     
>  
>  Thanks,

-- 
Klaus Berndl			mailto: klaus.berndl@sdm.de
sd&m AG				http://www.sdm.de
software design & management	
Thomas-Dehler-Str. 27, 81737 München, Germany
Tel +49 89 63812-392, Fax -220

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Customize a checklist
       [not found]   ` <Klaus.Berndl@sdm.de>
@ 2002-12-15 20:44     ` Peter S Galbraith
  0 siblings, 0 replies; 3+ messages in thread
From: Peter S Galbraith @ 2002-12-15 20:44 UTC (permalink / raw)


Klaus Berndl <Klaus.Berndl@sdm.de> wrote:

> On Sun, 15 Dec 2002, Peter S. Galbraith wrote:
>
> >  I'd like to customize a list which would contain certain symbols or
> >  strings from certain possibilities.  The aim is to setup which buttons
> >  appear in a toolbar through a checklist, such as
> >  
> >      [*] inc
> >      [*] MIME save

>   :type '(set (const :tag "other-window"
>                      :value other-window)
>               (const :tag "other-window-for-scrolling"
>                      :value other-window-for-scrolling)))
> 
> This is an example for a set of function symbols...

Thank you Klaus!

I don't know how I missed it, but I'm sure glad I asked!

:-)

-- 
Peter S. Galbraith, MH-E developer  <p.galbraith@globetrotter.net>
GPG key 1024/D2A913A1 - 97CE 866F F579 96EE  6E68 8170 35FF 799E
6623'rd GNU/Linux user at the Counter - http://counter.li.org/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-12-15 20:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-15 15:38 Customize a checklist Peter S Galbraith
     [not found] <mailman.227.1039966739.19936.help-gnu-emacs@gnu.org>
2002-12-15 18:56 ` Klaus Berndl
     [not found]   ` <Klaus.Berndl@sdm.de>
2002-12-15 20:44     ` Peter S Galbraith

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).