API docs: it's => its fix
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
\brief Construct a check box in the \a frame with a \a name, \a label,
|
||||
model \a message, \a resizingMode, and creation \a flags.
|
||||
|
||||
\note This constructor will resize the control to it's minimum height if needed
|
||||
\note This constructor will resize the control to its minimum height if needed
|
||||
for compatibility with BeOS R5.
|
||||
|
||||
The initial value of the check box is 0 (\c B_CONTROL_OFF).
|
||||
|
||||
@@ -867,7 +867,7 @@
|
||||
\class BFont
|
||||
\ingroup interface
|
||||
\ingroup libbe
|
||||
\brief Represents a typeface including it's family, style and size.
|
||||
\brief Represents a typeface including its family, style and size.
|
||||
|
||||
The Interface Kit provides three prebuilt BFont objects which can be used
|
||||
but not modified.
|
||||
@@ -875,7 +875,7 @@
|
||||
- \c const BFont* \c be_bold_font A bold font used by titles.
|
||||
- \c const BFont* \c be_fixed_font A fixed-width font.
|
||||
|
||||
A BFont object does nothing on it's own but is used in combination with
|
||||
A BFont object does nothing on its own but is used in combination with
|
||||
a view or control. Here is an example of creating a BFont object from a
|
||||
system font and assigning it to a view:
|
||||
|
||||
@@ -1054,7 +1054,7 @@
|
||||
|
||||
- \c B_CHAR_SPACING Position each character without adjustment. Best mode
|
||||
for printing. Characters may collide or overlap at small font sizes.
|
||||
- \c B_STRING_SPACING Optimizes the position of each character within it's
|
||||
- \c B_STRING_SPACING Optimizes the position of each character within its
|
||||
space. Collisions are unlikely but characters may touch each other.
|
||||
Best mode to use when the screen needs to match what appears on the
|
||||
printed page. Adding new characters requires the entire string to
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
format from a BNode attribute into the preallocated BBitmap \a result.
|
||||
The colorspace of result needs to be B_RGBA32 or at
|
||||
least B_RGB32 (though that makes less sense). The icon
|
||||
will be scaled from it's "native" size of 64x64 to the
|
||||
will be scaled from its "native" size of 64x64 to the
|
||||
size of the bitmap.
|
||||
|
||||
\note The scale is derived from the bitmap width, the bitmap should have
|
||||
@@ -88,7 +88,7 @@
|
||||
format from the given \a buffer into the preallocated BBitmap \a result.
|
||||
The colorspace of result needs to be B_RGBA32 or at
|
||||
least B_RGB32 (though that makes less sense). The icon
|
||||
will be scaled from it's "native" size of 64x64 to the
|
||||
will be scaled from its "native" size of 64x64 to the
|
||||
size of the bitmap.
|
||||
|
||||
\note The scale is derived from the bitmap width, the bitmap should have
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
view. When a BLayout is attached directly to a BView via BView::SetLayout()
|
||||
then that BView becomes the target of the layout. When a BLayout is nested
|
||||
in another BLayout (via BLayout::AddItem()) the nested BLayout inherits the
|
||||
target of the layout it's nested in, if it does not have a target already.
|
||||
target of the layout its nested in, if it does not have a target already.
|
||||
You can retrieve the target view for a layout with the TargetView() method.
|
||||
When adding a BLayoutItem to a BLayout, the item's view (as returned by
|
||||
BLayoutItem::View()) is added to the BLayout's target view.
|
||||
|
||||
@@ -373,7 +373,7 @@
|
||||
|
||||
/*!
|
||||
\fn void BListView::ResizeToPreferred()
|
||||
\brief Resize the view to it's preferred size.
|
||||
\brief Resize the view to its preferred size.
|
||||
|
||||
\see BView::ResizeToPreferred()
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
BWindow::SetKeyMenuBar() method.
|
||||
|
||||
When either the \key{Menu} key or \key{Command}+\key{Esc} keys are pressed
|
||||
the key menu bar opens and focuses it's first menu item, typically a BMenu.
|
||||
the key menu bar opens and focuses its first menu item, typically a BMenu.
|
||||
Once the menu bar is open the user can navigate around the attached menus
|
||||
and menu items using the arrow keys.
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
by the bounds set by the divider position and \a frame rectangle.
|
||||
|
||||
A variable-size menu field's menu bar is only as wide as it needs to
|
||||
be in order to fit the currently selected menu item, and it's height
|
||||
be in order to fit the currently selected menu item, and its height
|
||||
depends on the user's menu font size preference. The height of the
|
||||
frame rectangle is ignored.
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
picture = view->EndPicture();
|
||||
\endcode
|
||||
|
||||
Only drawing instructions performed directly on the view, not it's child
|
||||
Only drawing instructions performed directly on the view, not its child
|
||||
views are send to the BPicture object and BPicture captures only primitive
|
||||
graphics operations. The view must be attached to a window for the drawing
|
||||
instruction to be recorded. Drawing instructions are recorded even if the
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
\brief Construct a radio button in the \a frame rectangle with a \a name,
|
||||
\a label, model \a message, \a resizingMode, and creation \a flags.
|
||||
|
||||
\note This constructor will resize the control to it's minimum height if needed
|
||||
\note This constructor will resize the control to its minimum height if needed
|
||||
for compatibility with BeOS R5.
|
||||
|
||||
The initial value of the radio button is 0 (\c B_CONTROL_OFF).
|
||||
|
||||
@@ -266,7 +266,7 @@
|
||||
|
||||
/*!
|
||||
\var B_WILL_DRAW
|
||||
\brief Indicates that the view will do it's own drawing.
|
||||
\brief Indicates that the view will do its own drawing.
|
||||
|
||||
\since BeOS R3
|
||||
*/
|
||||
@@ -548,7 +548,7 @@
|
||||
|
||||
To create a subclass of BView you generally override one or more of BView's
|
||||
hook methods to respond to user events such as MouseDown() or FrameMoved().
|
||||
By default a BView does nothing in it's hook methods unless otherwise stated,
|
||||
By default a BView does nothing in its hook methods unless otherwise stated,
|
||||
it's up to you to define what happens. To override the look of a BView you
|
||||
should override the Draw() or DrawAfterChildren() methods. See the section on
|
||||
Hook Methods below for more details.
|
||||
@@ -589,9 +589,9 @@ if (Window()->LockLooper()) {
|
||||
focus view. The color can be queried using the keyboard_navigation_color()
|
||||
function in InterfaceDefs.h
|
||||
|
||||
Each view has it's own coordinate system with the origin point (0.0, 0.0)
|
||||
Each view has its own coordinate system with the origin point (0.0, 0.0)
|
||||
located at the top left corner. You can convert a BPoint or BRect to or from
|
||||
the view's coordinate system to the coordinate system of it's parent, or
|
||||
the view's coordinate system to the coordinate system of its parent, or
|
||||
of the screen's coordinate system. See the section on Coordinate Conversion
|
||||
Methods for more details.
|
||||
|
||||
@@ -639,7 +639,7 @@ SetViewColor(Parent()->ViewColor());
|
||||
\param name The name of the view, can be \c NULL.
|
||||
\param flags The view flags, a mask of one or more of the following:
|
||||
- \c B_FULL_UPDATE_ON_RESIZE Redraw the entire view on resize.
|
||||
- \c B_WILL_DRAW Indicates that the view will do it's own drawing.
|
||||
- \c B_WILL_DRAW Indicates that the view will do its own drawing.
|
||||
- \c B_PULSE_NEEDED The view accepts Pulse() messages.
|
||||
- \c B_NAVIGABLE_JUMP Default for keyboard navigation.
|
||||
- \c B_FRAME_EVENTS Responds to move and resize events.
|
||||
@@ -704,7 +704,7 @@ SetViewColor(Parent()->ViewColor());
|
||||
\c B_FOLLOW_LEFT_RIGHT | \c B_FOLLOW_TOP_BOTTOM.
|
||||
\param flags The view flags, a mask of one or more of the following:
|
||||
- \c B_FULL_UPDATE_ON_RESIZE Redraw the entire view on resize.
|
||||
- \c B_WILL_DRAW Indicates that the view will do it's own drawing.
|
||||
- \c B_WILL_DRAW Indicates that the view will do its own drawing.
|
||||
- \c B_PULSE_NEEDED The view accepts Pulse() messages.
|
||||
- \c B_NAVIGABLE_JUMP Default for keyboard navigation.
|
||||
- \c B_FRAME_EVENTS Responds to move and resize events.
|
||||
@@ -1313,8 +1313,8 @@ SetViewColor(Parent()->ViewColor());
|
||||
\brief Returns whether or not the view is hidden from the perspective of
|
||||
\a lookingFrom.
|
||||
|
||||
A view is considered hidden if it, any of it's parent views, or the window
|
||||
it is attached to has had the Hide() method called on it. This method
|
||||
A view is considered hidden if it, any of its parent views, or the window
|
||||
it's attached to has had the Hide() method called on it. This method
|
||||
allows you to determine the hidden status of a view from a different point
|
||||
on the view hierarchy.
|
||||
|
||||
@@ -2564,9 +2564,9 @@ SetViewColor(Parent()->ViewColor());
|
||||
DrawString()
|
||||
|
||||
The \a string is drawn in the view's current font and is modified by
|
||||
the other parameters of the font such as it's direction (left-to-right or
|
||||
the other parameters of the font such as its direction (left-to-right or
|
||||
right-to-left), rotation, spacing, shear, etc. The \a string is always drawn
|
||||
left to right even if it's text direction is set to right-to-left mode.
|
||||
left to right even if its text direction is set to right-to-left mode.
|
||||
|
||||
Drawing a string is fastest in \c B_OP_COPY mode and anti-aliasing can
|
||||
produce undesirable effects when a string is draw in other modes, especially
|
||||
@@ -3580,7 +3580,7 @@ SetViewColor(Parent()->ViewColor());
|
||||
The view doesn't display anything to the screen while it's recording to \a
|
||||
picture. Use the DrawPicture() method to render the \a picture.
|
||||
|
||||
Only drawing instructions performed directly on the view, not it's child views
|
||||
Only drawing instructions performed directly on the view, not its child views
|
||||
are send to the BPicture object and BPicture captures only primitive graphics
|
||||
operations. The view must be attached to a window for the drawing instruction
|
||||
to be recorded. Drawing instructions are recorded even if the view is hidden or
|
||||
|
||||
@@ -368,7 +368,7 @@
|
||||
/*!
|
||||
\var B_OUTLINE_RESIZE
|
||||
|
||||
Window draws only it's outline as it's resized and doesn't draw its
|
||||
Window draws only its outline as it's resized and doesn't draw its
|
||||
contents.
|
||||
|
||||
\since BeOS R3
|
||||
@@ -624,7 +624,7 @@
|
||||
- \c B_AVOID_FOCUS cannot receive keyboard focus
|
||||
- \c B_WILL_ACCEPT_FIRST_CLICK The first click is processed by the
|
||||
window.
|
||||
- \c B_OUTLINE_RESIZE draws only it's outline as it's resized and
|
||||
- \c B_OUTLINE_RESIZE draws only its outline as it's resized and
|
||||
doesn't draw its contents.
|
||||
- \c B_NO_WORKSPACE_ACTIVATION Causes the current workspace to stay
|
||||
active when activated on another workspace.
|
||||
@@ -696,7 +696,7 @@
|
||||
- \c B_AVOID_FOCUS cannot receive keyboard focus
|
||||
- \c B_WILL_ACCEPT_FIRST_CLICK The first click is processed by the
|
||||
window.
|
||||
- \c B_OUTLINE_RESIZE draws only it's outline as it's resized and
|
||||
- \c B_OUTLINE_RESIZE draws only its outline as it's resized and
|
||||
doesn't draw its contents.
|
||||
- \c B_NO_WORKSPACE_ACTIVATION Causes the current workspace to stay
|
||||
active when activated on another workspace.
|
||||
|
||||
Reference in New Issue
Block a user