本文整理汇总了C++中BMediaRoster::GetRefFor方法的典型用法代码示例。如果您正苦于以下问题:C++ BMediaRoster::GetRefFor方法的具体用法?C++ BMediaRoster::GetRefFor怎么用?C++ BMediaRoster::GetRefFor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BMediaRoster
的用法示例。
在下文中一共展示了BMediaRoster::GetRefFor方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _findIconFor
void MediaIcon::_findIconFor(
const live_node_info &nodeInfo) {
D_INTERNAL(("MediaIcon::_findIconFor(live_node_info)\n"));
BMediaRoster *roster = BMediaRoster::CurrentRoster();
if (m_nodeKind & B_FILE_INTERFACE) {
entry_ref ref;
if ((roster && (roster->GetRefFor(nodeInfo.node, &ref) == B_OK))
&& (BNodeInfo::GetTrackerIcon(&ref, this, m_size) == B_OK)) {
return;
}
}
dormant_node_info dormantNodeInfo;
if (roster
&& (roster->GetDormantNodeFor(nodeInfo.node, &dormantNodeInfo) == B_OK)) {
D_INTERNAL((" -> instantiated from dormant node\n"));
_findIconFor(dormantNodeInfo);
}
else {
D_INTERNAL((" -> application internal node\n"));
port_info portInfo;
app_info appInfo;
if ((get_port_info(nodeInfo.node.port, &portInfo) == B_OK)
&& (be_roster->GetRunningAppInfo(portInfo.team, &appInfo) == B_OK)) {
D_INTERNAL((" -> application info found: %s\n", appInfo.signature));
app_info thisAppInfo;
if ((be_app->GetAppInfo(&thisAppInfo) != B_OK)
|| ((strcmp(appInfo.signature, thisAppInfo.signature) != 0)
&& (strcmp(appInfo.signature, addon_host::g_appSignature) != 0))) {
// only use app icon if the node doesn't belong to our team
// or the addon-host
BNodeInfo::GetTrackerIcon(&appInfo.ref, this, m_size);
return;
}
}
bool audioIn = false, audioOut = false, videoIn = false, videoOut = false;
_getMediaTypesFor(nodeInfo, &audioIn, &audioOut, &videoIn, &videoOut);
_findDefaultIconFor(audioIn, audioOut, videoIn, videoOut);
}
}