mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 16:31:55 +00:00
Fixed markup errors in the combo box related documentation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19847 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2543733929
commit
815322eec3
3 changed files with 21 additions and 8 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-08-08 Quentin Mathe <qmathe@club-internet.fr>
|
||||||
|
|
||||||
|
* Source/NSComboBox.m:
|
||||||
|
* Source/NSComboBoxCell.m:
|
||||||
|
Fixed the class description markup errors which caused text
|
||||||
|
truncations in the documentation.
|
||||||
|
|
||||||
2004-08-08 01:19 Chad Hardin <cehardin@mac.com>
|
2004-08-08 01:19 Chad Hardin <cehardin@mac.com>
|
||||||
|
|
||||||
* Source/NSPageLayout.m: Ensure that the units on the panel
|
* Source/NSPageLayout.m: Ensure that the units on the panel
|
||||||
|
|
|
@ -39,19 +39,22 @@ static NSNotificationCenter *nc;
|
||||||
/**
|
/**
|
||||||
<unit>
|
<unit>
|
||||||
<heading>Class Description</heading>
|
<heading>Class Description</heading>
|
||||||
An NSComboBox is what we can call a completion/choices box, derived from
|
<p>An NSComboBox is what we can call a completion/choices box, derived from
|
||||||
NSTextField, it allows you to enter text like in a text field but also to click
|
NSTextField, it allows you to enter text like in a text field but also to click
|
||||||
in the ellipsis button (indicating the fact other user inputs are possible) on
|
in the ellipsis button (indicating the fact other user inputs are possible) on
|
||||||
the right of it to obtain a list of choices, you can use them as the text field
|
the right of it to obtain a list of choices, you can use them as the text field
|
||||||
value by selecting a row in this list. You can also obtain direct completion
|
value by selecting a row in this list. You can also obtain direct completion
|
||||||
when it is enabled via <code>setCompletes:</code> to get a suggested text
|
when it is enabled via <code>setCompletes:</code> to get a suggested text
|
||||||
field value updated as you type.
|
field value updated as you type.</p>
|
||||||
Like other NSControl classes, NSComboBox is a wrapper around a core piece which
|
<p>Like other NSControl classes, NSComboBox is a wrapper around a core piece which
|
||||||
implements the combo box behavior, a cell, which is in this case an
|
implements the combo box behavior, a cell, which is in this case an
|
||||||
NSComboBoxCell.
|
NSComboBoxCell.</p>
|
||||||
</unit>
|
</unit>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
<p>No special instructions to use NSComboBox or text to detail the implementation.</p>
|
||||||
|
*/
|
||||||
@implementation NSComboBox
|
@implementation NSComboBox
|
||||||
|
|
||||||
+ (void) initialize
|
+ (void) initialize
|
||||||
|
|
|
@ -699,19 +699,22 @@ numberOfRowsInColumn: (int)column
|
||||||
/**
|
/**
|
||||||
<unit>
|
<unit>
|
||||||
<heading>Class Description</heading>
|
<heading>Class Description</heading>
|
||||||
An NSComboBoxCell is what we can call a completion/choices box cell, derived from
|
<p>An NSComboBoxCell is what we can call a completion/choices box cell, derived from
|
||||||
NSTextFieldCell, it allows you to enter text like in a text field but also to click
|
NSTextFieldCell, it allows you to enter text like in a text field but also to click
|
||||||
in the ellipsis button (indicating the fact other user inputs are possible) on
|
in the ellipsis button (indicating the fact other user inputs are possible) on
|
||||||
the right of it to obtain a list of choices, you can use them as the text field
|
the right of it to obtain a list of choices, you can use them as the text field
|
||||||
value by selecting a row in this list. You can also obtain direct completion
|
value by selecting a row in this list. You can also obtain direct completion
|
||||||
when it is enabled via <code>setCompletes:</code> to get a suggested text
|
when it is enabled via <code>setCompletes:</code> to get a suggested text
|
||||||
field value updated as you type.
|
field value updated as you type. </p>
|
||||||
Like other NSCell classes, NSComboBoxCell has a matching NSControl named NSComboBox
|
<p>Like other NSCell classes, NSComboBoxCell has a matching NSControl named NSComboBox
|
||||||
which is relying on it to implement the combo box behavior in a standalone
|
which is relying on it to implement the combo box behavior in a standalone
|
||||||
control.
|
control.</p>
|
||||||
</unit>
|
</unit>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
<p>No special instructions to use NSComboBoxCell or text to detail the implementation.</p>
|
||||||
|
*/
|
||||||
@implementation NSComboBoxCell
|
@implementation NSComboBoxCell
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue