Minor fixes. Finishes the first version.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22264 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -87,7 +87,7 @@
|
|||||||
BLooper context. Networking usually qualifies as a candidate for its own
|
BLooper context. Networking usually qualifies as a candidate for its own
|
||||||
thread.
|
thread.
|
||||||
|
|
||||||
\section app_messaging_overview_bhandler BHandler
|
\subsection app_messaging_overview_bhandler BHandler
|
||||||
|
|
||||||
Objects of the BHandler type are associated to BLoopers. When they are
|
Objects of the BHandler type are associated to BLoopers. When they are
|
||||||
created, they should be passed to the BLooper::AddHandler() method of the
|
created, they should be passed to the BLooper::AddHandler() method of the
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
that the Haiku API classes handle, and not actually handling these
|
that the Haiku API classes handle, and not actually handling these
|
||||||
messages could lead to inconsistent internal behavior.
|
messages could lead to inconsistent internal behavior.
|
||||||
|
|
||||||
\section app_messaging-overview-bmessenger BMessenger
|
\subsection app_messaging-overview-bmessenger BMessenger
|
||||||
|
|
||||||
BMessenger objects can send messages to both local and remote targets. For
|
BMessenger objects can send messages to both local and remote targets. For
|
||||||
local targets, a BMessenger provides an advantage over directly calling
|
local targets, a BMessenger provides an advantage over directly calling
|
||||||
@@ -122,20 +122,20 @@
|
|||||||
to pass messages to other applications. It facilitates inter-application
|
to pass messages to other applications. It facilitates inter-application
|
||||||
communication.
|
communication.
|
||||||
|
|
||||||
\section app_messaging-overview-other Other messaging classes
|
\subsection app_messaging-overview-other Other messaging classes
|
||||||
|
|
||||||
There are several convenience classes supplied with the application kit,
|
There are several convenience classes supplied with the application kit,
|
||||||
which can make your life easier in some specific cases.
|
which can make your life easier in some specific cases.
|
||||||
|
|
||||||
* BInvoker binds together a message and a target. By calling
|
- BInvoker binds together a message and a target. By calling
|
||||||
BInvoker::Invoke(), the message will be sent. This class is inherited by
|
BInvoker::Invoke(), the message will be sent. This class is inherited by
|
||||||
the controls in the interface kit, such as BButton.
|
the controls in the interface kit, such as BButton.
|
||||||
* A BMessageRunner object will send messages to a specified target with
|
- A BMessageRunner object will send messages to a specified target with
|
||||||
specified intervals in between.
|
specified intervals in between.
|
||||||
* BMessageQueue is a class that is also internally used by BLooper. It
|
- BMessageQueue is a class that is also internally used by BLooper. It
|
||||||
provides a queue of messages, with convenience functions of managing
|
provides a queue of messages, with convenience functions of managing
|
||||||
this queue.
|
this queue.
|
||||||
* BMessageFilter is the base class of the filters. Filters can be applied
|
- BMessageFilter is the base class of the filters. Filters can be applied
|
||||||
to BLoopers to filter all incoming messages, or to BHandlers to filter
|
to BLoopers to filter all incoming messages, or to BHandlers to filter
|
||||||
messages that could be handled by that object. The filter object can be
|
messages that could be handled by that object. The filter object can be
|
||||||
subclassed and extended by overriding the Filter() method.
|
subclassed and extended by overriding the Filter() method.
|
||||||
|
|||||||
Reference in New Issue
Block a user