GtkPlot and GtkExtra under windows 98!

2006-05-15 Thread ferri_marllo
Hello everyone!! I need to make an XY plot,with a cursor.I've readen something about GTkPlot and GtkExtra,but i don't know if it's compatible with windows 98.In other hand,i downloaded it,and when i tried to compile the examples(with dev-c++) there were some errors,like this: [Linker error]Undefine

Pango-1.13.1 released [unstable]

2006-05-15 Thread Behdad Esfahbod
Pango-1.13.1 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ ac8e2b8f64e184a6b2a0c796a597fc32 pango-1.13.1.tar.bz2 f3edacf07e840b109cbe3ffec003264b pango-1.13.1.tar.gz This is a development release leading up to Pango-1.1

Re: mbox for Developer Archives

2006-05-15 Thread Mart Raudsepp
On Mon, 2006-05-15 at 18:58 +0300, SKSowe wrote: > Hi all, > Can anyone help or direct me to where I can obtain MBOX archives for the > gtk-devel-list for research purpose ONLY. > Regards http://mail.gnome.org/archives/gtk-devel-list/ has downloadable versions for each month that import fine as m

mbox for Developer Archives

2006-05-15 Thread SKSowe
Hi all, Can anyone help or direct me to where I can obtain MBOX archives for the gtk-devel-list for research purpose ONLY. Regards -- Sulayman K. Sowe Aristotle University of Thessaloniki Department of Informatics Thessaloniki 54124. Greece Tel: 2310-991927 Fax: 2310-998419 Dept. URL: http://swe

Re: Signal handler bug in GTK?

2006-05-15 Thread Sander Marechal
Federico Mena Quintero wrote: The file chooser loads folders asynchronously. So, when you call gtk_file_chooser_set_filename(), it will 1. queue an operation to load the folder corresponding to your file 2. go back to the main loop 3. once the folder is loaded, it will actually select the fil

Re: [patch] Print Preview

2006-05-15 Thread Albert Chin
On Sat, May 13, 2006 at 10:17:15AM +0200, Murray Cumming wrote: > On Fri, 2006-05-12 at 19:37 -0500, Albert Chin wrote: > > On Thu, May 11, 2006 at 09:07:16PM -0400, John (J5) Palmieri wrote: > > > * --preview flag for evince which adds a print button and other print > > > preview niceties. > > >

Re: Concerns about print preview implementation

2006-05-15 Thread Dimi Paun
On Mon, May 15, 2006 2:09 pm, Roger Leigh wrote: > This is very true. However, a preview is supposed to be a preview of > what will be printed. By generating the complete PDF print file, we > get to see exactly what would be printed, not just what the preview > code would generate. If you don't

Re: UTF8 utils, g_utf8_strstr() g_utf8_strcasestr()?

2006-05-15 Thread Matthias Clasen
On 5/15/06, Andrew Paprocki <[EMAIL PROTECTED]> wrote: Forgive me if there is already an easy way to do this, but I didn't see it browsing through gunicode.h. Is there any interest in a g_utf8_strstr() function? It seems like strchr() was provided, but strstr() was omitted. In addition, I am f

UTF8 utils, g_utf8_strstr() g_utf8_strcasestr()?

2006-05-15 Thread Andrew Paprocki
Forgive me if there is already an easy way to do this, but I didn't see it browsing through gunicode.h. Is there any interest in a g_utf8_strstr() function? It seems like strchr() was provided, but strstr() was omitted. In addition, I am finding in my daily routine that I need to do a lot of utf

Re: Concerns about print preview implementation

2006-05-15 Thread Roger Leigh
Paolo Maggi <[EMAIL PROTECTED]> writes: [I'm one of the developers of the Gimp-Print/Gutenprint printer drivers, and I'm pretty familiar with the UNIX/Linux printing toolchain.] > looking at the previous mails about print preview it seems people > are oriented toward using an external viewer for

GLib 2.11.1 released

2006-05-15 Thread Matthias Clasen
GLib 2.11.1 is now available for download at ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/gnome/sources/glib/2.11/ glib-2.11.0.tar.bz2 md5sum: 3655de1e252f3028fff862347a624808 glib-2.11.0.tar.gz md5sum: d7732bc60653a8cbf4919c2927c94814 This is the second development r

Re: Concerns about print preview implementation

2006-05-15 Thread Paolo Borelli
>> * As explained many times when evince was created, the evince UI is so neat >> because it was >> thought with a clear use case in mind: multipages documents in portrait >> mode. However not all >> gtk apps that do printing are document oriented: think of CAD apps, image >> editors and probabl

Re: Signal handler bug in GTK?

2006-05-15 Thread Federico Mena Quintero
On Sun, 2006-05-14 at 23:48 +0200, Sander Marechal wrote: > On line 904 I call cfg_load(). This function is at line 550. The signals > seem to be emitted from that function, in a call to > gtk_file_chooser_set_filename() on line 631. After cfg_load() returns I > call glade_xml_signal_autoconnec

Re: dnd animation

2006-05-15 Thread Federico Mena Quintero
On Sat, 2006-05-13 at 15:03 +0200, Rouquier Philippe wrote: > I have a treeview and I'd like to give the possibility to the user to > remove files from it by dragging them out of the treeview. > > The problem is that when a file is dragged out of a widget and the > destination widget is not accep

Re: Concerns about print preview implementation

2006-05-15 Thread John Ehresman
Alexander Larsson wrote: This does complicate the API a bit though. For instance, I'm not sure how easy that would be to do with the win32 native dialogs. I don't think there's anything in principle that makes this difficult on Windows. A couple of thoughts: * It is a win for the user who

Re: Concerns about print preview implementation

2006-05-15 Thread Paolo Maggi
Hi, > > > * launching an external app could be slow and memory greedy, especially if > > the viewer > > has to render the whole document (which could be big, include images, etc.) > > Why would an external app be slower, greedier, whatever than an > in-memory approach? They both would do about

Re: Concerns about print preview implementation

2006-05-15 Thread Morten Welinder
> Why would an external app be slower, greedier, whatever than an > in-memory approach? MEMORY: The external application needs to be given the entire document, or else things like NextPage won't work. An in-memory approach could get by with having one page at a time generated. That is the diff

Re: Concerns about print preview implementation

2006-05-15 Thread Alexander Larsson
(replying via cut and paste from archives due to mail loss) > Hi, > > looking at the previous mails about print preview it seems people are > oriented toward using an external viewer for print previewing. > > However we still think this is a bad idea for several reasons. Interesting viewp

Re: libgnomecanvas fon windows

2006-05-15 Thread Jody Goldberg
On Mon, May 15, 2006 at 10:58:04AM +0200, [EMAIL PROTECTED] wrote: > > Hi!! > I want to buildf an XY plot using libgnomecanvas under windows.. > Can anyone tell me where isit to download??And...where are exampleS?? libgoffice is based on foocanvas (same interface as gnomecanvas) and has tools for

Re: automated scrolling..?!

2006-05-15 Thread Kalle Vahlman
On 5/15/06, shree nidhi <[EMAIL PROTECTED]> wrote: Hello all, I am using GTK+2.0, i just wanna animate the scroll movement,i.e,automatically from left to right.i have placed a drawing area widget in the box . i am able to move the scroll but i am not able to see any data or signal an

automated scrolling..?!

2006-05-15 Thread shree nidhi
Hello all,     I am using GTK+2.0, i just wanna animate the scroll movement,i.e,automatically from left to right.i have placed a drawing area widget in the box . i am able to move the scroll but i am not able to see any data or signal and rulers, but when it stops finally i could see the d

Re: GtkBuilder status

2006-05-15 Thread Damon Chaplin
On Thu, 2006-05-11 at 12:00 -0300, Johan Dahlin wrote: > I understand your point of view, you'd like to avoid updating glade again > to support the new builder. > > Until glade is updated, the users will be able use a script to convert from > the old format to the new format. I'm afraid it is un

libgnomecanvas fon windows

2006-05-15 Thread ferri_marllo
Hi!! I want to buildf an XY plot using libgnomecanvas under windows.. Can anyone tell me where isit to download??And...where are exampleS?? Thanks a lot ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gt

Re: avoiding relocations in type registration

2006-05-15 Thread Tim Janik
On Fri, 21 Apr 2006, Behdad Esfahbod wrote: On Fri, 21 Apr 2006, Tim Janik wrote: GType g_type_register_static_simple (GType parent_type, const gchar *type_name, guint16 class_size,