unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Make new buffers into new frames
@ 2024-09-29  7:40 Heime
  2024-09-29 12:44 ` Heime
  0 siblings, 1 reply; 12+ messages in thread
From: Heime @ 2024-09-29  7:40 UTC (permalink / raw)
  To: Heime via Users list for the GNU Emacs text editor

I want to display the user named buffer when calling buffer-into-frame into 
a new frame. The buffer will have a button, which when pressed another buffer 
will be made to display my-message, which is some text.

I also want my-message to be displayed in a buffer and in the same new frame. 

(defun display-message (my-message &optional bfrn)
  "Display textual message into the buffer BFRN."

  (let* ( (bfname (or bfrn "Info"))
          (dbuffer (get-buffer-create (concat "𒆳 " bfname))) )

    (with-current-buffer dbuffer
      (erase-buffer)
      (insert my-message)
      (goto-char (point-min)))

    (display-buffer dbuffer)))

;; -------------------------------------------------------

(defun buffer-into-frame (&optional bfrn)
  "TODO"

  (interactive
    (list (let ( (rqmatch nil)
                 (cseq '("Default" "Torium")) )
            (completing-read " Display Name: " cseq nil rqmatch "Selection Buffer"))))

  (let* ( (bfname (or bfrn "S_election Buffer"))
          (dbuffer (get-buffer-create (concat "𒆳 " bfname))) )

    (with-current-buffer dbuffer
      (erase-buffer)

      ;; Insert a button that shows the info when pressed
      (insert-button " - "
        'action (display-message my-message "Info Buffer")
        'follow-link t)

      (insert " Running Non-Interactive Commands"))) )




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

end of thread, other threads:[~2024-09-30 19:32 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-29  7:40 Make new buffers into new frames Heime
2024-09-29 12:44 ` Heime
2024-09-29 17:15   ` tomas
2024-09-29 19:16     ` Heime
2024-09-29 19:22       ` tomas
2024-09-29 19:31         ` Heime
2024-09-30  4:41           ` tomas
2024-09-30  6:40             ` Heime
2024-09-30  9:13               ` Stephen Berman
2024-09-30  9:15               ` tomas
2024-09-30  9:29               ` Rudolf Schlatte
2024-09-30 19:32                 ` Heime

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).