// rdhpisoundselector.cpp // // A selection widget for audio devices. // // (C) Copyright 2002-2007,2016 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public // License along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // // #include #include #include #include #include #include #include #include #include #include #include RDHPISoundSelector::RDHPISoundSelector(RDHPISoundCard::DeviceClass dev_class, RDConfig *config,QWidget *parent) :Q3ListBox(parent) { sound_card=new RDHPISoundCard(config,this); if(dev_class==RDHPISoundCard::PlayDevice) { for(int i=0;igetCardQuantity();i++) { for(int j=0;jgetCardOutputPorts(i);j++) { insertItem(sound_card->getOutputPortDescription(i,j), i*HPI_MAX_NODES+j); } } } if(dev_class==RDHPISoundCard::RecordDevice) { for(int i=0;igetCardQuantity();i++) { for(int j=0;jgetCardInputPorts(i);j++) { insertItem(sound_card->getInputPortDescription(i,j), i*HPI_MAX_NODES+j); } } } connect(this,SIGNAL(highlighted(int)),this,SLOT(selection(int))); } void RDHPISoundSelector::selection(int selection) { emit changed(selection/HPI_MAX_ADAPTERS, selection-HPI_MAX_ADAPTERS*(selection/HPI_MAX_ADAPTERS)); emit cardChanged(selection/HPI_MAX_ADAPTERS); emit portChanged(selection-HPI_MAX_ADAPTERS*(selection/HPI_MAX_ADAPTERS)); }