mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
More documentation tidyups
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17302 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
62c7345c03
commit
daf5efadae
5 changed files with 11 additions and 6 deletions
|
@ -10,6 +10,10 @@
|
|||
* Source/NSPopUpButtonCell.m: ditto
|
||||
* Source/NSTextContainer.m: ditto
|
||||
* Source/NSWorkspace.m: ditto
|
||||
* Source/NSFont.m: ditto
|
||||
* Source/NSOpenPanel.m: ditto
|
||||
* Source/NSPasteboard.m: ditto
|
||||
* Source/NSView.m: ditto
|
||||
|
||||
2003-07-22 Andrew Ruder <aeruder@ksu.edu>
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ newNameWithMatrix(NSString *name, const float *matrix, BOOL fix,
|
|||
|
||||
<p>The NSFont class allows control of the fonts used for displaying
|
||||
text anywhere on the screen. The primary methods for getting a
|
||||
particular font are -fontWithName:matrix: and -fontWithName:size: which
|
||||
particular font are +fontWithName:matrix: and +fontWithName:size: which
|
||||
take the name and size of a particular font and return the NSFont object
|
||||
associated with that font. In addition there are several convenience
|
||||
mathods which make it easier to get certain types of fonts. </p>
|
||||
|
|
|
@ -247,7 +247,7 @@ static NSOpenPanel *_gs_gui_open_panel = nil;
|
|||
or NSCancelButton depending on which button the user pressed.
|
||||
</p>
|
||||
<p>
|
||||
Use the -filename or -filenames: method to retrieve the name of the
|
||||
Use the -filename or -filenames method to retrieve the name of the
|
||||
file the user selected.
|
||||
</p>
|
||||
*/
|
||||
|
|
|
@ -2257,6 +2257,7 @@ NSCreateFileContentsPboardType(NSString *fileType)
|
|||
* [NSPasteboard-propertyListForType:] method.
|
||||
* </p>
|
||||
* <p>See also the NSGetFileType() and NSGetFileTypes() functions.
|
||||
* </p>
|
||||
*/
|
||||
NSString*
|
||||
NSCreateFilenamePboardType(NSString *fileType)
|
||||
|
|
|
@ -2113,7 +2113,7 @@ in the main thread.
|
|||
}
|
||||
|
||||
/**
|
||||
* As an exception to the general rules for threads and -gui, this
|
||||
* As an exception to the general rules for threads and gui, this
|
||||
* method is thread-safe and may be called from any thread. Display
|
||||
* will always be done in the main thread. (Note that other methods are
|
||||
* in general not thread-safe; if you want to access other properties of
|
||||
|
@ -2181,7 +2181,7 @@ in the main thread.
|
|||
* requires updating. This automatically informs any superviews of
|
||||
* any updating they need to do.
|
||||
*
|
||||
* As an exception to the general rules for threads and -gui, this
|
||||
* As an exception to the general rules for threads and gui, this
|
||||
* method is thread-safe and may be called from any thread. Display
|
||||
* will always be done in the main thread. (Note that other methods are
|
||||
* in general not thread-safe; if you want to access other properties of
|
||||
|
@ -2634,7 +2634,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
|
|||
|
||||
|
||||
/**
|
||||
* <p>The effect of the -setNextkeyView: method is to set aView to be the
|
||||
* <p>The effect of the -setNextKeyView: method is to set aView to be the
|
||||
* value returned by subsequent calls to the receivers -nextKeyView method.
|
||||
* This also has the effect of setting the previous key view of aView,
|
||||
* so that subsequent calls to its -previousKeyView method will return
|
||||
|
@ -2642,7 +2642,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
|
|||
* </p>
|
||||
* <p>As a special case, if you pass nil as aView then the -previousKeyView
|
||||
* of the receivers current -nextKeyView is set to nil as well as the
|
||||
* receivers -nextKeyView: being set to nil.<br />
|
||||
* receivers -nextKeyView being set to nil.<br />
|
||||
* This behavior provides MacOS-X compatibility.
|
||||
* </p>
|
||||
* <p>If you pass a non-view object other than nil, an
|
||||
|
|
Loading…
Reference in a new issue