mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-24 01:54:22 +00:00
This commit is contained in:
parent
c82b9b6d91
commit
62e4870bde
3 changed files with 984 additions and 904 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -114,6 +114,7 @@ private:
|
|||
|
||||
GraphEditorPanel* graphPanel;
|
||||
Component* keyboardComp;
|
||||
Component* statusBar;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ public:
|
|||
if (dev != 0)
|
||||
return dev->getInputChannelNames() [channelIndex];
|
||||
|
||||
return String (channelIndex + 1);
|
||||
return "Input Channel " + String (channelIndex + 1);
|
||||
}
|
||||
|
||||
bool JUCE_CALLTYPE isInputChannelStereoPair (int) const
|
||||
|
|
@ -240,7 +240,7 @@ public:
|
|||
if (dev != 0)
|
||||
return dev->getOutputChannelNames() [channelIndex];
|
||||
|
||||
return String (channelIndex + 1);
|
||||
return "Output Channel " + String (channelIndex + 1);
|
||||
}
|
||||
|
||||
const String JUCE_CALLTYPE getOutputChannelName (const int channelIndex) const
|
||||
|
|
@ -315,7 +315,7 @@ public:
|
|||
if (dev != 0)
|
||||
return dev->getInputChannelNames() [channelIndex];
|
||||
|
||||
return String (channelIndex + 1);
|
||||
return "Midi Input";
|
||||
}
|
||||
|
||||
bool JUCE_CALLTYPE isInputChannelStereoPair (int) const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue