Re: Status of Objective C GTK+ bindings

2000-10-26 Thread Bruce Ide
bjective C does automatically which are very unintuitive to implement in C++. Of course, I'm doing most of my work these days with C++ and gtk--... -- Bruce Ide[EMAIL PROTECTED] http://www.paratheoanametamystikhood.net ___

Re: getting the active window

2000-10-23 Thread Bruce Ide
manually? You can probably query your widgets to see if they think they have the focus too... -- Bruce Ide[EMAIL PROTECTED] http://www.paratheoanametamystikhood.net ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: Text Resizing .. again

2000-10-13 Thread Bruce Ide
ation to get resized once and then never again, it might be better just to let the user specify the font or pull the font out of the GTK theme. -- Bruce Ide[EMAIL PROTECTED] http://www.paratheoanametamystikhood.net ___

Re: Wheel mice

2000-09-18 Thread Bruce Ide
behavioral inconsistencies between your applications WILL drive you crazy. If I were looking to implement this stuff natively, I'd do it in the X server. Don't they have wheel functionality in Xfree 4.x? Wheel mice have been around forever now... -- Bruce Ide

Re: threads

2000-08-16 Thread Bruce Ide
e able to turn up some example code on doing something similar using SysV message queues and signal handling. If you're interested in that, drop me a note. -- Bruce Ide [EMAIL PROTECTED] http://www.paratheoanametamystikhood.net ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: slots & callbacks

2000-08-03 Thread Bruce Ide
ror messages. About as useful as tits on a bull... I _think_ it's griping because your method has a parameter. Try removing the parameter from Callback (So it just expects nothing) and see if that doesn't fix the problem. -- Bruce Ide [EMAIL PROT

Re: gtk-timer

2000-08-03 Thread Bruce Ide
t the magic number in OS/2 was about 30 ms (For whatever that's worth.) -- Bruce Ide [EMAIL PROTECTED] "GP: Is Eris True?" "M2: Everything is true." "GP: Even false things?" "M2: Even false things are true." "GP

Re: Thoughts about Kde, Gnome, and Staying Neutral (Was gtk-term widget?)

2000-06-13 Thread Bruce Ide
and leading the team to make the final decisions as to what goes in and what doesn't. Given the massive amount of chaos this process should be generating, it's amazing how well it works. -- Bruce Ide [EMAIL PROTECTED] Paid for by the Committee

Re: gtk-term widget?

2000-06-12 Thread Bruce Ide
UX, Solaris and SCO and were just adding a Linux port of our software. Actually we rewrote the software in Linux (With a GTK front end :-) and started back-porting it to the other unices. Interesting work, really, if I didn't also have to deal with OS/2 and Windows there, I'd have stayed. -

Re: Thoughts about Kde, Gnome, and Staying Neutral (Was gtk-term widget?)

2000-06-12 Thread Bruce Ide
nd yes, I'm doing corporate development too, and every so often I do gnash my teeth at something or other. But I respect how this community works. Hell, I actually really dig it. I much prefer to work this way. -- Bruce Ide [EMAIL PROTECTED] "C h

Re: [GTK] Need advice from the gurus

2000-06-09 Thread Bruce Ide
if you're wanting to be on the bleeding edge, you won't have much luck with it. -- Bruce Ide [EMAIL PROTECTED] "C has all the power of assembly language combined with all the ease of programming of assembly language." __

Re: C question

2000-06-05 Thread Bruce Ide
tuff buffer overflows are made of. You can insure the size either by putting a NULL at MAX_G_CHAR_SIZE-1 in your string before you do your strcpy, or you could use one of the non-standard strncpy functions. If strncpy is not included on your version of UNIX, you might consider impl

Re: C question

2000-06-05 Thread Bruce Ide
string into the new storage. If you do that, it's also good form to free all the junk you allocated before you exit the program. Oh, and don't use global variables. Global variables cause cancer. You will want to put a lot of study into the behavior

Re: Button accelerators

2000-05-26 Thread Bruce Ide
I just ran across that, hmm. Oh. It was for the label widget. I'd guess that the button contains a label widget. If you can get at it, you can use the gtk_label_set_pattern on it to underline the text you want to underline. You're on your own with accelerators, though. I haven't nee