Advertisement
chemoelectric

Example menu entries

Jan 14th, 2013
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. (set!
  2. font-view-tools
  3. [list
  4. (action-entry #:text "Test menu entry" #:background-color #xff0000
  5. #:image (string-append (getenv "HOME") "/fontforge/fontforge/data/pixmaps/fileexport.png")
  6. #:action (lambda (view) (format #t "This is a test\n")))
  7. (separator-line)
  8. (submenu-entry #:text "Test submenu _9"
  9. #:entries
  10. [list
  11. (action-entry #:text "Test menu entry"
  12. #:image (string-append (getenv "HOME")
  13. "/fontforge/fontforge/data/pixmaps/fileexport.png")
  14. #:action (lambda (view) (format #t "This is a test\n")))
  15. ])
  16. ])
  17.  
  18. (activate-gui-tools)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement