For example, in GORM when you add a new component in your app's window and you select this, the component show a border with a small square in each corner and in the middle of each side. These let you resize the component. Now, in my app I can resize the NSText, but this don't have any kid of border. My question is, is there a method or class to set this kind of border? or I need make this? Regards and thanks for help.
--- El sáb 16-ago-08, Fred Kiefer <fredkiefer@gmx.de> escribió:
De: Fred Kiefer <fredkiefer@gmx.de> Asunto: Re: Some questions about NSText A: "Germán Arias" <germanandre304@yahoo.com> Cc: discuss-gnustep@gnu.org Fecha: sábado, 16 agosto, 2008, 12:32 pm
Germán Arias
wrote: > Hi, I have an app that adds NSText in my document, and I can move and resize > these. But, when I resize these NSText the area of text is the same, never > change. For example, if I duplicate the width of an NSText, I don't get double > area to write. What is the problem? Other thing, Is there a way to set a image > of resizable border? Or I need make and draw this? Regards and thanks for your > help. >
What you need to do is set setWidthTracksTextView: to YES on the underlying NSTextContainer. Bt you need to be careful here, you cannot have the NSTextView resize to the entered text and the NSTextContainer to adopt to the size of the NSTextView. There should be some explanation on that in the Apple documentation.
I did not understand your question about images, what are you wanting to do?
Fred
|