Re: GNU Hackers Meeting in Paris, Aug. 25-28

2011-04-28 Thread Fred Kiefr
I would be interested to come, but only if the meeting isn't in french. Paris is now only a few hours train drive away. Fred On the road Am 27.04.2011 um 11:24 schrieb Quentin Mathé : > Le 27 avr. 2011 à 11:44, Ludovic Courtès a écrit : > >> Hi Quentin, >> >> Quentin Mathé writes: >> >>> L

Re: GNU Hackers Meeting in Paris, Aug. 25-28

2011-04-28 Thread Quentin Mathé
Well, I can refrain to speak in French for sure :-) The GNU announcement page is in English btw, so that looks like the official language for the meeting ;-) Quentin. Le 28 avr. 2011 à 12:02, Fred Kiefr a écrit : > I would be interested to come, but only if the meeting isn't in french. Paris >

Web browser developement using GNUstep

2011-04-28 Thread Jalindar
Dear all, i am developing simple web browser in gnustep. I have installed gnustep and using Foundation and Appkit. i want to download simple HTML web page. i have seen GNUstep manul (http://www.gnu.org/software/gnustep/resources/documentation/Developer/Base/ProgrammingManual/manual_8.html#Networ

Re: GNU Hackers Meeting in Paris, Aug. 25-28

2011-04-28 Thread Ludovic Courtès
Hi Fred, Fred Kiefr writes: > I would be interested to come, but only if the meeting isn't in > french. Paris is now only a few hours train drive away. Great, I’ll add you to the list. The meeting obviously won’t be in French as there will be a number of non-French speaking people in the audie

Re: remove -removeSubview:

2011-04-28 Thread Quentin Mathé
Le 27 avr. 2011 à 13:23, Banlu Kemiyatorn a écrit : > On Wed, Apr 27, 2011 at 5:52 PM, Quentin Mathé wrote: >> If we support -setSubviews: and we try to leverage it as you suggest… >> According to Cocoa documentation -subviews doesn't return a defensive copy, >> hence in -removeFromSuperviewXXX

Re: Web browser developement using GNUstep

2011-04-28 Thread Stefan Bidi
Take a look at SimpleWebKit ( http://svn.gna.org/viewcvs/gnustep/libs/simplewebkit/trunk/) as it probably already everything you want to do. As far as I understand, it's also a drop-in replacement for full WebKit, just not as complete. If you want a browser to go with it check Vespucci ( http://g

Re: remove -removeSubview:

2011-04-28 Thread Quentin Mathé
Le 28 avr. 2011 à 06:56, Banlu Kemiyatorn a écrit : > * Forgot not to modify the array during the enumeration. > * Remove the extra subviews to improve the lookup speed on additions. > > why it's _sub_views and not _subviews? I don't know, but I have observed that various GNUstep classes written

Re: remove -removeSubview:

2011-04-28 Thread Banlu Kemiyatorn
> > - (void) willRemoveSubview: (id)subview > > { > >     [_subviews removeObject:subview]; > > } > > This looks like a bad idea, because NSView methods such as -willXXX or > -didXXX are all delegate-like methods to be "implemented" in the > subclass (you don't have to worry about calling 'super'

Re: remove -removeSubview:

2011-04-28 Thread Banlu Kemiyatorn
- Original message - > > * Forgot not to modify the array during the enumeration. > > * Remove the extra subviews to improve the lookup speed on additions. > > > > why it's _sub_views and not _subviews? > > I don't know, but I have observed that various GNUstep classes written a > long ag

Re: [ANN][WIP] Library & app for 3D visualization system

2011-04-28 Thread Banlu Kemiyatorn
I just try gcc-snapshot from new Ubuntu and I can build Objective-C++ with it now. It failed on some methods that look like message::, ie. having any argument w/o textDescription: But at least it doesn't crash like clang on some cases (sorry but C++ code was killing enough of my not-so-much-left ne

Re: [ANN][WIP] Library & app for 3D visualization system

2011-04-28 Thread Nicola Pero
> I just try gcc-snapshot from new Ubuntu and I can build Objective-C++ > with it now. It failed on some methods that look like message::, ie. > having any argument w/o textDescription: I tried a few variants but couldn't reproduce the problem (using GCC trunk). Can you send me an example of the l

Re: [ANN][WIP] Library & app for 3D visualization system

2011-04-28 Thread Banlu Kemiyatorn
-- Sent from my GNU/Linux N900 - Original message - > > I just try gcc-snapshot from new Ubuntu and I can build Objective-C++ > > with it now. It failed on some methods that look like message::, ie. > > having any argument w/o textDescription: > > I tried a few variants but couldn't rep