tags:

views:

31

answers:

1

Hi All,

Is there any class in Linux system which is compatible to NSTextView in cocoa framework.

+1  A: 

Unless you're using GNUstep, Linux doesn't include any Objective-C classes, much less NSTextView. If you are using GNUstep, then NSTextView would be the obvious answer.

Linux does have its own APIs for creating text entry controls, but they're very different from the ones in OpenStep/Cocoa.

Chuck
@Chuck Can you please get me the link for it with some sample example.
iSight
@iSight: Some sample code using the GtkTextView API: http://www.bravegnu.org/gtktext/ — But I mean, I think you'll want to learn GTK rather than just which API is roughly equivalent to NSTextView.
Chuck