From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: Emacsw32 fullscreen Date: Thu, 13 Mar 2008 06:14:04 +0200 Message-ID: References: <3112661d-c08e-412b-91f1-9e7ec192dc67@s37g2000prg.googlegroups.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org Content-Transfer-Encoding: 7BIT X-Trace: ger.gmane.org 1205381729 13184 80.91.229.12 (13 Mar 2008 04:15:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Mar 2008 04:15:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 13 05:15:57 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JZer7-00005v-Va for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Mar 2008 05:15:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JZeqY-0000rp-H4 for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Mar 2008 00:15:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JZeqH-0000r2-6H for help-gnu-emacs@gnu.org; Thu, 13 Mar 2008 00:14:57 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JZeqC-0000qe-5B for help-gnu-emacs@gnu.org; Thu, 13 Mar 2008 00:14:56 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JZeqB-0000qT-VE for help-gnu-emacs@gnu.org; Thu, 13 Mar 2008 00:14:51 -0400 Original-Received: from mtaout7.012.net.il ([84.95.2.19]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JZeqB-0006hR-TO for help-gnu-emacs@gnu.org; Thu, 13 Mar 2008 00:14:52 -0400 Original-Received: from HOME-C4E4A596F7 ([80.230.37.133]) by i-mtaout7.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0JXN001JLHMRZDH0@i-mtaout7.012.net.il> for help-gnu-emacs@gnu.org; Thu, 13 Mar 2008 05:56:51 +0200 (IST) In-reply-to: <3112661d-c08e-412b-91f1-9e7ec192dc67@s37g2000prg.googlegroups.com> X-012-Sender: halo1@inter.net.il X-detected-kernel: by monty-python.gnu.org: Solaris 10 (1203?) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:52349 Archived-At: > From: Evans Winner > Date: Wed, 12 Mar 2008 12:50:20 -0700 (PDT) > > Is there a way to send a keystroke to the underlying OS or window > manager from Emacs? I am trying to get a true fullscreen (no > titlebar) in Emacsw32. f11 seems to be getting trapped by Emacs (and > conkeror too, by the way). "C-h f w32-send-sys-command" will tell you this: w32-send-sys-command is a built-in function in `C source code'. (w32-send-sys-command command &optional frame) Send frame a Windows WM_SYSCOMMAND message of type command. Some useful values for command are #xf030 to maximize frame (#xf020 to minimize), #xf120 to restore frame to original size, and #xf100 to activate the menubar for keyboard access. #xf140 activates the screen saver if defined. If optional parameter frame is not specified, use selected frame. Is this what you are looking for?