Re: gtk installation help needed!!

2006-07-11 Thread Matt Hull
did configure fail ? and is there an rmp for that ? i am not a redhat person but thought there was yum to install that. matt On Mon, 10 Jul 2006, justforfun wrote: My redhat enterprise 4 had gtk installed, works fine for me. However, I have a Fedora new machine now, which does not have gtk

Re: C/GTK question

2006-06-17 Thread Matt Hull
you never include c source files. only header files. might have main.c, stuff.c and stuff.h stuff.h will have int myfunc(); /* function prototype */ stuff.c will have int fyfunc(){ return 0 }; /* the fuction code */ stuff.c and main.c will include both: #include stuff.h i dont think

Re: Application runs slowly, crashes when wiggling the mouse quickly

2006-06-16 Thread Matt Hull
are you using multiple threads ? i would assume not. perhaps put the serial port code in another thread. and leave the gtk user inferace in the main thread. matt On Thu, 15 Jun 2006 [EMAIL PROTECTED] wrote: I'm writing an application that makes fairly heavy use of the serial port. While

Re: Weird Segfaulting

2006-05-19 Thread Matt Hull
i would use gdb. tells you what line segfaulted. On Fri, 19 May 2006, Jordan Walsh wrote: Ok. I have been scratching my head on this one for a couple days now. First here is the code: http://dega.hopto.org/database.c The problem is this. That read_dir works fine, the first time it is run.

Re: Rebooting the System

2006-04-13 Thread Matt Hull
a gentoo package installation doesnt require a reboot. matt On Thu, 13 Apr 2006, Justin Clift wrote: Liam R E Quin wrote: snip Root password should not be prompted for in a gtk-engine-themed window, of course... snip Out of curiosity, why is this bad? I was looking into this a while

Re: How to identify the idle state of the GTK+ application?

2006-02-15 Thread Matt Hull
i didnt think the application should do that. is that a task for the window manager ? matt On Wed, 15 Feb 2006, sadhees kumar wrote: Friends, In my GTK application, If no action(event) is taken place in the screen, I need to turn OFF the backlight of an TFT monitor. If any key

Re: How to identify the idle state of the GTK+ application?

2006-02-15 Thread Matt Hull
that like what gaim does ? matt On Wed, 15 Feb 2006, Martyn Russell wrote: On Wed, 2006-02-15 at 17:46 +0600, sadhees kumar wrote: Friends, In my GTK application, If no action(event) is taken place in the screen, I need to turn OFF the backlight of an TFT monitor. If any key

Re: defective GTK app crashes gnome

2006-02-07 Thread Matt Hull
On Tue, 7 Feb 2006, Ricardo Malafaia wrote: On 2/6/06, Michael Torrie [EMAIL PROTECTED] wrote: This is new news to me. The only thing that I know of that would make a machine lock up so as to require a reboot is a memory leak or some obscure X11 bug. Actually, i've had several

Re: Gtk with shellscript

2006-02-04 Thread Matt Hull
not sure what you are doing with the script. does it need to return to gtk? might be able to fork the process or use a thread. matt On Sat, 4 Feb 2006, Sandeep KS wrote: Hello, I have a problem with combining gtk with shell scripts. I have a shellscript which performs some function

Re: gtk strange behavior

2006-01-28 Thread Matt Hull
i thought it was best to have all the gui code in one thread, and all the core or processing in another ? matt On Sat, 28 Jan 2006, kornelix wrote: I got no help so far on the questions below. Perhaps they were too naive for this group. Re: multi-thread GTK apps I found some help in the

Re: programming practices with regard to gtk and networking

2006-01-25 Thread Matt Hull
how did you do it in java ? On Wed, 25 Jan 2006, Ken Nagorski wrote: Hi there, I just started working with GTK. I have a some background with C which means I can do OK but when it comes to working with the two together it gets harder... My question is really this. I have a very simple IM

Re: Re: Urgent need inf

2006-01-10 Thread Matt Hull
i am not a qt expert just a newbie. but that is not a lot of ram. maybe test on another machine too. also, waht other processes are running. i am guessing and this might not help at all... matt On Tue, 10 Jan 2006, umesh wrote: Dear Gravis first of all thanks a lot for ur

Re: Re: Button can't be clicked.

2005-12-21 Thread Matt Hull
i noticed that on xfce4 when i log off and it ask are you sure. sometimes the ok buttons wouldnt work. h no i know why matt On Wed, 21 Dec 2005, Matthias Clasen wrote: On Thu, 2005-12-22 at 02:41 +0900, [EMAIL PROTECTED] wrote: Thank you for your response. Yes, I can reproduce

Re: Gtk+ Version compatibilty?

2005-12-19 Thread Matt Hull
On Mon, 19 Dec 2005, Daniel Pekelharing wrote: On Mon, 2005-12-19 at 19:49 +0100, Maciej Piechotka wrote: 2005/12/19, Matt Hull [EMAIL PROTECTED]: On Sun, 18 Dec 2005, Daniel Pekelharing wrote: On Sun, 2005-12-18 at 15:29 +0100, David Necas (Yeti) wrote: I'd recommend to simply

drawing an RGB bitmap or pixbuf

2005-12-12 Thread Matt Hull
I am new to gtk and trying to draw a bitmap to the screen. the bitmap is about 200 by 300 pixels with 8 bit rgb, total is 24 bits. alpha is optional at the moment. for now it is 0xff. i have tried many different examples from the internet but none seem to work. can anyone give me an example ?