help-gnu-emacs
[Top][All Lists]
Advanced

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

How do I make an "always available" tool-bar button?


From: joakim
Subject: How do I make an "always available" tool-bar button?
Date: Mon, 19 Jan 2009 13:39:05 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux)

I want to have a button available in the emacs tool-bar at all times.

I tried something like the code below but it doesnt work.

Any hints?


(defun pocketcompletion-enable-toolbar-button ()
  (define-key global-map [tool-bar pocketcompletion]
   '(menu-item "pocketcompletion" pocketcompletion
               :image (image :type xpm :file "zoom-in.xpm")))
  )


(define-minor-mode pocketcompletion-mode
       "Toggle pocketcompletion mode"
      ;; The initial value.
      :init-value nil
      ;; The indicator for the mode line.
      :lighter " pocketcompletion"
      ;; The minor mode bindings.
      :group 'pocketcompletion
      :global t
      (message "pocketcompletion minor body %s" pocketcompletion-mode)
      (pocketcompletion-enable-toolbar-button))

      
-- 
Joakim Verona





reply via email to

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