From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleksandr Gavenko Newsgroups: gmane.emacs.help Subject: Re: removing min / max / close buttons from title bar Date: Sat, 01 Sep 2012 00:11:02 +0300 Organization: At home. Message-ID: <87bohqn4wp.fsf@gavenkoa.example.com> References: <1346438922647-262739.post@n5.nabble.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1346447493 12747 80.91.229.3 (31 Aug 2012 21:11:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 31 Aug 2012 21:11:33 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Aug 31 23:11:35 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1T7YUz-0004C5-NJ for geh-help-gnu-emacs@m.gmane.org; Fri, 31 Aug 2012 23:11:29 +0200 Original-Received: from localhost ([::1]:51301 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7YUx-0000D8-7K for geh-help-gnu-emacs@m.gmane.org; Fri, 31 Aug 2012 17:11:27 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:58352) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7YUs-0000Cs-I3 for help-gnu-emacs@gnu.org; Fri, 31 Aug 2012 17:11:23 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T7YUr-0007qJ-Os for help-gnu-emacs@gnu.org; Fri, 31 Aug 2012 17:11:22 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:51890) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7YUr-0007qF-Hk for help-gnu-emacs@gnu.org; Fri, 31 Aug 2012 17:11:21 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1T7YUk-0003zQ-Bf for help-gnu-emacs@gnu.org; Fri, 31 Aug 2012 23:11:14 +0200 Original-Received: from 46.211.201.73 ([46.211.201.73]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 31 Aug 2012 23:11:14 +0200 Original-Received: from gavenkoa by 46.211.201.73 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 31 Aug 2012 23:11:14 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 23 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 46.211.201.73 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (gnu/linux) Cancel-Lock: sha1:4xSOedV3XBHOiubtX3uIqDsGE5c= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:86612 Archived-At: On 2012-08-31, drain wrote: > How would I do this? Right now the title bar only reads the buffer name; > which is all I want up there. > This depends on OS and window manager you using... For example under Fvwm (in Debian) you can't do this in Emacs, only through ~/.fvwm/config file... Under Windows you can recompile Emacs: http://msdn.microsoft.com/en-us/library/windows/desktop/ms632600.aspx WS_MAXIMIZEBOX 0x00010000L The window has a maximize button. Cannot be combined with the WS_EX_CONTEXTHELP style. The WS_SYSMENU style must also be specified. in function calls: CreateWindow. -- Best regards!