--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: libzvt2.0-dev: size arguments are ignored
- From: Filip Van Raemdonck <mechanix@debian.org>
- Date: Wed, 23 Oct 2002 10:27:04 +0200
- Message-id: <20021023082704.GA28322@debian>
Package: libzvt2.0-dev
Version: 2.0.1cvs20021009-2
Severity: normal
Tags: sid
Hi,
I'm using a zvt widget inside another application. Whether I create the
widget with a specified size or set it's size after creation, it fails to
obey those settings. A small sample program which shows the behaviour is
included below. The resulting window always contains a 1 by 1 character
term widget.
Removing the zvt_term_set_size call, moving it around to any place from
just after zvt creation to right before gtk_main, leaving out the size
request upon creation (using plain zvt_term_new) doesn't matter a bit.
Oh, btw, you should also build the API reference for libzvt; a library
without it's documentation is of little worth to developers.
Regards,
Filip
*****
#include <gtk/gtk.h>
#include <libzvt/libzvt.h>
void
destroy (GtkWidget* widget, gpointer data) {
gtk_main_quit ();
}
int
main (int argc, char* argv[]) {
GtkWidget *term, *win;
gtk_init (&argc, &argv);
win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (G_OBJECT (win), "destroy", G_CALLBACK (destroy), NULL);
gtk_container_set_border_width (GTK_CONTAINER (win), 10);
term = zvt_term_new_with_size (80, 24);
zvt_term_set_size (ZVT_TERM (term), 80, 24);
gtk_widget_show (term);
gtk_container_add (GTK_CONTAINER (win), term);
gtk_widget_show (win);
gtk_main ();
return 0;
}
*****
-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux orion 2.4.17-18.2 #3 Tue Jan 8 17:34:46 CET 2002 i686
Locale: LANG=C, LC_CTYPE=C
--
Unix is user friendly ... It's just picky about its friends.
--- End Message ---
--- Begin Message ---
- To: 166004-done@bugs.debian.org
- Subject: libzvt has been removed from Debian, closing #166004
- From: Marco Rodrigues <gothicx@sapo.pt>
- Date: Wed, 23 Apr 2008 21:06:12 +0100
- Message-id: <200804232006.m3NK6C7Y003910@kmos.homeip.net>
Version: 2.0.1cvs20021009-5+rm
The libzvt package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.
For more information about this package's removal, read
http://bugs.debian.org/195969 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
--
Marco Rodrigues
http://Marco.Tondela.org
--- End Message ---