当前位置: 首页>>代码示例>>C++>>正文


C++ MidiEvent::sourcePort方法代码示例

本文整理汇总了C++中MidiEvent::sourcePort方法的典型用法代码示例。如果您正苦于以下问题:C++ MidiEvent::sourcePort方法的具体用法?C++ MidiEvent::sourcePort怎么用?C++ MidiEvent::sourcePort使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MidiEvent的用法示例。


在下文中一共展示了MidiEvent::sourcePort方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: sourcePortName

QString MidiWinMM::sourcePortName( const MidiEvent& event ) const
{
	if( event.sourcePort() )
	{
		return m_inputDevices.value( *static_cast<const HMIDIIN *>( event.sourcePort() ) );
	}

	return MidiClient::sourcePortName( event );
}
开发者ID:CallisteHanriat,项目名称:lmms,代码行数:9,代码来源:MidiWinMM.cpp

示例2: sourcePortName

QString MidiAlsaSeq::sourcePortName( const MidiEvent & _event ) const
{
	if( _event.sourcePort() )
	{
		const snd_seq_addr_t * addr =
			static_cast<const snd_seq_addr_t *>( _event.sourcePort() );
		return __portName( m_seqHandle, addr );
	}
	return MidiClient::sourcePortName( _event );
}
开发者ID:AmeliaDeField,项目名称:lmms-test,代码行数:10,代码来源:MidiAlsaSeq.cpp

示例3: handleMidiEvent

bool ZynAddSubFxInstrument::handleMidiEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset )
{
    // do not forward external MIDI Control Change events if the according
    // LED is not checked
    if( event.type() == MidiControlChange &&
            event.sourcePort() != this &&
            m_forwardMidiCcModel.value() == false )
    {
        return true;
    }

    MidiEvent localEvent = event;
    localEvent.setChannel( 0 );
    m_pluginMutex.lock();
    if( m_remotePlugin )
    {
        m_remotePlugin->processMidiEvent( localEvent, 0 );
    }
    else
    {
        m_plugin->processMidiEvent( localEvent );
    }
    m_pluginMutex.unlock();

    return true;
}
开发者ID:RebeccaDeField,项目名称:lmms,代码行数:26,代码来源:ZynAddSubFx.cpp

示例4: sourcePortName

QString MidiApple::sourcePortName( const MidiEvent& event ) const
{
	qDebug("sourcePortName return '%s'?\n", event.sourcePort());
	/*
	if( event.sourcePort() )
	{
		return m_inputDevices.value( *static_cast<const HMIDIIN *>( event.sourcePort() ) );
	}
	*/
	return MidiClient::sourcePortName( event );
}
开发者ID:DeRobyJ,项目名称:lmms,代码行数:11,代码来源:MidiApple.cpp


注:本文中的MidiEvent::sourcePort方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。