JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::FocusTraverser Class Reference

Controls the order in which focus moves between components. More...

#include <juce_FocusTraverser.h>

Inheritance diagram for juce::FocusTraverser:
Collaboration diagram for juce::FocusTraverser:

Public Member Functions

 ~FocusTraverser () override=default
 Destructor. More...
 
std::vector< Component * > getAllComponents (Component *parentComponent) override
 Returns all of the components that can receive focus within the given parent component in traversal order. More...
 
ComponentgetDefaultComponent (Component *parentComponent) override
 Returns the component that should receive focus by default within the given parent component. More...
 
ComponentgetNextComponent (Component *current) override
 Returns the component that should be given focus after the specified one when moving "forwards". More...
 
ComponentgetPreviousComponent (Component *current) override
 Returns the component that should be given focus after the specified one when moving "backwards". More...
 

Detailed Description

Controls the order in which focus moves between components.

The algorithm used by this class to work out the order of traversal is as follows:

  • Only visible and enabled components are considered focusable.
  • If two components both have an explicit focus order specified then the one with the lowest number comes first (see the Component::setExplicitFocusOrder() method).
  • Any component with an explicit focus order greater than 0 comes before ones that don't have an order specified.
  • Components with their 'always on top' flag set come before those without.
  • Any unspecified components are traversed in a left-to-right, then top-to-bottom order.

If you need focus traversal in a more customised way you can create a ComponentTraverser subclass that uses your own algorithm and return it from Component::createFocusTraverser().

See also
ComponentTraverser, Component::createFocusTraverser

@tags{GUI}

Constructor & Destructor Documentation

◆ ~FocusTraverser()

juce::FocusTraverser::~FocusTraverser ( )
overridedefault

Destructor.

Member Function Documentation

◆ getAllComponents()

std::vector<Component*> juce::FocusTraverser::getAllComponents ( Component parentComponent)
overridevirtual

Returns all of the components that can receive focus within the given parent component in traversal order.

The default implementation will return all visible and enabled child components.

Implements juce::ComponentTraverser.

◆ getDefaultComponent()

Component* juce::FocusTraverser::getDefaultComponent ( Component parentComponent)
overridevirtual

Returns the component that should receive focus by default within the given parent component.

The default implementation will just return the foremost visible and enabled child component, and will return nullptr if there is no suitable component.

Implements juce::ComponentTraverser.

◆ getNextComponent()

Component* juce::FocusTraverser::getNextComponent ( Component current)
overridevirtual

Returns the component that should be given focus after the specified one when moving "forwards".

The default implementation will return the next visible and enabled component which is to the right of or below this one, and will return nullptr if there is no suitable component.

Implements juce::ComponentTraverser.

◆ getPreviousComponent()

Component* juce::FocusTraverser::getPreviousComponent ( Component current)
overridevirtual

Returns the component that should be given focus after the specified one when moving "backwards".

The default implementation will return the previous visible and enabled component which is to the left of or above this one, and will return nullptr if there is no suitable component.

Implements juce::ComponentTraverser.


The documentation for this class was generated from the following file: