本文整理汇总了C++中IEvent::HyperlinkClicked方法的典型用法代码示例。如果您正苦于以下问题:C++ IEvent::HyperlinkClicked方法的具体用法?C++ IEvent::HyperlinkClicked怎么用?C++ IEvent::HyperlinkClicked使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IEvent
的用法示例。
在下文中一共展示了IEvent::HyperlinkClicked方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: oCursor
void
WChatLog::SL_HyperlinkClicked(const QUrl & url)
{
QString sUrl = url.toString();
CStr strUrl = sUrl; // Convert the URL to UTF-8
PSZUC pszUrl = strUrl;
if (FIsSchemeCambrian(pszUrl))
{
const CHS chCambrianAction = ChGetCambrianActionFromUrl(pszUrl);
if (chCambrianAction == d_chCambrianAction_None)
{
TIMESTAMP tsEventID;
PSZUC pszAction = Timestamp_PchDecodeFromBase64Url(OUT &tsEventID, pszUrl + 2);
Assert(pszAction[0] == d_chSchemeCambrianActionSeparator);
IEvent * pEvent = m_pContactOrGroup->Vault_PFindEventByID(tsEventID);
if (pEvent != NULL)
{
OCursorSelectBlock oCursor(pEvent, this);
pEvent->HyperlinkClicked(pszAction + 1, INOUT &oCursor);
return;
}
MessageLog_AppendTextFormatSev(eSeverityErrorWarning, "WChatLog::SL_HyperlinkClicked() - Unable to find matching tsEventID $t from hyperlink $s\n", tsEventID, pszUrl);
}
else
{
if (chCambrianAction == d_chCambrianAction_DisplayAllHistory)
{
CWaitCursor wait;
m_fDisplayAllMessages = TRUE;
ChatLog_EventsRepopulate();
}
} // if...else
return;
} // if
if (url.scheme() != QLatin1String("file") && !url.isRelative())
QDesktopServices::openUrl(url);
} // SL_HyperlinkClicked()