From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: mah@everybody.org (Mark A. Hershberger) Newsgroups: gmane.emacs.devel Subject: Re: emacs frame/window withouth minibuffer/modeline? Date: Mon, 11 Jan 2010 22:54:37 -0500 Message-ID: <871vhwgepu.fsf@everybody.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1263268531 7723 80.91.229.12 (12 Jan 2010 03:55:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 12 Jan 2010 03:55:31 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 12 04:55:23 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NUXqj-0005vU-Rw for ged-emacs-devel@m.gmane.org; Tue, 12 Jan 2010 04:55:22 +0100 Original-Received: from localhost ([127.0.0.1]:43481 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NUXqk-0005kH-6L for ged-emacs-devel@m.gmane.org; Mon, 11 Jan 2010 22:55:22 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NUXqc-0005jv-J1 for emacs-devel@gnu.org; Mon, 11 Jan 2010 22:55:14 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NUXqY-0005jK-Bs for emacs-devel@gnu.org; Mon, 11 Jan 2010 22:55:14 -0500 Original-Received: from [199.232.76.173] (port=42883 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NUXqY-0005jH-8h for emacs-devel@gnu.org; Mon, 11 Jan 2010 22:55:10 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:45265) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NUXqX-0007JO-Qx for emacs-devel@gnu.org; Mon, 11 Jan 2010 22:55:10 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.50) id 1NUXqN-0005n7-5k for emacs-devel@gnu.org; Tue, 12 Jan 2010 04:54:59 +0100 Original-Received: from 24.152.221.116.res-cmts.eph.ptd.net ([24.152.221.116]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Jan 2010 04:54:59 +0100 Original-Received: from mah by 24.152.221.116.res-cmts.eph.ptd.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Jan 2010 04:54:59 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 31 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 24.152.221.116.res-cmts.eph.ptd.net X-URL: http://hexmode.com/ User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux) Cancel-Lock: sha1:UIecMCiqw8opYc39dsHzk/qYN/U= X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:119844 Archived-At: joakim@verona.se writes: > I'd like to make a fullscreen image viewer in Emacs for reading scanned > pages. I'd like only the buffer to show, no minibuffer, no modeline, > but cant really find anything about if its possible or not. Any hints? epresent.el (from elpa) does this. Looking at the code, it seems the special sauce is make-frame: (make-frame '((minibuffer . nil) (title . "EPresent") (fullscreen . fullboth) (menu-bar-lines . 0) (tool-bar-lines . 0) (vertical-scroll-bars . nil) (left-fringe . 0) (right-fringe . 0) (internal-border-width . 20) (cursor-type . nil))) HTH, Mark. -- http://hexmode.com/ The only alternative to Tradition is bad tradition. — Jaraslov Pelikan