JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
juce::SelectedItemSet< SelectableItemType > Class Template Reference

Manages a list of selectable items. More...

#include "juce_SelectedItemSet.h"

Inheritance diagram for juce::SelectedItemSet< SelectableItemType >:
juce::ChangeBroadcaster

Public Types

using ItemType = SelectableItemType
 
using ItemArray = Array< SelectableItemType >
 
using ParameterType = typename TypeHelpers::ParameterType< SelectableItemType >::type
 

Public Member Functions

 SelectedItemSet ()=default
 Creates an empty set.
 
 SelectedItemSet (const ItemArray &items)
 Creates a set based on an array of items.
 
 SelectedItemSet (const SelectedItemSet &other)
 Creates a copy of another set.
 
SelectedItemSetoperator= (const SelectedItemSet &other)
 Creates a copy of another set.
 
void selectOnly (ParameterType item)
 Clears any other currently selected items, and selects this item.
 
void addToSelection (ParameterType item)
 Selects an item.
 
void addToSelectionBasedOnModifiers (ParameterType item, ModifierKeys modifiers)
 Selects or deselects an item.
 
bool addToSelectionOnMouseDown (ParameterType item, ModifierKeys modifiers)
 Selects or deselects items that can also be dragged, based on a mouse-down event.
 
void addToSelectionOnMouseUp (ParameterType item, ModifierKeys modifiers, const bool wasItemDragged, const bool resultOfMouseDownSelectMethod)
 Selects or deselects items that can also be dragged, based on a mouse-up event.
 
void deselect (ParameterType item)
 Deselects an item.
 
void deselectAll ()
 Deselects all items.
 
int getNumSelected () const noexcept
 Returns the number of currently selected items.
 
SelectableItemType getSelectedItem (const int index) const
 Returns one of the currently selected items.
 
bool isSelected (ParameterType item) const noexcept
 True if this item is currently selected.
 
const ItemArraygetItemArray () const noexcept
 Provides access to the array of items.
 
SelectableItemTypebegin () noexcept
 Provides iterator access to the array of items.
 
const SelectableItemTypebegin () const noexcept
 
SelectableItemTypeend () noexcept
 Provides iterator access to the array of items.
 
const SelectableItemTypeend () const noexcept
 Provides iterator access to the array of items.
 
virtual void itemSelected (SelectableItemType)
 Can be overridden to do special handling when an item is selected.
 
virtual void itemDeselected (SelectableItemType)
 Can be overridden to do special handling when an item is deselected.
 
void changed ()
 Used internally, but can be called to force a change message to be sent to the ChangeListeners.
 
void changed (const bool synchronous)
 Used internally, but can be called to force a change message to be sent to the ChangeListeners.
 
- Public Member Functions inherited from juce::ChangeBroadcaster
 ChangeBroadcaster () noexcept
 Creates an ChangeBroadcaster.
 
virtual ~ChangeBroadcaster ()
 Destructor.
 
void addChangeListener (ChangeListener *listener)
 Registers a listener to receive change callbacks from this broadcaster.
 
void removeChangeListener (ChangeListener *listener)
 Unregisters a listener from the list.
 
void removeAllChangeListeners ()
 Removes all listeners from the list.
 
void sendChangeMessage ()
 Causes an asynchronous change message to be sent to all the registered listeners.
 
void sendSynchronousChangeMessage ()
 Sends a synchronous change message to all the registered listeners.
 
void dispatchPendingMessages ()
 If a change message has been sent but not yet dispatched, this will call sendSynchronousChangeMessage() to make the callback immediately.
 

Detailed Description

template<class SelectableItemType>
class juce::SelectedItemSet< SelectableItemType >

Manages a list of selectable items.

Use one of these to keep a track of things that the user has highlighted, like icons or things in a list.

The class is templated so that you can use it to hold either a set of pointers to objects, or a set of ID numbers or handles, for cases where each item may not always have a corresponding object.

To be informed when items are selected/deselected, register a ChangeListener with this object.

@tags{GUI}

Definition at line 45 of file juce_SelectedItemSet.h.

Member Typedef Documentation

◆ ItemArray

Definition at line 50 of file juce_SelectedItemSet.h.

◆ ItemType

Definition at line 49 of file juce_SelectedItemSet.h.

◆ ParameterType

using juce::SelectedItemSet< SelectableItemType >::ParameterType = typename TypeHelpers::ParameterType<SelectableItemType>::type

Definition at line 51 of file juce_SelectedItemSet.h.

Constructor & Destructor Documentation

◆ SelectedItemSet() [1/2]

juce::SelectedItemSet< SelectableItemType >::SelectedItemSet ( const ItemArray items)
explicit

Creates a set based on an array of items.

Definition at line 58 of file juce_SelectedItemSet.h.

◆ SelectedItemSet() [2/2]

Creates a copy of another set.

Definition at line 64 of file juce_SelectedItemSet.h.

Member Function Documentation

◆ addToSelection()

void juce::SelectedItemSet< SelectableItemType >::addToSelection ( ParameterType  item)

Selects an item.

If the item is already selected, no change notification will be sent out.

See also
selectOnly, addToSelectionBasedOnModifiers

Definition at line 128 of file juce_SelectedItemSet.h.

◆ addToSelectionBasedOnModifiers()

void juce::SelectedItemSet< SelectableItemType >::addToSelectionBasedOnModifiers ( ParameterType  item,
ModifierKeys  modifiers 
)

Selects or deselects an item.

This will use the modifier keys to decide whether to deselect other items first.

So if the shift key is held down, the item will be added without deselecting anything (same as calling addToSelection() )

If no modifiers are down, the current selection will be cleared first (same as calling selectOnly() )

If the ctrl (or command on the Mac) key is held down, the item will be toggled - so it'll be added to the set unless it's already there, in which case it'll be deselected.

If the items that you're selecting can also be dragged, you may need to use the addToSelectionOnMouseDown() and addToSelectionOnMouseUp() calls to handle the subtleties of this kind of usage.

See also
selectOnly, addToSelection, addToSelectionOnMouseDown, addToSelectionOnMouseUp

Definition at line 160 of file juce_SelectedItemSet.h.

◆ addToSelectionOnMouseDown()

bool juce::SelectedItemSet< SelectableItemType >::addToSelectionOnMouseDown ( ParameterType  item,
ModifierKeys  modifiers 
)

Selects or deselects items that can also be dragged, based on a mouse-down event.

If you call addToSelectionOnMouseDown() at the start of your mouseDown event, and then call addToSelectionOnMouseUp() at the end of your mouseUp event, this makes it easy to handle multiple-selection of sets of objects that can also be dragged.

For example, if you have several items already selected, and you click on one of them (without dragging), then you'd expect this to deselect the other, and just select the item you clicked on. But if you had clicked on this item and dragged it, you'd have expected them all to stay selected.

When you call this method, you'll need to store the boolean result, because the addToSelectionOnMouseUp() method will need to be know this value.

See also
addToSelectionOnMouseUp, addToSelectionBasedOnModifiers

Definition at line 197 of file juce_SelectedItemSet.h.

◆ addToSelectionOnMouseUp()

void juce::SelectedItemSet< SelectableItemType >::addToSelectionOnMouseUp ( ParameterType  item,
ModifierKeys  modifiers,
const bool  wasItemDragged,
const bool  resultOfMouseDownSelectMethod 
)

Selects or deselects items that can also be dragged, based on a mouse-up event.

Call this during a mouseUp callback, when you have previously called the addToSelectionOnMouseDown() method during your mouseDown event.

See addToSelectionOnMouseDown() for more info

Parameters
itemthe item to select (or deselect)
modifiersthe modifiers from the mouse-up event
wasItemDraggedtrue if your item was dragged during the mouse click
resultOfMouseDownSelectMethodthis is the boolean return value that came back from the addToSelectionOnMouseDown() call that you should have made during the matching mouseDown event

Definition at line 221 of file juce_SelectedItemSet.h.

◆ begin() [1/2]

Definition at line 278 of file juce_SelectedItemSet.h.

◆ begin() [2/2]

Provides iterator access to the array of items.

Definition at line 276 of file juce_SelectedItemSet.h.

◆ changed() [1/2]

Used internally, but can be called to force a change message to be sent to the ChangeListeners.

Definition at line 304 of file juce_SelectedItemSet.h.

◆ changed() [2/2]

Used internally, but can be called to force a change message to be sent to the ChangeListeners.

Definition at line 312 of file juce_SelectedItemSet.h.

◆ deselect()

void juce::SelectedItemSet< SelectableItemType >::deselect ( ParameterType  item)

Deselects an item.

Definition at line 231 of file juce_SelectedItemSet.h.

◆ deselectAll()

Deselects all items.

Definition at line 243 of file juce_SelectedItemSet.h.

◆ end() [1/2]

Provides iterator access to the array of items.

Definition at line 284 of file juce_SelectedItemSet.h.

◆ end() [2/2]

Provides iterator access to the array of items.

Definition at line 281 of file juce_SelectedItemSet.h.

◆ getItemArray()

const ItemArray & juce::SelectedItemSet< SelectableItemType >::getItemArray ( ) const
noexcept

Provides access to the array of items.

Definition at line 273 of file juce_SelectedItemSet.h.

◆ getNumSelected()

int juce::SelectedItemSet< SelectableItemType >::getNumSelected ( ) const
noexcept

Returns the number of currently selected items.

See also
getSelectedItem

Definition at line 261 of file juce_SelectedItemSet.h.

◆ getSelectedItem()

Returns one of the currently selected items.

If the index is out-of-range, this returns a default-constructed SelectableItemType.

See also
getNumSelected

Definition at line 267 of file juce_SelectedItemSet.h.

◆ isSelected()

bool juce::SelectedItemSet< SelectableItemType >::isSelected ( ParameterType  item) const
noexcept

True if this item is currently selected.

Definition at line 270 of file juce_SelectedItemSet.h.

◆ itemDeselected()

Can be overridden to do special handling when an item is deselected.

For example, if the item is an object, you might want to call it and tell it that it's being deselected.

Definition at line 299 of file juce_SelectedItemSet.h.

◆ itemSelected()

Can be overridden to do special handling when an item is selected.

For example, if the item is an object, you might want to call it and tell it that it's being selected.

Definition at line 292 of file juce_SelectedItemSet.h.

◆ operator=()

Creates a copy of another set.

Definition at line 70 of file juce_SelectedItemSet.h.

◆ selectOnly()

void juce::SelectedItemSet< SelectableItemType >::selectOnly ( ParameterType  item)

Clears any other currently selected items, and selects this item.

If this item is already the only thing selected, no change notification will be sent out.

See also
addToSelection, addToSelectionBasedOnModifiers

Definition at line 101 of file juce_SelectedItemSet.h.


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