Lines Matching defs:notification

538 		// TODO: extra notification for vector icons (currently
993 A \c B_APP_HINT_CHANGED notification is sent to the mime monitor service.
1015 A \c B_ATTR_INFO_CHANGED notification is sent to the mime monitor service.
1037 A \c B_SHORT_DESCRIPTION_CHANGED notification is sent to the mime monitor service.
1059 A \c B_LONG_DESCRIPTION_CHANGED notification is sent to the mime monitor service.
1081 A \c B_FILE_EXTENSIONS_CHANGED notification is sent to the mime monitor service.
1103 A \c B_ICON_CHANGED notification is sent to the mime monitor service.
1128 A \c B_ICON_CHANGED notification is sent to the mime monitor service.
1138 // TODO: extra notification for vector icon (for now we notify a "large"
1157 A \c B_ICON_FOR_TYPE_CHANGED notification is sent to the mime monitor service.
1192 A \c B_ICON_FOR_TYPE_CHANGED notification is sent to the mime monitor service.
1208 // TODO: introduce extra notification for vector icons?
1223 /*! A \c B_PREFERRED_APP_CHANGED notification is sent to the mime monitor service.
1259 /*! A \c B_SNIFFER_RULE_CHANGED notification is sent to the mime monitor service,
1286 /*! A \c B_SUPPORTED_TYPES_CHANGED notification is sent to the mime monitor service.
1320 // Send a monitor notification
1338 DeferredInstallNotification* notification
1340 if (notification == NULL)
1343 strlcpy(notification->type, type, sizeof(notification->type));
1344 notification->notify = false;
1346 if (!fDeferredInstallNotifications.AddItem(notification))
1347 delete notification;
1357 DeferredInstallNotification* notification
1362 if (notification == NULL)
1366 if (notification->notify)
1367 _SendInstallNotification(notification->type);
1369 delete notification;
1373 //! \brief Sends a \c B_MIME_TYPE_CREATED notification to the mime monitor service
1381 //! \brief Sends a \c B_MIME_TYPE_DELETED notification to the mime monitor service
1390 /*! \brief Sends an update notification to all BMessengers that have
1423 /*! \brief Sends an update notification to all BMessengers that have
1451 /*! \brief Sends an update notification to all BMessengers that have
1479 /*! \brief Sends an update notification to all BMessengers that have
1503 /*! \brief Sends an update notification to all BMessengers that have subscribed to
1530 DeferredInstallNotification* notification
1533 if (strcmp(type, notification->type) == 0) {
1536 return notification;
1550 DeferredInstallNotification* notification
1552 if (notification == NULL)
1556 // MIME type deleted -- if the install notification had been
1558 if (notification->notify) {
1559 fDeferredInstallNotifications.RemoveItem(notification);
1560 delete notification;
1564 // MIME type created -- defer notification
1565 notification->notify = true;
1569 if (notification->notify)