Ejm Lisp

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

(capi:define-interface demo ()

()
(:panes
(page-up capi:push-button
:text "Page Up"
:selection-callback 'scroll-up)
(page-down capi:push-button
:text "Page Down"
:selection-callback 'scroll-down)
(open-file capi:push-button
:text "Open File"
:selection-callback 'file-choice)
(viewer capi:editor-pane
:title "File:"
:text "No file selected."
:visible-min-height '(:character 8)
:reader viewer-pane))
(:layouts
(main-layout capi:column-layout
'(row-of-buttons row-with-editor-pane))
(row-of-buttons capi:row-layout
'(page-up page-down open-file))
(row-with-editor-pane capi:row-layout
'(viewer)))
(:menus
(file-menu "File"
(("Open"))
:selection-callback 'file-choice)
(page-menu "Page"
(("Page Up"
:selection-callback 'scroll-up)
("Page Down"
:selection-callback 'scroll-down))))
(:menu-bar file-menu page-menu)
(:default-initargs :title "Demo"))

(capi:display (make-instance 'demo))

You might also like