本文整理汇总了C++中SpikeDetector::isChannelActive方法的典型用法代码示例。如果您正苦于以下问题:C++ SpikeDetector::isChannelActive方法的具体用法?C++ SpikeDetector::isChannelActive怎么用?C++ SpikeDetector::isChannelActive使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SpikeDetector
的用法示例。
在下文中一共展示了SpikeDetector::isChannelActive方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: drawElectrodeButtons
void SpikeDetectorEditor::drawElectrodeButtons(int ID)
{
SpikeDetector* processor = (SpikeDetector*) getProcessor();
electrodeButtons.clear();
int width = 20;
int height = 15;
int numChannels = processor->getNumChannels(ID);
int row = 0;
int column = 0;
Array<int> activeChannels;
Array<double> thresholds;
for (int i = 0; i < numChannels; i++)
{
ElectrodeButton* button = new ElectrodeButton(processor->getChannel(ID,i)+1);
electrodeButtons.add(button);
thresholds.add(processor->getChannelThreshold(ID,i));
if (electrodeEditorButtons[0]->getToggleState())
{
button->setToggleState(false, dontSendNotification);
button->setRadioGroupId(299);
}
else
{
activeChannels.add(processor->getChannel(ID,i));
button->setToggleState(processor->isChannelActive(ID,i), dontSendNotification);
}
if (numChannels < 3)
button->setBounds(145+(column++)*width, 78+row*height, width, 15);
else
button->setBounds(145+(column++)*width, 70+row*height, width, 15);
addAndMakeVisible(button);
button->addListener(this);
if (column%2 == 0)
{
column = 0;
row++;
}
}
channelSelector->setActiveChannels(activeChannels);
thresholdSlider->setValues(thresholds);
}