• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/

Lines Matching defs:display

92 (defcustom special-display-frame-alist
96 `special-display-buffer-names' and for buffers whose names match
97 one of the regular expressions in `special-display-regexps'.
99 (setq special-display-frame-alist '((width . 80) (height . 20)))
106 (defun special-display-popup-frame (buffer &optional args)
132 special-display-regexps special-display-buffer-names
133 (window (display-buffer buffer)))
140 (make-frame (append args special-display-frame-alist)))))
189 ;; one to display messages while loading the init file.
195 ;; Turn on special-display processing only if there's a window system.
196 (setq special-display-function 'special-display-popup-frame)
312 (when (display-graphic-p)
517 (defun make-initial-minibuffer-frame (display)
519 (if display
520 (make-frame-on-display display parms)
570 (defun make-frame-on-display (display &optional parameters)
571 "Make a frame on display DISPLAY.
573 (interactive "sMake frame on display: ")
574 (or (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" display)
575 (error "Invalid display, not HOST:SERVER or HOST:SERVER.SCREEN"))
576 (make-frame (cons (cons 'display display) parameters)))
646 (defun frames-on-display-list (&optional display)
648 DISPLAY is a name of a display, a string of the form HOST:SERVER.SCREEN.
649 If DISPLAY is omitted or nil, it defaults to the selected frame's display."
650 (let* ((display (or display (frame-parameter nil 'display)))
652 (equal (frame-parameter frame 'display) display))))
655 (defun framep-on-display (&optional display)
657 DISPLAY may be a display name or a frame. If it is a frame, its type is
659 If DISPLAY is omitted or nil, it defaults to the selected frame's display.
660 All frames on a given display are of the same type."
661 (or (framep display)
662 (framep (car (frames-on-display-list display)))))
709 "Select the ARGth different visible frame on current display, and raise it.
842 "Return number of lines available for display on FRAME.
847 "Return number of columns available for display on FRAME.
990 ;;;; Frame/display capabilities.
991 (defun display-mouse-p (&optional display)
993 DISPLAY can be a display name, a frame, or nil (meaning the selected
994 frame's display)."
995 (let ((frame-type (framep-on-display display)))
1011 (defun display-popup-menus-p (&optional display)
1013 DISPLAY can be a display name, a frame, or nil (meaning the selected
1014 frame's display).
1017 (let ((frame-type (framep-on-display display)))
1019 (display-mouse-p display)))
1021 (defun display-graphic-p (&optional display)
1022 "Return non-nil if DISPLAY is a graphic display.
1026 DISPLAY can be a display name, a frame, or nil (meaning the selected
1027 frame's display)."
1028 (not (null (memq (framep-on-display display) '(x w32 mac)))))
1030 (defun display-images-p (&optional display)
1031 "Return non-nil if DISPLAY can display images.
1033 DISPLAY can be a display name, a frame, or nil (meaning the selected
1034 frame's display)."
1035 (and (display-graphic-p display)
1039 (defalias 'display-multi-frame-p 'display-graphic-p)
1040 (defalias 'display-multi-font-p 'display-graphic-p)
1042 (defun display-selections-p (&optional display)
1047 DISPLAY can be a display name, a frame, or nil (meaning the selected
1048 frame's display)."
1049 (let ((frame-type (framep-on-display display)))
1061 (defun display-screens (&optional display)
1063 (let ((frame-type (framep-on-display display)))
1066 (x-display-screens display))
1070 (defun display-pixel-height (&optional display)
1073 (let ((frame-type (framep-on-display display)))
1076 (x-display-pixel-height display))
1078 (frame-height (if (framep display) display (selected-frame)))))))
1080 (defun display-pixel-width (&optional display)
1083 (let ((frame-type (framep-on-display display)))
1086 (x-display-pixel-width display))
1088 (frame-width (if (framep display) display (selected-frame)))))))
1090 (defcustom display-mm-dimensions-alist nil
1092 The dimensions will be used for `display-mm-height' and
1093 `display-mm-width' if defined for the respective display.
1095 Each element of the alist has the form (display . (width . height)),
1098 If `display' equals t, it specifies dimensions for all graphical
1108 (defun display-mm-height (&optional display)
1110 System values can be overriden by `display-mm-dimensions-alist'.
1112 (and (memq (framep-on-display display) '(x w32 mac))
1113 (or (cddr (assoc (or display (frame-parameter nil 'display))
1114 display-mm-dimensions-alist))
1115 (cddr (assoc t display-mm-dimensions-alist))
1116 (x-display-mm-height display))))
1118 (defun display-mm-width (&optional display)
1120 System values can be overriden by `display-mm-dimensions-alist'.
1122 (and (memq (framep-on-display display) '(x w32 mac))
1123 (or (cadr (assoc (or display (frame-parameter nil 'display))
1124 display-mm-dimensions-alist))
1125 (cadr (assoc t display-mm-dimensions-alist))
1126 (x-display-mm-width display))))
1128 (defun display-backing-store (&optional display)
1131 the question is inapplicable to a certain kind of display."
1132 (let ((frame-type (framep-on-display display)))
1135 (x-display-backing-store display))
1139 (defun display-save-under (&optional display)
1141 (let ((frame-type (framep-on-display display)))
1144 (x-display-save-under display))
1148 (defun display-planes (&optional display)
1150 (let ((frame-type (framep-on-display display)))
1153 (x-display-planes display))
1159 (defun display-color-cells (&optional display)
1161 (let ((frame-type (framep-on-display display)))
1164 (x-display-color-cells display))
1168 (tty-display-color-cells)))))
1170 (defun display-visual-class (&optional display)
1174 (let ((frame-type (framep-on-display display)))
1177 (x-display-visual-class display))
1179 (tty-display-color-p display))
1327 cursor display. On a text-only terminal, this is not implemented."
1351 (defcustom display-hourglass t
1368 Use Custom to set this variable to get the display updated."