In my application I load gmodel file:
[NSBundle loagGModelNamed: ... owner ...].
After loading gmodel I need to do some settings of objects from gmodel
file.
In Openstep 4.2 I do this settings in method -awakeFromNib, but in
GNUstep this
method isn't invoked.
The second problem is:
I have matrix with some cells. When I set cell int value, the matrix
isn't
redrawed automatically:
[[myMatrix cellWithTag: x] setIntValue: i];
[myMtarix setNeedsDisplay: YES]; // In Openstep 4.2 this line is
unneeded.
The third problem is:
The some methodes:
[NSEvent keyCode],
[NSEvent charakterIgnoringModifiers] are not fully implemented.
- (unsigned short) keyCode; ussually return a zero value
- (NSString *) charakterIgnoringModifiers; return a empty string for
keys F1-F12 (on Openstep 4.2 return unicode string).
I need to do some action on some keys for example such as: Ctrl+F5,
Alt+F5,
Shift+Alt+F5, Ctrl+ArrowUp, Cmd+F5 etc. How can I do it in GNUstep ?
I still have problem with loading NSImage to NSCursor (-
initWithImage...) When I use a Smile.tiff image from Test gnustep
directory, this image is drawed as filled orange circle, not as smile
face.
It's possible to use some other format than tiff ? (How can I create my
own image for NSCursor ?)
Jan Trembulak
[EMAIL PROTECTED]