/* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" Copyright 2004-10 by Raw Material Software Ltd. ------------------------------------------------------------------------------ JUCE can be redistributed and/or modified under the terms of the GNU General Public License (Version 2), as published by the Free Software Foundation. A copy of the license is included in the JUCE distribution, or can be found online at www.gnu.org/licenses. JUCE 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. ------------------------------------------------------------------------------ To release a closed-source product which uses JUCE, commercial licenses are available: visit www.rawmaterialsoftware.com/juce for more information. ============================================================================== */ #include "../../../core/juce_StandardHeader.h" BEGIN_JUCE_NAMESPACE #include "juce_AudioDeviceSelectorComponent.h" #include "../buttons/juce_TextButton.h" #include "../menus/juce_PopupMenu.h" #include "../windows/juce_AlertWindow.h" #include "../lookandfeel/juce_LookAndFeel.h" #include "../../../text/juce_LocalisedStrings.h" //============================================================================== class SimpleDeviceManagerInputLevelMeter : public Component, public Timer { public: SimpleDeviceManagerInputLevelMeter (AudioDeviceManager* const manager_) : manager (manager_), level (0) { startTimer (50); manager->enableInputLevelMeasurement (true); } ~SimpleDeviceManagerInputLevelMeter() { manager->enableInputLevelMeasurement (false); } void timerCallback() { const float newLevel = (float) manager->getCurrentInputLevel(); if (std::abs (level - newLevel) > 0.005f) { level = newLevel; repaint(); } } void paint (Graphics& g) { getLookAndFeel().drawLevelMeter (g, getWidth(), getHeight(), (float) exp (log (level) / 3.0)); // (add a bit of a skew to make the level more obvious) } private: AudioDeviceManager* const manager; float level; SimpleDeviceManagerInputLevelMeter (const SimpleDeviceManagerInputLevelMeter&); SimpleDeviceManagerInputLevelMeter& operator= (const SimpleDeviceManagerInputLevelMeter&); }; //============================================================================== class AudioDeviceSelectorComponent::MidiInputSelectorComponentListBox : public ListBox, public ListBoxModel { public: //============================================================================== MidiInputSelectorComponentListBox (AudioDeviceManager& deviceManager_, const String& noItemsMessage_, const int minNumber_, const int maxNumber_) : ListBox (String::empty, 0), deviceManager (deviceManager_), noItemsMessage (noItemsMessage_), minNumber (minNumber_), maxNumber (maxNumber_) { items = MidiInput::getDevices(); setModel (this); setOutlineThickness (1); } ~MidiInputSelectorComponentListBox() { } int getNumRows() { return items.size(); } void paintListBoxItem (int row, Graphics& g, int width, int height, bool rowIsSelected) { if (((unsigned int) row) < (unsigned int) items.size()) { if (rowIsSelected) g.fillAll (findColour (TextEditor::highlightColourId) .withMultipliedAlpha (0.3f)); const String item (items [row]); bool enabled = deviceManager.isMidiInputEnabled (item); const int x = getTickX(); const float tickW = height * 0.75f; getLookAndFeel().drawTickBox (g, *this, x - tickW, (height - tickW) / 2, tickW, tickW, enabled, true, true, false); g.setFont (height * 0.6f); g.setColour (findColour (ListBox::textColourId, true).withMultipliedAlpha (enabled ? 1.0f : 0.6f)); g.drawText (item, x, 0, width - x - 2, height, Justification::centredLeft, true); } } void listBoxItemClicked (int row, const MouseEvent& e) { selectRow (row); if (e.x < getTickX()) flipEnablement (row); } void listBoxItemDoubleClicked (int row, const MouseEvent&) { flipEnablement (row); } void returnKeyPressed (int row) { flipEnablement (row); } void paint (Graphics& g) { ListBox::paint (g); if (items.size() == 0) { g.setColour (Colours::grey); g.setFont (13.0f); g.drawText (noItemsMessage, 0, 0, getWidth(), getHeight() / 2, Justification::centred, true); } } int getBestHeight (const int preferredHeight) { const int extra = getOutlineThickness() * 2; return jmax (getRowHeight() * 2 + extra, jmin (getRowHeight() * getNumRows() + extra, preferredHeight)); } //============================================================================== juce_UseDebuggingNewOperator private: AudioDeviceManager& deviceManager; const String noItemsMessage; StringArray items; int minNumber, maxNumber; void flipEnablement (const int row) { if (((unsigned int) row) < (unsigned int) items.size()) { const String item (items [row]); deviceManager.setMidiInputEnabled (item, ! deviceManager.isMidiInputEnabled (item)); } } int getTickX() const { return getRowHeight() + 5; } MidiInputSelectorComponentListBox (const MidiInputSelectorComponentListBox&); MidiInputSelectorComponentListBox& operator= (const MidiInputSelectorComponentListBox&); }; //============================================================================== class AudioDeviceSettingsPanel : public Component, public ComboBoxListener, public ChangeListener, public ButtonListener { public: AudioDeviceSettingsPanel (AudioIODeviceType* type_, AudioIODeviceType::DeviceSetupDetails& setup_, const bool hideAdvancedOptionsWithButton) : type (type_), setup (setup_) { if (hideAdvancedOptionsWithButton) { addAndMakeVisible (showAdvancedSettingsButton = new TextButton (TRANS("Show advanced settings..."))); showAdvancedSettingsButton->addButtonListener (this); } type->scanForDevices(); setup.manager->addChangeListener (this); changeListenerCallback (0); } ~AudioDeviceSettingsPanel() { setup.manager->removeChangeListener (this); } void resized() { const int lx = proportionOfWidth (0.35f); const int w = proportionOfWidth (0.4f); const int h = 24; const int space = 6; const int dh = h + space; int y = 0; if (outputDeviceDropDown != 0) { outputDeviceDropDown->setBounds (lx, y, w, h); if (testButton != 0) testButton->setBounds (proportionOfWidth (0.77f), outputDeviceDropDown->getY(), proportionOfWidth (0.18f), h); y += dh; } if (inputDeviceDropDown != 0) { inputDeviceDropDown->setBounds (lx, y, w, h); inputLevelMeter->setBounds (proportionOfWidth (0.77f), inputDeviceDropDown->getY(), proportionOfWidth (0.18f), h); y += dh; } const int maxBoxHeight = 100;//(getHeight() - y - dh * 2) / numBoxes; if (outputChanList != 0) { const int bh = outputChanList->getBestHeight (maxBoxHeight); outputChanList->setBounds (lx, y, proportionOfWidth (0.55f), bh); y += bh + space; } if (inputChanList != 0) { const int bh = inputChanList->getBestHeight (maxBoxHeight); inputChanList->setBounds (lx, y, proportionOfWidth (0.55f), bh); y += bh + space; } y += space * 2; if (showAdvancedSettingsButton != 0) { showAdvancedSettingsButton->changeWidthToFitText (h); showAdvancedSettingsButton->setTopLeftPosition (lx, y); } if (sampleRateDropDown != 0) { sampleRateDropDown->setVisible (showAdvancedSettingsButton == 0 || ! showAdvancedSettingsButton->isVisible()); sampleRateDropDown->setBounds (lx, y, w, h); y += dh; } if (bufferSizeDropDown != 0) { bufferSizeDropDown->setVisible (showAdvancedSettingsButton == 0 || ! showAdvancedSettingsButton->isVisible()); bufferSizeDropDown->setBounds (lx, y, w, h); y += dh; } if (showUIButton != 0) { showUIButton->setVisible (showAdvancedSettingsButton == 0 || ! showAdvancedSettingsButton->isVisible()); showUIButton->changeWidthToFitText (h); showUIButton->setTopLeftPosition (lx, y); } } void comboBoxChanged (ComboBox* comboBoxThatHasChanged) { if (comboBoxThatHasChanged == 0) return; AudioDeviceManager::AudioDeviceSetup config; setup.manager->getAudioDeviceSetup (config); String error; if (comboBoxThatHasChanged == outputDeviceDropDown || comboBoxThatHasChanged == inputDeviceDropDown) { if (outputDeviceDropDown != 0) config.outputDeviceName = outputDeviceDropDown->getSelectedId() < 0 ? String::empty : outputDeviceDropDown->getText(); if (inputDeviceDropDown != 0) config.inputDeviceName = inputDeviceDropDown->getSelectedId() < 0 ? String::empty : inputDeviceDropDown->getText(); if (! type->hasSeparateInputsAndOutputs()) config.inputDeviceName = config.outputDeviceName; if (comboBoxThatHasChanged == inputDeviceDropDown) config.useDefaultInputChannels = true; else config.useDefaultOutputChannels = true; error = setup.manager->setAudioDeviceSetup (config, true); showCorrectDeviceName (inputDeviceDropDown, true); showCorrectDeviceName (outputDeviceDropDown, false); updateControlPanelButton(); resized(); } else if (comboBoxThatHasChanged == sampleRateDropDown) { if (sampleRateDropDown->getSelectedId() > 0) { config.sampleRate = sampleRateDropDown->getSelectedId(); error = setup.manager->setAudioDeviceSetup (config, true); } } else if (comboBoxThatHasChanged == bufferSizeDropDown) { if (bufferSizeDropDown->getSelectedId() > 0) { config.bufferSize = bufferSizeDropDown->getSelectedId(); error = setup.manager->setAudioDeviceSetup (config, true); } } if (error.isNotEmpty()) { AlertWindow::showMessageBox (AlertWindow::WarningIcon, "Error when trying to open audio device!", error); } } void buttonClicked (Button* button) { if (button == showAdvancedSettingsButton) { showAdvancedSettingsButton->setVisible (false); resized(); } else if (button == showUIButton) { AudioIODevice* const device = setup.manager->getCurrentAudioDevice(); if (device != 0 && device->showControlPanel()) { setup.manager->closeAudioDevice(); setup.manager->restartLastAudioDevice(); getTopLevelComponent()->toFront (true); } } else if (button == testButton && testButton != 0) { setup.manager->playTestSound(); } } void updateControlPanelButton() { AudioIODevice* const currentDevice = setup.manager->getCurrentAudioDevice(); showUIButton = 0; if (currentDevice != 0 && currentDevice->hasControlPanel()) { addAndMakeVisible (showUIButton = new TextButton (TRANS ("show this device's control panel"), TRANS ("opens the device's own control panel"))); showUIButton->addButtonListener (this); } resized(); } void changeListenerCallback (void*) { AudioIODevice* const currentDevice = setup.manager->getCurrentAudioDevice(); if (setup.maxNumOutputChannels > 0 || ! type->hasSeparateInputsAndOutputs()) { if (outputDeviceDropDown == 0) { outputDeviceDropDown = new ComboBox (String::empty); outputDeviceDropDown->addListener (this); addAndMakeVisible (outputDeviceDropDown); outputDeviceLabel = new Label (String::empty, type->hasSeparateInputsAndOutputs() ? TRANS ("output:") : TRANS ("device:")); outputDeviceLabel->attachToComponent (outputDeviceDropDown, true); if (setup.maxNumOutputChannels > 0) { addAndMakeVisible (testButton = new TextButton (TRANS ("Test"))); testButton->addButtonListener (this); } } addNamesToDeviceBox (*outputDeviceDropDown, false); } if (setup.maxNumInputChannels > 0 && type->hasSeparateInputsAndOutputs()) { if (inputDeviceDropDown == 0) { inputDeviceDropDown = new ComboBox (String::empty); inputDeviceDropDown->addListener (this); addAndMakeVisible (inputDeviceDropDown); inputDeviceLabel = new Label (String::empty, TRANS ("input:")); inputDeviceLabel->attachToComponent (inputDeviceDropDown, true); addAndMakeVisible (inputLevelMeter = new SimpleDeviceManagerInputLevelMeter (setup.manager)); } addNamesToDeviceBox (*inputDeviceDropDown, true); } updateControlPanelButton(); showCorrectDeviceName (inputDeviceDropDown, true); showCorrectDeviceName (outputDeviceDropDown, false); if (currentDevice != 0) { if (setup.maxNumOutputChannels > 0 && setup.minNumOutputChannels < setup.manager->getCurrentAudioDevice()->getOutputChannelNames().size()) { if (outputChanList == 0) { addAndMakeVisible (outputChanList = new ChannelSelectorListBox (setup, ChannelSelectorListBox::audioOutputType, TRANS ("(no audio output channels found)"))); outputChanLabel = new Label (String::empty, TRANS ("active output channels:")); outputChanLabel->attachToComponent (outputChanList, true); } outputChanList->refresh(); } else { outputChanLabel = 0; outputChanList = 0; } if (setup.maxNumInputChannels > 0 && setup.minNumInputChannels < setup.manager->getCurrentAudioDevice()->getInputChannelNames().size()) { if (inputChanList == 0) { addAndMakeVisible (inputChanList = new ChannelSelectorListBox (setup, ChannelSelectorListBox::audioInputType, TRANS ("(no audio input channels found)"))); inputChanLabel = new Label (String::empty, TRANS ("active input channels:")); inputChanLabel->attachToComponent (inputChanList, true); } inputChanList->refresh(); } else { inputChanLabel = 0; inputChanList = 0; } // sample rate.. { if (sampleRateDropDown == 0) { addAndMakeVisible (sampleRateDropDown = new ComboBox (String::empty)); sampleRateLabel = new Label (String::empty, TRANS ("sample rate:")); sampleRateLabel->attachToComponent (sampleRateDropDown, true); } else { sampleRateDropDown->clear(); sampleRateDropDown->removeListener (this); } const int numRates = currentDevice->getNumSampleRates(); for (int i = 0; i < numRates; ++i) { const int rate = roundToInt (currentDevice->getSampleRate (i)); sampleRateDropDown->addItem (String (rate) + " Hz", rate); } sampleRateDropDown->setSelectedId (roundToInt (currentDevice->getCurrentSampleRate()), true); sampleRateDropDown->addListener (this); } // buffer size { if (bufferSizeDropDown == 0) { addAndMakeVisible (bufferSizeDropDown = new ComboBox (String::empty)); bufferSizeLabel = new Label (String::empty, TRANS ("audio buffer size:")); bufferSizeLabel->attachToComponent (bufferSizeDropDown, true); } else { bufferSizeDropDown->clear(); bufferSizeDropDown->removeListener (this); } const int numBufferSizes = currentDevice->getNumBufferSizesAvailable(); double currentRate = currentDevice->getCurrentSampleRate(); if (currentRate == 0) currentRate = 48000.0; for (int i = 0; i < numBufferSizes; ++i) { const int bs = currentDevice->getBufferSizeSamples (i); bufferSizeDropDown->addItem (String (bs) + " samples (" + String (bs * 1000.0 / currentRate, 1) + " ms)", bs); } bufferSizeDropDown->setSelectedId (currentDevice->getCurrentBufferSizeSamples(), true); bufferSizeDropDown->addListener (this); } } else { jassert (setup.manager->getCurrentAudioDevice() == 0); // not the correct device type! sampleRateLabel = 0; bufferSizeLabel = 0; sampleRateDropDown = 0; bufferSizeDropDown = 0; if (outputDeviceDropDown != 0) outputDeviceDropDown->setSelectedId (-1, true); if (inputDeviceDropDown != 0) inputDeviceDropDown->setSelectedId (-1, true); } resized(); setSize (getWidth(), getLowestY() + 4); } private: AudioIODeviceType* const type; const AudioIODeviceType::DeviceSetupDetails setup; ScopedPointer outputDeviceDropDown, inputDeviceDropDown, sampleRateDropDown, bufferSizeDropDown; ScopedPointer