Your message dated Mon, 23 Jan 2006 00:02:10 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#310663: fixed in gmessage 2.6.0-1
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 25 May 2005 04:38:56 +0000
>From [EMAIL PROTECTED] Tue May 24 21:38:56 2005
Return-path: <[EMAIL PROTECTED]>
Received: from relay.utk.ru [81.91.37.3]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DanfU-0000el-00; Tue, 24 May 2005 21:38:56 -0700
Received: from localhost (localhost [127.0.0.1])
by relay.utk.ru (Postfix) with ESMTP id CCA7E1424C
for <[EMAIL PROTECTED]>; Wed, 25 May 2005 10:38:24 +0600 (YEKST)
Received: from relay.utk.ru ([127.0.0.1])
by localhost (relay.utk.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
id 04973-22 for <[EMAIL PROTECTED]>;
Wed, 25 May 2005 10:38:23 +0600 (YEKST)
Received: from delta.utk.ru (unknown [212.220.44.7])
by relay.utk.ru (Postfix) with ESMTP id 4E02C14232
for <[EMAIL PROTECTED]>; Wed, 25 May 2005 10:38:23 +0600 (YEKST)
Received: from [127.0.0.1] (unknown [192.168.150.22])
by delta.utk.ru (Postfix) with ESMTP id 478A2DD6;
Wed, 25 May 2005 10:38:26 +0600 (YEKST)
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Dmitry Petukhov <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: It would be nice to have gmessage do exit() on keypress
X-Mailer: reportbug 3.8
Date: Wed, 25 May 2005 10:45:11 +0600
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: by av at relay.utk.ru
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: gmessage
Version: 2.4.2-1
Severity: wishlist
Tags: patch
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Versions of packages gmessage depends on:
ii libatk1.0-0 1.8.0-4 The ATK accessibility toolkit
ii libc6 2.3.2.ds1-21 GNU C Library: Shared libraries an
ii libglib2.0-0 2.6.4-1 The GLib library of C routines
ii libgtk2.0-0 2.6.4-1 The GTK+ graphical user interface
ii libpango1.0-0 1.8.1-1 Layout and rendering of internatio
-- no debconf information
I use gmessage with dictd to have a nice dictionary window pop up
for selected word when 4th mouse button pressed. But it is inconvenient
to always click on message window to close it. I prefer to
use sendkeys program to send escape automatically when i release
mouse button. Gmessage is nice, but lacks the ability to exit on
keypress. Therefore i patched it to do exit() on escape, enter or space
key. It would be nice to have this feature in official package, so i
don't have to always patch new version manually. My patch follows:
--- gmessage-2.4.2.orig/gxmessage.c 2005-02-22 14:22:44.000000000 +0500
+++ gmessage-2.4.2/gxmessage.c 2005-05-25 10:26:56.022048920 +0600
@@ -26,6 +26,7 @@
#include <string.h>
#include <ctype.h>
#include <gtk/gtk.h>
+#include <gdk/gdkkeysyms.h>
#ifdef ENABLE_NLS
@@ -172,7 +173,20 @@
void prog_cleanup (void);
+gboolean keypress(GtkWidget * w, GdkEventKey * event, gpointer data)
+{
+ switch(event->keyval)
+ {
+ case GDK_Escape:
+ case GDK_Return:
+ case GDK_space:
+ exit(0);
+ break;
+
+ }
+ return TRUE;
+}
ButtonList*
button_first (ButtonList *button)
@@ -523,6 +537,8 @@
G_CALLBACK(cb_window_destroy),
NULL);
+ gtk_signal_connect(GTK_OBJECT(window),
+ "key_press_event", GTK_SIGNAL_FUNC(keypress), NULL);
if (gx.title_str != NULL) {
gtk_window_set_title (GTK_WINDOW(window), gx.title_str);
---------------------------------------
Received: (at 310663-close) by bugs.debian.org; 23 Jan 2006 08:10:46 +0000
>From [EMAIL PROTECTED] Mon Jan 23 00:10:46 2006
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
id 1F0weQ-0000Ka-M0; Mon, 23 Jan 2006 00:02:10 -0800
From: =?utf-8?q?S=C3=B8ren_Boll_Overgaard?= <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.65 $
Subject: Bug#310663: fixed in gmessage 2.6.0-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 23 Jan 2006 00:02:10 -0800
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Source: gmessage
Source-Version: 2.6.0-1
We believe that the bug you reported is fixed in the latest version of
gmessage, which is due to be installed in the Debian FTP archive:
gmessage_2.6.0-1.diff.gz
to pool/main/g/gmessage/gmessage_2.6.0-1.diff.gz
gmessage_2.6.0-1.dsc
to pool/main/g/gmessage/gmessage_2.6.0-1.dsc
gmessage_2.6.0-1_i386.deb
to pool/main/g/gmessage/gmessage_2.6.0-1_i386.deb
gmessage_2.6.0.orig.tar.gz
to pool/main/g/gmessage/gmessage_2.6.0.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Søren Boll Overgaard <[EMAIL PROTECTED]> (supplier of updated gmessage package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Mon, 23 Jan 2006 07:30:50 +0000
Source: gmessage
Binary: gmessage
Architecture: source i386
Version: 2.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Søren Boll Overgaard <[EMAIL PROTECTED]>
Changed-By: Søren Boll Overgaard <[EMAIL PROTECTED]>
Description:
gmessage - an xmessage clone based on GTK+
Closes: 310663
Changes:
gmessage (2.6.0-1) unstable; urgency=low
.
* New upstream release now includes swedish translation, so removing the
Debian copy.
* Exit it is now done when pressing ESC (Closes: Bug#310663)
Files:
ff160bcfd26687f8d77fdf48565277e2 597 gnome optional gmessage_2.6.0-1.dsc
43ca327297f0db9fbcce6d44baef8155 86747 gnome optional
gmessage_2.6.0.orig.tar.gz
fb14fdd5783b00c375f01667358739df 39700 gnome optional gmessage_2.6.0-1.diff.gz
1e8725e460673ac02c7821c9fec51d15 26566 gnome optional gmessage_2.6.0-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFD1Im9PHuHUx6y3mYRAouDAKCNSMaZfwkJVVA6cm/aaVyglPZbJQCgio+f
xSJopc4xmWe2ac2b5CrenOU=
=steR
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]