Lines Matching defs:target

93 								BMessage* message, BHandler* target);
250 BHandler* target)
256 fTarget(target)
934 BWindow::DispatchMessage(BMessage* msg, BHandler* target)
1100 if (target != this) {
1101 target->MessageReceived(msg);
1152 if (target == this) {
1159 target->MessageReceived(msg);
1163 if (target == this) {
1170 target->MessageReceived(msg);
1174 if (target == this) {
1180 target->MessageReceived(msg);
1185 if (BView* view = dynamic_cast<BView*>(target)) {
1192 target->MessageReceived(msg);
1199 if (BView* view = dynamic_cast<BView*>(target)) {
1210 target->MessageReceived(msg);
1218 if (BView* view = dynamic_cast<BView*>(target)) {
1226 target->MessageReceived(msg);
1233 target->MessageReceived(msg);
1239 BView* view = dynamic_cast<BView*>(target);
1246 target->MessageReceived(msg);
1253 if (BView* view = dynamic_cast<BView*>(target)) {
1259 target->MessageReceived(msg);
1266 if (BView* view = dynamic_cast<BView*>(target)) {
1346 target->MessageReceived(msg);
1352 if (target == this && fPulseRunner) {
1356 target->MessageReceived(msg);
1496 BLooper::DispatchMessage(msg, target);
1846 BHandler* target)
1852 target);
3011 a) it uses the _DetermineTarget() method to tell what the later target of
3012 a message will be, if no explicit target is supplied.
3014 to all of its intended targets, and to add all fields the target would
3064 // Get the target handler
3090 // if there is no target handler, the message is dropped
3283 \brief Determines the target of a message received for the
3287 BWindow::_DetermineTarget(BMessage* message, BHandler* target)
3289 if (target == NULL)
3290 target = this;
3328 // luck with the last target, if available
3347 return target;
3424 BView* target = _FindView(token);
3425 if (target == NULL)
3429 *_target = target;
3483 BWindow::_SanitizeMessage(BMessage* message, BHandler* target, bool usePreferred)
3485 if (target == NULL)
3497 BView* view = dynamic_cast<BView*>(target);
3615 // the mouse is over the target view
3621 // the mouse is not over the target view
3656 /*! Handles keyboard input before it gets forwarded to the target handler.
3660 be forwarded to the target handler.
3662 TODO: must also convert the incoming key to the font encoding of the target
3773 BHandler* target = shortcut->Target();
3774 if (target == NULL)
3775 target = CurrentFocus();
3785 PostMessage(&message, target);
3796 // TODO: convert keys to the encoding of the target view