Example #1
0
ApplicationCommandTarget* UIComponent::getNextCommandTarget()
{
	// this will return the next parent component that is an ApplicationCommandTarget (in this
	// case, there probably isn't one, but it's best to use this method anyway).
	return findFirstTargetParentComponent();
}
Example #2
0
 ApplicationCommandTarget* getNextCommandTarget() override
 {
     // this will return the next parent component that is an ApplicationCommandTarget (in this
     // case, there probably isn't one, but it's best to use this method in your own apps).
     return findFirstTargetParentComponent();
 }
//==============================================================================
ApplicationCommandTarget* JucerDocumentEditor::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
//==============================================================================
ApplicationCommandTarget* ProjectContentComponent::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
Example #5
0
 ApplicationCommandTarget* getNextCommandTarget() override
 {
     return findFirstTargetParentComponent();
 }
//==============================================================================
ApplicationCommandTarget* CodeEditorComponent::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
ApplicationCommandTarget* PMixInterpolationSpaceLayout::getNextCommandTarget()
{
  return findFirstTargetParentComponent();
}
Example #8
0
//==============================================================================
ApplicationCommandTarget* MainHostWindow::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
//==============================================================================
// The following methods implement the ApplicationCommandTarget interface, allowing
// this window to publish a set of actions it can perform, and which can be mapped
// onto menus, keypresses, etc.
ApplicationCommandTarget* HostFilterComponent::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
Example #10
0
 juce::ApplicationCommandTarget* Window::getNextCommandTarget()
 {
     return findFirstTargetParentComponent();
 }