1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00
This commit is contained in:
jules 2007-08-15 15:44:49 +00:00
parent c82b9b6d91
commit 62e4870bde
3 changed files with 984 additions and 904 deletions

File diff suppressed because it is too large Load diff

View file

@ -114,6 +114,7 @@ private:
GraphEditorPanel* graphPanel;
Component* keyboardComp;
Component* statusBar;
};

View file

@ -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