コード例 #1
0
void ScopedEventQueue::decrementScopingLevel()
{
    ASSERT(m_scopingLevel);
    m_scopingLevel--;
    if (!m_scopingLevel)
        dispatchAllEvents();
}
コード例 #2
0
	void InterfaceManager::update(void)
	{
		assert(interfaceRoot != NULL);
		
		dispatchAllEvents();
		interfaceRoot->update();

		WavesGlobalState *wgs = WavesGlobalState::getInstance();
		assert(wgs != NULL);

		wgs->updatePlayheadPosition();
	}
コード例 #3
0
void EventSystem::fireEvent( const Event& theEvent )
{
	dispatchAllEvents( theEvent );
}