本文整理汇总了C++中NotifyEvent函数的典型用法代码示例。如果您正苦于以下问题:C++ NotifyEvent函数的具体用法?C++ NotifyEvent怎么用?C++ NotifyEvent使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了NotifyEvent函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: debugLogA
/** Return true on success, false on error. */
bool FacebookProto::NegotiateConnection()
{
debugLogA("*** Negotiating connection with Facebook");
ptrA username(getStringA(FACEBOOK_KEY_LOGIN));
if (!username || !mir_strlen(username)) {
NotifyEvent(m_tszUserName, TranslateT("Please enter a username."), NULL, FACEBOOK_EVENT_CLIENT);
return false;
}
ptrA password(getStringA(FACEBOOK_KEY_PASS));
if (!password || !*password) {
NotifyEvent(m_tszUserName, TranslateT("Please enter a password."), NULL, FACEBOOK_EVENT_CLIENT);
return false;
}
password = mir_utf8encode(password);
// Refresh last time of feeds update
facy.last_feeds_update_ = ::time(NULL);
// Generate random clientid for this connection
facy.chat_clientid_ = utils::text::rand_string(8, "0123456789abcdef", &facy.random_);
// Create default group for new contacts
if (m_tszDefaultGroup)
Clist_CreateGroup(0, m_tszDefaultGroup);
return facy.login(username, password);
}
示例2: NotifyEvent
//
// Inform accessibility a new line has been selected and/or a previously
// selected line is being unselected
//
void
KeyViewAx::SetCurrentLine(int line)
{
// Only send selection remove notification if a line was
// previously selected
if (mLastId != -1)
{
NotifyEvent(wxACC_EVENT_OBJECT_SELECTIONREMOVE,
mView,
wxOBJID_CLIENT,
mLastId);
}
// Nothing is now selected
mLastId = -1;
// Just clearing selection
if (line != wxNOT_FOUND)
{
// Convert line number to childId
LineToId(line, mLastId);
// Send notifications that the line has focus
NotifyEvent(wxACC_EVENT_OBJECT_FOCUS,
mView,
wxOBJID_CLIENT,
mLastId);
// And is selected
NotifyEvent(wxACC_EVENT_OBJECT_SELECTION,
mView,
wxOBJID_CLIENT,
mLastId);
}
}
示例3: NotifyEvent
// Completes a frame-step operation.
HRESULT EVRCustomPresenter::CompleteFrameStep(IMFSample *pSample)
{
HRESULT hr = S_OK;
MFTIME hnsSampleTime = 0;
MFTIME hnsSystemTime = 0;
// Update our state.
m_FrameStep.state = FRAMESTEP_COMPLETE;
m_FrameStep.pSampleNoRef = NULL;
// Notify the EVR that the frame-step is complete.
NotifyEvent(EC_STEP_COMPLETE, FALSE, 0); // FALSE = completed (not cancelled)
// If we are scrubbing (rate == 0), also send the "scrub time" event.
if (IsScrubbing())
{
// Get the time stamp from the sample.
hr = pSample->GetSampleTime(&hnsSampleTime);
if (FAILED(hr))
{
// No time stamp. Use the current presentation time.
if (m_pClock)
{
hr = m_pClock->GetCorrelatedTime(0, &hnsSampleTime, &hnsSystemTime);
}
hr = S_OK; // Not an error condition.
}
NotifyEvent(EC_SCRUB_TIME, LODWORD(hnsSampleTime), HIDWORD(hnsSampleTime));
}
return hr;
}
示例4: NotifyEvent
void GridAx::TableUpdated()
{
NotifyEvent(wxACC_EVENT_OBJECT_REORDER,
mGrid->GetGridWindow(),
wxOBJID_CLIENT,
0);
}
示例5: strlen
void vfeSession::AppendStreamMessage (MessageType type, const char *message, bool chompLF)
{
// messages may have embedded LF's, in which case we split them at
// the LF into seperate entries. however if chompLF is true, and the
// message ends with an LF, we remove it (but only one). if chompLF
// is false and the message ends with an LF, *or* there are LF's left
// after we chomp one, we must append a blank line for each one.
const char *begin = message ;
const char *end = begin + strlen (message) - 1;
boost::mutex::scoped_lock lock(m_MessageMutex);
for (const char *s = begin ; s <= end ; s++)
{
if (*s == '\n')
{
if (chompLF && s == end)
break ;
m_ConsoleQueue.push (MessageBase (*this, type, string (begin, s - begin)));
begin = s + 1 ;
}
}
m_ConsoleQueue.push (MessageBase (*this, type, string (begin)));
if (m_MaxConsoleMessages != -1)
while (m_ConsoleQueue.size() > m_MaxConsoleMessages)
m_ConsoleQueue.pop();
NotifyEvent(stStreamMessage);
}
示例6: NotifyEvent
void vfeSession::SetSucceeded (bool ok)
{
if (m_Succeeded == ok)
return;
m_Succeeded = ok;
NotifyEvent(stSucceeded);
}
示例7: NotifyEvent
//------------------------------------------------------------------------
void SUIElementLuaCallback::OnUIEventEx( IUIElement* pSender, const char* fscommand, const SUIArguments& args, void* pUserData )
{
SUIArguments luaArgs;
luaArgs.AddArgument(fscommand);
luaArgs.AddArguments(args);
NotifyEvent(SUILuaCallbackInfo<IUIElement>::CreateInfo(pSender, "OnUIEventEx"), luaArgs);
}
示例8: NotifyEvent
// Performs end-of-stream actions if the end of stream flag was set.
HRESULT EVRCustomPresenter::CheckEndOfStream()
{
if (!m_bEndStreaming)
{
// The EVR did not send the MFVP_MESSAGE_ENDOFSTREAM message.
return S_OK;
}
if (m_bSampleNotify)
{
// The mixer still has input.
return S_OK;
}
if (m_SamplePool.AreSamplesPending())
{
// Samples are still scheduled for rendering.
return S_OK;
}
// Everything is complete. Now we can tell the EVR that we are done.
NotifyEvent(EC_COMPLETE, (LONG_PTR)S_OK, 0);
m_bEndStreaming = FALSE;
return S_OK;
}
示例9: mir_a2t_cp
void WhatsAppProto::NotifyEvent(const string& title, const string& info, MCONTACT contact, DWORD flags, TCHAR* url)
{
TCHAR *rawTitle = mir_a2t_cp(title.c_str(), CP_UTF8);
TCHAR *rawInfo = mir_a2t_cp(info.c_str(), CP_UTF8);
NotifyEvent(rawTitle, rawInfo, contact, flags, url);
mir_free(rawTitle);
mir_free(rawInfo);
}
示例10: lock
// Clears all messages from the status message queue.
void vfeSession::ClearStatusMessages()
{
boost::mutex::scoped_lock lock(m_MessageMutex);
while (m_StatusQueue.empty() == false)
m_StatusQueue.pop();
NotifyEvent(stStatusMessagesCleared);
}
示例11: RenderStopped
void vfeSession::StateChanged (pov_frontend::State NewState)
{
if (NewState == kReady || NewState == kStopping)
if (m_BackendState > kReady)
RenderStopped () ;
if (NewState == kRendering)
m_StartTime = GetTimestamp();
m_BackendState = NewState ;
NotifyEvent(stBackendStateChanged);
}
示例12: NotifyEvent
// Changes focus to a specified track
void TrackPanelAx::SetFocus( Track *track )
{
#if wxUSE_ACCESSIBILITY
if( mFocusedTrack != NULL )
{
NotifyEvent( wxACC_EVENT_OBJECT_SELECTIONREMOVE,
mTrackPanel,
wxOBJID_CLIENT,
TrackNum( mFocusedTrack ) );
}
#endif
if( track == NULL )
{
TrackListIterator iter( mTrackPanel->mTracks );
track = iter.First();
}
mFocusedTrack = track;
#if wxUSE_ACCESSIBILITY
if( mFocusedTrack != NULL )
{
int num = TrackNum( mFocusedTrack );
NotifyEvent( wxACC_EVENT_OBJECT_FOCUS,
mTrackPanel,
wxOBJID_CLIENT,
num );
if( mFocusedTrack->GetSelected() )
{
NotifyEvent( wxACC_EVENT_OBJECT_SELECTION,
mTrackPanel,
wxOBJID_CLIENT,
num );
}
}
#endif
return;
}
示例13: GetFocus
void TrackPanelAx::Updated()
{
#if wxUSE_ACCESSIBILITY
Track *t = GetFocus();
NotifyEvent(wxACC_EVENT_OBJECT_NAMECHANGE,
mTrackPanel,
wxOBJID_CLIENT,
TrackNum(t));
SetFocus(t);
#endif
}
示例14: NotifyEvent
int CAudioRenderer::SetEOS()
{
if (m_bEOS) {
return S_OK;
}
m_bEOS = TRUE;
NotifyEvent(EVENT_AUDIO_EOS, 0, 0, NULL);
return S_OK;
}
示例15: NotifyEvent
/**
* @brief
* Notify function to invoke watermark event on portID if
* watermark type in http component is the same as the
* watermark type registered for.
*
* @param pHTTPSourceMMIHelper
* @param portID
* @param pClientData
*
* @return bool
*/
bool HTTPSourceMMIExtensionEventHandler::HTTPBufferingEventManager::NotifyBufferingEvent(
HTTPSourceMMIHelper *pHTTPSourceMMIHelper,
const uint32 portID,
void *pClientData)
{
return NotifyEvent(
pHTTPSourceMMIHelper,
portID,
QOMX_HTTP_IndexStreamingConfigWaterMarkStatus,
pClientData);
}