From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129970 invoked by alias); 4 Jan 2020 18:34:16 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 129960 invoked by uid 89); 4 Jan 2020 18:34:16 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-8.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=H*r:sk:gdb-pat, locator, horizontal X-HELO: gateway33.websitewelcome.com Received: from gateway33.websitewelcome.com (HELO gateway33.websitewelcome.com) (192.185.145.23) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 04 Jan 2020 18:34:14 +0000 Received: from cm12.websitewelcome.com (cm12.websitewelcome.com [100.42.49.8]) by gateway33.websitewelcome.com (Postfix) with ESMTP id 568BE10CD8 for ; Sat, 4 Jan 2020 12:34:13 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id noFZiWgCDW4frnoFZinK08; Sat, 04 Jan 2020 12:34:13 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:MIME-Version :Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=5Vizib95DKqK71SmFrFQJTsXW/rPw3EpdWleq6P0XRw=; b=JoYD1y06eLkG1W4a93BX39i+Xh AFoRD75FeZlA/jpHLCmwexVqI5RYFK7SH6MdUs0TvujbajEk/uzJ2yD580FnVdZ5PFh34/pa5mUDY weM+4wId4Qnjwvo150x2Gti59; Received: from 75-166-123-50.hlrn.qwest.net ([75.166.123.50]:48942 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1inoFZ-0026Lh-51 for gdb-patches@sourceware.org; Sat, 04 Jan 2020 11:34:13 -0700 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 00/24] Horizontal TUI layout + windows in Python Date: Sat, 04 Jan 2020 18:34:00 -0000 Message-Id: <20200104183410.17114-1-tom@tromey.com> X-SW-Source: 2020-01/txt/msg00055.txt.bz2 This series adds some new features to the TUI: user-defined layouts, horizontal layouts, and the ability to write windows in Python. Much of the series is refactoring in preparation for the new additions. A couple of other visible changes were needed. It wasn't entirely clear to me how the C-x 1 and C-x 2 bindings should be handled; see patch 4 and patch 5. The Python API is currently pretty simple. I may add some new features to it. For example, right now you can't write a replacement for the locator window, because there's no way for a Python window to set its maximum size. It might also be useful to have a mode where gdb manages scrolling, rather than having to do it manually in Python; or a way to control whether wrapping is done when writing to a window. I didn't add a "winwidth" command to change the width of a window. Perhaps this is needed. Also maybe "info win" should show more information now? Let me know what you think. Tom