From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: moving window handling into lisp Date: Sun, 16 Aug 2009 21:24:58 +0200 Message-ID: <4A885D0A.3060805@gmx.at> References: <4A86AD92.7030308@gmx.at> <87vdkpfbeg.fsf@lola.goethe.zz> <4A86DE30.8060902@gmx.at> <4A86F24D.4090103@gmx.at> <4A87DE88.6050209@gmx.at> <87bpmgdkjb.fsf@lola.goethe.zz> <4A8822F1.8040506@gmx.at> <87vdknd9al.fsf@lola.goethe.zz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1250450728 6530 80.91.229.12 (16 Aug 2009 19:25:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Aug 2009 19:25:28 +0000 (UTC) Cc: emacs-devel@gnu.org To: David Kastrup Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Aug 16 21:25:21 2009 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 1MclLv-0005bN-CH for ged-emacs-devel@m.gmane.org; Sun, 16 Aug 2009 21:25:15 +0200 Original-Received: from localhost ([127.0.0.1]:35449 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MclLu-0002n5-Bf for ged-emacs-devel@m.gmane.org; Sun, 16 Aug 2009 15:25:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MclLp-0002mF-Tg for emacs-devel@gnu.org; Sun, 16 Aug 2009 15:25:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MclLk-0002aW-9g for emacs-devel@gnu.org; Sun, 16 Aug 2009 15:25:08 -0400 Original-Received: from [199.232.76.173] (port=39569 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MclLk-0002aK-6B for emacs-devel@gnu.org; Sun, 16 Aug 2009 15:25:04 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]:47836) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MclLj-0001zM-Hq for emacs-devel@gnu.org; Sun, 16 Aug 2009 15:25:04 -0400 Original-Received: (qmail invoked by alias); 16 Aug 2009 19:25:01 -0000 Original-Received: from 62-47-45-33.adsl.highway.telekom.at (EHLO [62.47.45.33]) [62.47.45.33] by mail.gmx.net (mp045) with SMTP; 16 Aug 2009 21:25:01 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX18c+XdXEH4cbeug5Vu91yqjFIAtos9NnKwErqWU/B wagYDSOg1qIdMz User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: <87vdknd9al.fsf@lola.goethe.zz> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.78 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:114324 Archived-At: > A fraction for a window border position remains a fraction (of the frame > size) if it is an inherent result of resizing the frame. If the user > adjusts individual window borders, however, their new position is an > integer since it is not an implicit result of frame resizing. > > In a nutshell: whatever position is manipulated _directly_ is made an > integer at the time of the manipulation. Window borders that are only > repositioned as an implicit (proportionate) result of some resizing > operation, do the bookkeeping of their position as a fraction that > corresponds to the resized ratios. Very neat idea, indeed. As a matter of fact this should solve the frame re-resizing problem completely. martin