mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-04 16:10:41 +00:00
Improved documentation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22092 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b475e5a119
commit
ab1144f11b
2 changed files with 15 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
* Source/NSPageLayout.m: Improved documentation
|
* Source/NSPageLayout.m: Improved documentation
|
||||||
* Source/NSPopUpButton.m: Improved documentation
|
* Source/NSPopUpButton.m: Improved documentation
|
||||||
* Source/NSSavePanel.m: Improved documentation
|
* Source/NSSavePanel.m: Improved documentation
|
||||||
|
* Source/NSScrollView.m: Improved documentation
|
||||||
|
|
||||||
2005-11-22 Richard Frith-Macdonald <rfm@gnu.org>
|
2005-11-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -1033,26 +1033,40 @@ static float scrollerWidth;
|
||||||
return _borderType;
|
return _borderType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** <p>Returns whether the NSScrollView has a horizontal ruler</p>
|
||||||
|
<p>See Also: -setHasHorizontalRuler:</p>
|
||||||
|
*/
|
||||||
- (BOOL) hasHorizontalRuler
|
- (BOOL) hasHorizontalRuler
|
||||||
{
|
{
|
||||||
return _hasHorizRuler;
|
return _hasHorizRuler;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** <p>Returns whether the NSScrollView has a horizontal scroller</p>
|
||||||
|
<p>See Also: -setHasHorizontalScroller:</p>
|
||||||
|
*/
|
||||||
- (BOOL) hasHorizontalScroller
|
- (BOOL) hasHorizontalScroller
|
||||||
{
|
{
|
||||||
return _hasHorizScroller;
|
return _hasHorizScroller;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** <p>Returns whether the NSScrollView has a vertical ruler</p>
|
||||||
|
<p>See Also: -setHasVerticalRuler:</p>
|
||||||
|
*/
|
||||||
- (BOOL) hasVerticalRuler
|
- (BOOL) hasVerticalRuler
|
||||||
{
|
{
|
||||||
return _hasVertRuler;
|
return _hasVertRuler;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** <p>Returns whether the NSScrollView has a vertical scroller</p>
|
||||||
|
<p>See Also: -setHasVerticalScroller:</p>
|
||||||
|
*/
|
||||||
- (BOOL) hasVerticalScroller
|
- (BOOL) hasVerticalScroller
|
||||||
{
|
{
|
||||||
return _hasVertScroller;
|
return _hasVertScroller;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**<p>Returns the size of the NSScrollView's content view</p>
|
||||||
|
*/
|
||||||
- (NSSize) contentSize
|
- (NSSize) contentSize
|
||||||
{
|
{
|
||||||
return [_contentView bounds].size;
|
return [_contentView bounds].size;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue