mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 16:00:37 +00:00
Final tweaks?
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17305 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
56b238da25
commit
32fce62555
3 changed files with 9 additions and 7 deletions
|
@ -15,7 +15,9 @@
|
||||||
* Source/NSPasteboard.m: ditto
|
* Source/NSPasteboard.m: ditto
|
||||||
* Source/NSView.m: ditto
|
* Source/NSView.m: ditto
|
||||||
* Source/NSBezierPath.m: ditto
|
* Source/NSBezierPath.m: ditto
|
||||||
|
* Source/NSGraphicsContext.m: ditto
|
||||||
* Headers/gnustep/gui/NSBezierPath.h: ditto
|
* Headers/gnustep/gui/NSBezierPath.h: ditto
|
||||||
|
* Headers/gnustep/gui/NSMenu.h: ditto
|
||||||
|
|
||||||
2003-07-22 Andrew Ruder <aeruder@ksu.edu>
|
2003-07-22 Andrew Ruder <aeruder@ksu.edu>
|
||||||
|
|
||||||
|
|
|
@ -348,7 +348,7 @@ to keep the following information in mind.
|
||||||
<item> The menus (or the menu items) form a tree. Navigating through this tree
|
<item> The menus (or the menu items) form a tree. Navigating through this tree
|
||||||
is done with the methods [NSMenu-supermenu], which returns the parent menu
|
is done with the methods [NSMenu-supermenu], which returns the parent menu
|
||||||
of the receiver, and with [NSMenu-itemAtIndex:] which returns a
|
of the receiver, and with [NSMenu-itemAtIndex:] which returns a
|
||||||
NSMenuItem on which we can call [NSMenuItem-submenu] for a child menu.
|
NSMenuItem on which we can call [(NSMenuItem)-submenu] for a child menu.
|
||||||
</item>
|
</item>
|
||||||
<item> The menus as displayed on the screen do NOT form a tree.
|
<item> The menus as displayed on the screen do NOT form a tree.
|
||||||
This because detached and transient menus lead to duplicate menus on the screen.
|
This because detached and transient menus lead to duplicate menus on the screen.
|
||||||
|
|
|
@ -814,7 +814,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
||||||
/* ----------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------- */
|
||||||
/** Displays a string as in the PostScript ashow operator. This operator
|
/** Displays a string as in the PostScript ashow operator. This operator
|
||||||
is obsolete. You should instead use -DPSshow: with appropriate
|
is obsolete. You should instead use -DPSshow: with appropriate
|
||||||
-DPSrmoveto: operations and/or the -GSSetCharacterSpacing: method
|
-DPSrmoveto:: operations and/or the -GSSetCharacterSpacing: method
|
||||||
*/
|
*/
|
||||||
- (void) DPSashow: (float)x : (float)y : (const char *)s
|
- (void) DPSashow: (float)x : (float)y : (const char *)s
|
||||||
{
|
{
|
||||||
|
@ -823,7 +823,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
||||||
|
|
||||||
/** Displays a string as in the PostScript awidthshow operator. This operator
|
/** Displays a string as in the PostScript awidthshow operator. This operator
|
||||||
is obsolete. You should instead use -DPSshow: with appropriate
|
is obsolete. You should instead use -DPSshow: with appropriate
|
||||||
-DPSrmoveto: operations and/or the -GSSetCharacterSpacing: method
|
-DPSrmoveto:: operations and/or the -GSSetCharacterSpacing: method
|
||||||
*/
|
*/
|
||||||
- (void) DPSawidthshow: (float)cx : (float)cy : (int)c : (float)ax : (float)ay : (const char *)s
|
- (void) DPSawidthshow: (float)cx : (float)cy : (int)c : (float)ax : (float)ay : (const char *)s
|
||||||
{
|
{
|
||||||
|
@ -846,7 +846,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
||||||
|
|
||||||
/** Displays a string as in the PostScript widthshow operator. This operator
|
/** Displays a string as in the PostScript widthshow operator. This operator
|
||||||
is obsolete. You should instead use -DPSshow: with appropriate
|
is obsolete. You should instead use -DPSshow: with appropriate
|
||||||
-DPSrmoveto: operations.
|
-DPSrmoveto:: operations.
|
||||||
*/
|
*/
|
||||||
- (void) DPSwidthshow: (float)x : (float)y : (int)c : (const char *)s
|
- (void) DPSwidthshow: (float)x : (float)y : (int)c : (const char *)s
|
||||||
{
|
{
|
||||||
|
@ -855,7 +855,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
||||||
|
|
||||||
/** Displays a string as in the PostScript widthshow operator. This operator
|
/** Displays a string as in the PostScript widthshow operator. This operator
|
||||||
is obsolete. You should instead use -DPSshow: with appropriate
|
is obsolete. You should instead use -DPSshow: with appropriate
|
||||||
-DPSrmoveto: operations.
|
-DPSrmoveto:: operations.
|
||||||
*/
|
*/
|
||||||
- (void) DPSxshow: (const char *)s : (const float*)numarray : (int)size
|
- (void) DPSxshow: (const char *)s : (const float*)numarray : (int)size
|
||||||
{
|
{
|
||||||
|
@ -864,7 +864,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
||||||
|
|
||||||
/** Displays a string as in the PostScript xyshow operator. This operator
|
/** Displays a string as in the PostScript xyshow operator. This operator
|
||||||
is obsolete. You should instead use -DPSshow: with appropriate
|
is obsolete. You should instead use -DPSshow: with appropriate
|
||||||
-DPSrmoveto: operations.
|
-DPSrmoveto:: operations.
|
||||||
*/
|
*/
|
||||||
- (void) DPSxyshow: (const char *)s : (const float*)numarray : (int)size
|
- (void) DPSxyshow: (const char *)s : (const float*)numarray : (int)size
|
||||||
{
|
{
|
||||||
|
@ -873,7 +873,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
||||||
|
|
||||||
/** Displays a string as in the PostScript yshow operator. This operator
|
/** Displays a string as in the PostScript yshow operator. This operator
|
||||||
is obsolete. You should instead use -DPSshow: with appropriate
|
is obsolete. You should instead use -DPSshow: with appropriate
|
||||||
-DPSrmoveto: operations.
|
-DPSrmoveto:: operations.
|
||||||
*/
|
*/
|
||||||
- (void) DPSyshow: (const char *)s : (const float*)numarray : (int)size
|
- (void) DPSyshow: (const char *)s : (const float*)numarray : (int)size
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue