Re: g_list_free()

2005-01-25 Thread Allin Cottrell
); g_list_free(list); return 0; } Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: How best to fetch a web page...

2005-01-25 Thread Allin Cottrell
what you want, and incorporate it in your own app. This is what I have done. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: gtk 2.6.1 on Windows: icon themes

2005-01-28 Thread Allin Cottrell
and XP. Funnily enough, the crash did not occur on XP using the debugging GTK dlls (though on win98 the crash still occurred). Anyone else trying the latest GTK release on Windows? Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list

Re: Compile Line for GnomeVFS Programs.

2005-02-07 Thread Allin Cottrell
to compile. I finally got the program to compile with this line: gcc `pkg-config --cflags --libs gnome libgnomevfs` gnome-vfs.c -o test Try pkg-config --cflags --libs gnome gnome-vfs-2.0 If this doesn't work, then you don't have the right files installed. Allin Cottrell

Re: GTK+2 on Linux and Windows

2005-07-03 Thread Allin Cottrell
On Sat, 2 Jul 2005, Gus Koppel wrote: Somehow I even got i18n support functional on a GTK+ Windows application. IMO, this is unproblematic and expected. If you have the facility to create valid message catalogs, this should Just Work. Allin Cottrell

Re: GTK+2 on Linux and Windows

2005-07-03 Thread Allin Cottrell
, or (and so on) down to a Linux system with GTK 2.0.N installed. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

g_list behavior: what am I doing wrong?

2005-07-14 Thread Allin Cottrell
: After prepending: list data = 'quux' ??? -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: g_list behavior: what am I doing wrong?

2005-07-14 Thread Allin Cottrell
awkward. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Is it possible to use int in labels?

2005-07-20 Thread Allin Cottrell
On Wed, 20 Jul 2005, Søren Juul wrote: Is it possible to use a int in labels? or is it only chars? Only chars. GtkWidget *lbl; gchar *numstr; numstr = g_strdup_printf(%d, number); lbl = gtk_label_new(numstr); g_free(numstr); Allin Cottrell

blocking, non-modal dialog?

2005-08-28 Thread Allin Cottrell
. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: blocking, non-modal dialog?

2005-08-29 Thread Allin Cottrell
On Mon, 29 Aug 2005, Chris Vine wrote: On Sunday 28 August 2005 22:30, Allin Cottrell wrote: I'm having trouble engineering the following: a dialog which blocks (execution in the caller must not proceed till a choice has been made in the dialog's callbacks), but is not modal (the user may want

Re: Error while building GTK 2.6.8 failed to load ./stock_about_16.png: Couldn't recognize the image file format

2005-08-31 Thread Allin Cottrell
?) and the linker is looking for libpng12, this cannot be expected to work. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Is now gdk-bixbuf the part of gtk+-2?

2005-09-26 Thread Allin Cottrell
check, since gdk-pixbuf is an integral part of the gtk+-2 package (that is, it will be missing only if the gtk+-2 installation is broken). -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app

Re: Is now gdk-bixbuf the part of gtk+-2?

2005-09-26 Thread Allin Cottrell
On Mon, 26 Sep 2005, John (J5) Palmieri wrote: On Mon, 2005-09-26 at 09:25 -0400, Allin Cottrell wrote: On Mon, 26 Sep 2005, Yury Aliaev wrote: I'm wondering whether the gdk-pixbuf library is the required part of modern gtk+ distributions (I mean 2.6.x and 2.8.x)? In other words, should I

Re: Memory question

2005-09-28 Thread Allin Cottrell
On Wed, 28 Sep 2005, David Rosal wrote: Allin Cottrell wrote: gchar *text = g_strdup_printf(banana %d, i); gtk_entry_set_text(GTK_ENTRY(entry), text); g_free(text); Is the above code really safe? Yes! A function such as gtk_entry_set_text() is bound to make a copy of the string offered

Re: z-order of gtk windows on win32

2005-10-03 Thread Allin Cottrell
On Sun, 2 Oct 2005, Hubert Sokolowski wrote: On Sat, 1 Oct 2005 09:56:40 -0400 (EDT) Allin Cottrell [EMAIL PROTECTED] wrote: When the graph-editing dialog is closed, I expect the graph window to remain above the original, main window. This is what happens on Linux, but not on win32 (same

gtk window size/position on win32?

2005-10-17 Thread Allin Cottrell
position and size (keying off the window's configure-event), but just as the gtk docs say, this does not work quite right. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list

restore size/position of gtk window

2005-10-20 Thread Allin Cottrell
the Windows taskbar. Is there any known fix for this? -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: restore size/position of gtk window

2005-10-20 Thread Allin Cottrell
On Fri, 21 Oct 2005, Tor Lillqvist wrote: Allin Cottrell writes: I posted on this topic a few days ago and didn't get a response. But so far I have found nothing that fixes window creep on win32. Is there a bugzilla bug open for this? If not, please open one. And attach a minimal

Re: restore size/position of gtk window

2005-10-20 Thread Allin Cottrell
On Thu, 20 Oct 2005, George Williams wrote: On Thu, 2005-10-20 at 16:41, Allin Cottrell wrote: This eliminates the creep. But so far I have found nothing that fixes window creep on win32. As you've probably figured out the creep is caused by the window's title bar and depends on the window

memprof problem

2005-10-24 Thread Allin Cottrell
. (All I see on stderr is memintercept (449): _MEMPROF_SOCKET = /tmp/memprof.uTNjuX memintercept (449): New process, operation = NEW, old_pid = 0 ) -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list

Re: memprof problem

2005-10-24 Thread Allin Cottrell
On Mon, 24 Oct 2005, Gus Koppel wrote: Allin Cottrell wrote: I've successfully used memprof for leak-checking my app in the past, but on trying it recently something odd happens: memprof starts up OK, and it also starts up the target program, but the target program is not visible (doesn't

Re: memprof problem

2005-10-25 Thread Allin Cottrell
On Tue, 25 Oct 2005, Olivier Sessink wrote: Allin Cottrell wrote: I've successfully used memprof for leak-checking my app in the past, but on trying it recently something odd happens: memprof starts up OK, and it also starts up the target program, but the target program is not visible (doesn't

Re: memprof problem (backtrace)

2005-10-26 Thread Allin Cottrell
- to_skip, buf + to_skip, data); } Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Gtk+ and Autoconf?

2005-10-27 Thread Allin Cottrell
; then AC_PATH_PROG(PKG_CONFIG, pkg-config, no) fi if test $PKG_CONFIG = no ; then echo *** pkg-config not found, can't build with gtk 2.0 fi PKG_CHECK_MODULES(GTK, gtk+-2.0, CFLAGS=$CFLAGS $GTK_CFLAGS LIBS=$LIBS $GTK_LIBS,) -- Allin Cottrell Department of Economics Wake Forest University, NC

Re: gtk, cairo and pdf

2005-11-04 Thread Allin Cottrell
On Fri, 4 Nov 2005, [EMAIL PROTECTED] wrote: Allin Cottrell wrote: I'm wondering if, with cairo, one can readily create (or at some point will be able to create) a gtk widget that natively displays PDF fragments? Yes, it's possible. Take a look at the application: http://www.gnome.org

Re: Warning with GTK 2.6. 8 Could not find the icon 'gnome-fs-home'

2005-11-08 Thread Allin Cottrell
the hicolor icon them from the URL given. However, the URL has changed. It's now http://icon-theme.freedesktop.org/wiki/HicolorTheme (URLS at freedesktop.org can't be expected to remain stable for more than a few weeks at a time, for some reason.) Allin Cottrell

Re: Help system library using GTK

2005-11-16 Thread Allin Cottrell
if it was just a wrapper for systems that have their own help system, such as gnome and win32), but so far as I know there's no such thing at present. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: complie error

2005-11-16 Thread Allin Cottrell
: cc `pkg-config --cflags gtk+-2.0` myfile.c \ `pkg-config --libs gtk+-2.0` \ `pkg-config --libs gthread` Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: valgrind memcheck shows gtk-hello leak memories.

2005-11-21 Thread Allin Cottrell
good results with glib when using valgrind (I think this is still good info), you should configure your glib build using the flag --enable-gc-friendly Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

crash on gtk_menu_item_expose with i18n

2006-02-01 Thread Allin Cottrell
. I've taken a look at de.po and didn't find anything weird in there. Any help would be much appreciated. Allin Cottrell Wake Forest University Backtrace follows: Using host libthread_db library /lib/libthread_db.so.1. [Thread debugging using libthread_db enabled] [New Thread -1234786640 (LWP 31478

Re: crash on gtk_menu_item_expose with i18n

2006-02-02 Thread Allin Cottrell
the German msgstr, the crashing ceased. Seems a little fragile? -- Allin Cottrell Wake Forest University ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

zipping/unzipping library?

2006-03-06 Thread Allin Cottrell
enshrined in the ODF specs, and I'd like for my app to be able to read and write ODF files. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman

Re: zipping/unzipping library?

2006-03-23 Thread Allin Cottrell
On Tue, 7 Mar 2006, Stefan Kost wrote: Allin Cottrell wrote: What I'm thinking would be useful is a library, with the portability level of glib, offering the functionality of creating and extracting files from zip archives. I was looking for similiar stuff and also found the infozip

gtk 2.8 on Windows 98

2006-06-22 Thread Allin Cottrell
to an earlier gtk version to support win98, or if there's any workaround? -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel

Re: gtk 2.8 on Windows 98

2006-06-26 Thread Allin Cottrell
On Sun, 25 Jun 2006, Tor Lillqvist wrote: Michael Torrie writes: I think only versions up to 2.6 are supported in windows 98. s/are supported/work/ Thanks. I've backed up to 2.6 and things are working again. -- Allin Cottrell Department of Economics Wake Forest University, NC

Re: platform support

2006-07-16 Thread Allin Cottrell
is a bit fiddly. There's a native OS X verson of gtk, but it's not stable yet. The alternative is running the X11 version on OS X, which is quite doable but requires quite a lot of setup. -- Allin Cottrell Department of Economics Wake Forest University, NC

Re: More widgets?

2006-09-29 Thread Allin Cottrell
On Fri, 29 Sep 2006, Juan Pablo wrote: Im looking for some widgets like meters, thermometer, tachometers... I need it for show a numeric status in a coloured - quick to see way Are there any of them already been made? www.tesla.eletrica.ufpr.br/giw Allin Cottrell

Re: Command Window with MSVC++ GTK apps

2006-10-03 Thread Allin Cottrell
-compile step. Seems like I'm linking the program wrong and then correcting it later. How do I link it right to begin with? Use Mingw gcc with the -mwindows flag. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: Segmentation fault

2006-10-21 Thread Allin Cottrell
with debugging enabled -- though you can probably get by without that unless you suspect the bug may be in gtk/glib (possible, but not likely). Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo

Re: GTK Programming with Strings

2006-10-25 Thread Allin Cottrell
Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Pango and Consolas

2006-12-05 Thread Allin Cottrell
sample preview in gedit just shows a row of boxes. I tried using the same font with pango 1.14.4 on a different machine and it works fine. Any ideas what's going on here? (Gtk is version 2.10.6 on both machines.) -- Allin Cottrell Department of Economics Wake Forest University, NC

Re: Memory Issue

2006-12-18 Thread Allin Cottrell
as if create_window1() is needed. The code is so convoluted it's hard to see how to fix it. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Memory Issue

2006-12-18 Thread Allin Cottrell
efficient (if you're not about to run out of RAM) to keep previous memory allocations cached. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Dialog-like window?

2006-12-19 Thread Allin Cottrell
gtk_main_quit() when you're good and ready. The function that calls gtk_main() will not return till gtk_main_quit() is called. If you want to prevent user interation in the meantime you'll also have to make the dialog-like window modal, though that is a separate issue. -- Allin Cottrell

Re: Treeview editable still broken, please help

2007-01-25 Thread Allin Cottrell
then you're unlikely to find much joy reporting problems since, AFAIK, nobody has worked on this for years. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Fixing size of window containing 2 buttons

2007-03-07 Thread Allin Cottrell
that to work right, but why do you want to do it? It's surely making life more difficult. Why not make the not yet button disabled (gtk_widget_set_sensitive()) until it becomes relevant? Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list

cross-compiling a GTK app, linux - darwin

2007-03-29 Thread Allin Cottrell
and cross-gcc first, of course). Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: cross-compiling a GTK app, linux - darwin

2007-03-30 Thread Allin Cottrell
tips... Thanks very much. Yes, it does look doable -- on a day when one is feeling strong! -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman

Re: Pass by reference...(easy question)

2007-05-03 Thread Allin Cottrell
(GTK_WINDOW_TOPLEVEL); printf(created new GtkWidget at %p\n, (void *) w); f2(w); printf(After f2(), w = %p\n, (void *) w); return 0; } Here, the above prints: created new GtkWidget at 0x8079000 After f1(), w = 0x8079000 created new GtkWidget at 0x80790a8 After f2(), w = (nil) Allin

multiple selection and drag-n-drop

2007-08-23 Thread Allin Cottrell
this? -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: multiple selection and drag-n-drop

2007-08-23 Thread Allin Cottrell
On Thu, 23 Aug 2007, David Ne?as (Yeti) wrote: On Thu, Aug 23, 2007 at 10:29:47AM -0400, Allin Cottrell wrote: I suppose somebody else must have come across this issue -- and if so I'd be grateful for any ideas. I have a treeview in which GTK_SELECTION_MULTIPLE is enabled

tree view column sizing problem

2007-08-28 Thread Allin Cottrell
is realized, but this results in the column immediately being autosized, making (a) useless. I guess what I'm looking for is gtk_tree_view_column_set_width() without the max. That function doesn't exist, but is there a way of doing it? Thanks for any suggestions. -- Allin Cottrell Department

Re: tree view column sizing problem

2007-08-28 Thread Allin Cottrell
On Tue, 28 Aug 2007, Dave Howorth wrote: Allin Cottrell wrote: I have a tree view with 3 columns, which sits within a scrolled window. The middle column contains what can be quite a lengthy string. When the user opens the window in question, I'd like her to be visually aware

Re: tree view column sizing problem

2007-08-28 Thread Allin Cottrell
constraint */ gtk_tree_view_column_set_max_width(col, -1); } return FALSE; } The effect is that column 1 starts at a size that allows the third column to be visible, but as soon as the user moves the mouse in the treeview window, the column becomes freely resizable. Allin

using gtkprint for images

2007-08-30 Thread Allin Cottrell
just a stub that prints got draw_page. But I get a blank PDF on output. Suggestions gratefully received. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: Setting treeview column width

2007-08-30 Thread Allin Cottrell
sizing type GTK_TREE_VIEW_COLUMN_FIXED, which it doesn't at that point in execution. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Conversion functions.

2007-09-05 Thread Allin Cottrell
generating the input file? Is it possible that it contains silly stuff such as non-breaking space (decimal 160)? Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

start-editing signal?

2007-09-21 Thread Allin Cottrell
for instance `0x822a5f0' I've verified that 0x822a5f0 is indeed the return value from gtk_cell_renderer_text_new. Can anyone tell me how to make a valid hook-up? Thanks! -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app

Re: start-editing signal?

2007-09-21 Thread Allin Cottrell
On Fri, 21 Sep 2007, Allin Cottrell wrote: I'm trying to connect a callback to start-editing on a cell renderer, but I must be doing something wrong. Duh, sorry, that should be editing-started, not start-editing. Then it works. Allin Cottrell

Re: start-editing signal?

2007-09-21 Thread Allin Cottrell
is as it was before I started; my edit-in-progress is gone. This may not be a bug as such, but I would like to know if there's a way of preserving the state of the cell-editing process, in face of the treeview window temporarily losing focus. Allin Cottrell ___ gtk

RE: start-editing signal?

2007-09-21 Thread Allin Cottrell
the effect was the same. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

RE: start-editing signal?

2007-09-21 Thread Allin Cottrell
uncommitted. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: start-editing signal?

2007-09-24 Thread Allin Cottrell
On Mon, 24 Sep 2007, Kristian Rietveld wrote: On Fri, Sep 21, 2007 at 06:05:15PM -0400, Allin Cottrell wrote: My expectation: the unfinished edit will still be in place. Actual behaviour: the bottles of coke cell is as it was before I started; my edit-in-progress is gone

Re: Don't understand valgrind output

2007-10-14 Thread Allin Cottrell
anything to do with your application as such. Valgrind is complaining about apparently uninitialized data in regard to XOpenDisplay. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk

Re: Building and packaging for Windows

2007-10-30 Thread Allin Cottrell
://ricardo.ecn.wfu.edu/~cottrell/cross-gtk/ Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

GTK win32 port: jpeg and TIFF dlls

2007-11-11 Thread Allin Cottrell
-point to make these acceptable to whatever's the Windows equivalent of ld.so? -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo

Re: GTK win32 port: jpeg and TIFF dlls

2007-11-11 Thread Allin Cottrell
redundant DLLs in such a package. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Console window opening during system() call inside GTK User Interface

2008-01-14 Thread Allin Cottrell
API: http://msdn2.microsoft.com/en-us/library/ms682425(VS.85).aspx Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GTK+ Windows dependancies

2008-01-30 Thread Allin Cottrell
no need. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GTK+ Windows dependancies

2008-01-31 Thread Allin Cottrell
space and never get used. (Although that's small beer compared to be volume of useless cr*p installed on most Windows machines.) Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk

weird i18n problem on Windows XP Home

2008-02-08 Thread Allin Cottrell
no v\'alida en la entrada de conversi\'on. Many people are running the program in Spanish without this problem; there seems to be something about this XP installation that is tricking glib. Any notions what might be wrong? -- Allin Cottrell Department of Economics Wake Forest University, NC

Re: weird i18n problem on Windows XP Home

2008-02-11 Thread Allin Cottrell
On Mon, 11 Feb 2008, Daniel Atallah wrote: On Feb 8, 2008 10:10 AM, Allin Cottrell [EMAIL PROTECTED] wrote: I've received a strange problem report about the win32 version of my GTK app running on XP Home in Spanish on an ACER 1691 laptop (setlocale gives Spanish_Spain.1252)... I don't

Re: How do I spawn an unknown viewer for a known file?

2008-03-08 Thread Allin Cottrell
viewer in a Preferences dialog. Allin Cottrell -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GLib 2.16.2 released

2008-04-01 Thread Allin Cottrell
# wget \ http://download.gnome.org/sources/glib/2.16/glib-2.16.2.tar.bz2 ... Connecting to saimei.acc.umu.se|130.239.18.138|:80... connected. HTTP request sent, awaiting response... 404 Not Found 2008-04-01 13:12:05 ERROR 404: Not Found. Allin Cottrell

GTK 3.0: an app developer's view

2008-06-16 Thread Allin Cottrell
extensively. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: sizing of toolbar

2008-06-23 Thread Allin Cottrell
On Mon, 23 Jun 2008, Santi Regueiro wrote: On Mon, Jun 23, 2008 at 17:55, Allin Cottrell [EMAIL PROTECTED] wrote: Any suggestions gratefully received. Have you tried this? : gtk_toolbar_set_show_arrow () voidgtk_toolbar_set_show_arrow (GtkToolbar *toolbar

Re: sizing of toolbar

2008-06-23 Thread Allin Cottrell
On Mon, 23 Jun 2008, K J wrote: I think you could use a layout component so you can put your toolbar of any size. Thanks, but I just wanted the toolbar to show at its natural size -- and supressing show_arrow did that. Allin Cottrell. ___ gtk-app

Re: Running application on WindowsXP automatically MS-DOS prompt ???

2008-07-27 Thread Allin Cottrell
application. (Actually, it's not an ms-dos shell, it's a Windows console.) -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app

Re: Key handling problems

2008-09-17 Thread Allin Cottrell
, then return TRUE instead. -- Allin Cottrell Department of Economics Wake Forest University, NC ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Key handling problems

2008-09-18 Thread Allin Cottrell
that out (I thought you said something to that effect). As for the rest, check out the Gdk documentation, e.g. http://library.gnome.org/devel/gdk/stable/gdk-Windows.html Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
I get: destroying dialog (gretl:15258): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed dialog destroyed Any ideas on what's going on? -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
On Fri, 26 Sep 2008, Tor Lillqvist wrote: Any ideas on what's going on? http://bugzilla.gnome.org/show_bug.cgi?id=553135#c8 ? Thanks, got it. -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app-devel-list mailing list

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
. -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
On Fri, 26 Sep 2008, Michael Natterer wrote: On Fri, 2008-09-26 at 14:29 -0400, Allin Cottrell wrote: On Fri, 26 Sep 2008, Tor Lillqvist wrote: Any ideas on what's going on? http://bugzilla.gnome.org/show_bug.cgi?id=553135#c8 ? On closer inspection, I see that Michael

Re: how to display busy cursor ? and another question

2008-10-04 Thread Allin Cottrell
); gdk_cursor_unref(cursor); /* do time-consuming stuff here */ gdk_window_set_cursor(window, NULL); } (Sorry, I pass on question 2.) Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman

Re: how to display busy cursor ? and another question

2008-10-06 Thread Allin Cottrell
will fall out of scope when the enclosing function returns. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

MS Windows packages and modularity

2008-10-20 Thread Allin Cottrell
to a monolithic build, so that a gtk app won't start without having the tiff and jpeg libraries installed, even if they're never used. Was there a compelling reason for this reversion? Any chance of getting a modular build again? Thanks. -- Allin Cottrell Department of Economics Wake Forest

Re: MS Windows packages and modularity

2008-10-20 Thread Allin Cottrell
On Mon, 20 Oct 2008, Daniel Atallah wrote: On Mon, Oct 20, 2008 at 12:01 PM, Allin Cottrell [EMAIL PROTECTED] wrote: But I see that the current GTK 2.14.4 package ( http://www.gtk.org/download-windows.html ) has reverted to a monolithic build, so that a gtk app won't start without having

Re: MS Windows packages and modularity

2008-10-20 Thread Allin Cottrell
specialized functionality that, I suspect, few will need. (I'd place PNG functionality in a different category since in many ways it's treated as native in GTK.) -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app-devel-list

Re: g_spawn_async_with_pipes() vs system()

2008-10-25 Thread Allin Cottrell
, NULL, NULL, error); if (!ok) { fprintf(stderr, error: '%s'\n, error-message); g_error_free(error); } return !ok; } int main (void) { sample_spawn(); return 0; } Allin

Re: another memory leak

2008-10-31 Thread Allin Cottrell
. valgrind, which is what you should be using, shows no leak on GTK's part in this example. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: glib preprocessor strangeness

2008-12-30 Thread Allin Cottrell
/mingw32/lib/glib-2.0/include/glibconfig.h Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: some erros

2009-01-15 Thread Allin Cottrell
(GTK_DIALOG (chooser)) == GTK_RESPONSE_ACCEPT) { char *filename; filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (chooser)); g_print (filename); } gtk_widget_destroy (chooser); how I can add filter to my chooser?? By using gtk_file_chooser_set_filter(). Allin

Re: Suggestion, adding a valid glibconfig.h to win32 download bundle

2009-01-16 Thread Allin Cottrell
the library yourself, you just have to get the include paths right. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

latest glib and gtk for Windows?

2009-04-19 Thread Allin Cottrell
I don't mean to be a pest, but when might glib 2.20.1 and gtk 2.16.1 become available at http://www.gtk.org/download-windows.html ? The reason I ask is that it looks as if GTK 2.16.1 in particular contains lots of useful fixes. -- Allin Cottrell Department of Economics Wake Forest University

Re: latest glib and gtk for Windows?

2009-04-21 Thread Allin Cottrell
On Tue, 21 Apr 2009, Tor Lillqvist wrote: Soon... The binaries are at the usual place... Thanks! -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: Problem with installing GTK+-2.0.0 on Fedora Core 6

2009-05-09 Thread Allin Cottrell
manager will refuse to update GLib beyond 2.4, but the argument given seems wrong: aren't the even-numbered GLib releases all ABI-compatible? That is, updating from 2.4 to 2.12 shouldn't break anything. Allin Cottrell ___ gtk-app-devel-list mailing list gtk

small regression in gtk 2.16.2?

2009-06-05 Thread Allin Cottrell
**: gdk_x11_atom_to_xatom_for_display: assertion `atom != GDK_NONE' failed when the Close button is clicked. -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

GTK clipboard on OS X

2009-07-17 Thread Allin Cottrell
. If this a known issue of GTK/X11 on the Mac? Is there a workaround? Or does it look as if I'm doing something wrong? Thanks. Allin Cottrell ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app

  1   2   3   >