From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id nLxmIV5UsmBXewAAWB0awg (envelope-from ) for ; Sat, 29 May 2021 10:49:02 -0400 Received: by simark.ca (Postfix, from userid 112) id 820151F11C; Sat, 29 May 2021 10:49:02 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id A3CC91E01F for ; Sat, 29 May 2021 10:49:01 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 2086C3857004; Sat, 29 May 2021 14:49:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2086C3857004 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1622299741; bh=ip6rTag8/26z40t7m7ByJoEo8XzxUsHvkz5liizMjN4=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=ACAp6omNFykXfleUfdMmXjMNtV3ReKwDsvi+PEQztMF+1UWb+oyoYLR314z81MdCf TV6T8q1cHLHLdX+FuL+IL6LLjCc3Mlj2XhboAnddIN3n1NpEfbf9kMn+5lOscHSkit kHmrZh/xkxQhf2YZtgiiYRfv8EOtI2IAo6NA/C7k= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 6B0E1385802D for ; Sat, 29 May 2021 14:48:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 6B0E1385802D Received: from fencepost.gnu.org ([2001:470:142:3::e]:45032) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ln0Go-0000Ig-H5; Sat, 29 May 2021 10:48:58 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2649 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ln0Go-0006nz-2r; Sat, 29 May 2021 10:48:58 -0400 Date: Sat, 29 May 2021 17:49:05 +0300 Message-Id: <83h7il61em.fsf@gnu.org> To: Hannes Domani In-Reply-To: <20210529142636.11432-2-ssbssa@yahoo.de> (message from Hannes Domani via Gdb-patches on Sat, 29 May 2021 16:26:36 +0200) Subject: Re: [PATCHv2 2/2] Forward mouse click to python TUI window References: <20210529142636.11432-1-ssbssa@yahoo.de> <20210529142636.11432-2-ssbssa@yahoo.de> X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" > Date: Sat, 29 May 2021 16:26:36 +0200 > From: Hannes Domani via Gdb-patches > > If the TUI window object implements the click method, it is called for each > mouse click event in this window. > > gdb/ChangeLog: > > 2021-05-29 Hannes Domani > > * python/py-tui.c (class tui_py_window): Add click function. > (tui_py_window::click): Likewise. > > gdb/doc/ChangeLog: > > 2021-05-29 Hannes Domani > > * python.texi (TUI Windows In Python): Document Window.click. OK for the documentation part. Thanks.