コード例 #1
0
ファイル: UIComponent.cpp プロジェクト: LabPF/plugin-GUI
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();
}
コード例 #2
0
ファイル: MainWindow.cpp プロジェクト: topilski/JUCE
 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();
 }
コード例 #3
0
//==============================================================================
ApplicationCommandTarget* JucerDocumentEditor::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
コード例 #4
0
//==============================================================================
ApplicationCommandTarget* ProjectContentComponent::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
コード例 #5
0
ファイル: Main.cpp プロジェクト: marmorkuchen-net/kubismus
 ApplicationCommandTarget* getNextCommandTarget() override
 {
     return findFirstTargetParentComponent();
 }
コード例 #6
0
//==============================================================================
ApplicationCommandTarget* CodeEditorComponent::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
コード例 #7
0
ApplicationCommandTarget* PMixInterpolationSpaceLayout::getNextCommandTarget()
{
  return findFirstTargetParentComponent();
}
コード例 #8
0
//==============================================================================
ApplicationCommandTarget* MainHostWindow::getNextCommandTarget()
{
    return findFirstTargetParentComponent();
}
コード例 #9
0
//==============================================================================
// 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();
}
コード例 #10
0
ファイル: KiwiApp_Window.cpp プロジェクト: Musicoll/Kiwi
 juce::ApplicationCommandTarget* Window::getNextCommandTarget()
 {
     return findFirstTargetParentComponent();
 }