JUCE
Static Public Member Functions | List of all members
ModalCallbackFunction Class Reference

This class provides some handy utility methods for creating ModalComponentManager::Callback objects that will invoke a static function with some parameters when a modal component is dismissed. More...

Static Public Member Functions

template<typename ParamType >
static ModalComponentManager::Callbackcreate (void(*functionToCall)(int, ParamType), ParamType parameterValue)
 This is a utility function to create a ModalComponentManager::Callback that will call a static function with a parameter. More...
 
template<typename ParamType1 , typename ParamType2 >
static ModalComponentManager::CallbackwithParam (void(*functionToCall)(int, ParamType1, ParamType2), ParamType1 parameterValue1, ParamType2 parameterValue2)
 This is a utility function to create a ModalComponentManager::Callback that will call a static function with two custom parameters. More...
 
template<class ComponentType >
static ModalComponentManager::CallbackforComponent (void(*functionToCall)(int, ComponentType *), ComponentType *component)
 This is a utility function to create a ModalComponentManager::Callback that will call a static function with a component. More...
 
template<class ComponentType , typename ParamType >
static ModalComponentManager::CallbackforComponent (void(*functionToCall)(int, ComponentType *, ParamType), ComponentType *component, ParamType param)
 Creates a ModalComponentManager::Callback that will call a static function with a component. More...
 

Detailed Description

This class provides some handy utility methods for creating ModalComponentManager::Callback objects that will invoke a static function with some parameters when a modal component is dismissed.

Member Function Documentation

template<typename ParamType >
static ModalComponentManager::Callback* ModalCallbackFunction::create ( void(*)(int, ParamType)  functionToCall,
ParamType  parameterValue 
)
static

This is a utility function to create a ModalComponentManager::Callback that will call a static function with a parameter.

The function that you supply must take two parameters - the first being an int, which is the result code that was used when the modal component was dismissed, and the second can be a custom type. Note that this custom value will be copied and stored, so it must be a primitive type or a class that provides copy-by-value semantics.

E.g.

static void myCallbackFunction (int modalResult, double customValue)
{
if (modalResult == 1)
doSomethingWith (customValue);
}
Component* someKindOfComp;
...
someKindOfComp->enterModalState (ModalCallbackFunction::create (myCallbackFunction, 3.0));
See also
ModalComponentManager::Callback
template<typename ParamType1 , typename ParamType2 >
static ModalComponentManager::Callback* ModalCallbackFunction::withParam ( void(*)(int, ParamType1, ParamType2)  functionToCall,
ParamType1  parameterValue1,
ParamType2  parameterValue2 
)
static

This is a utility function to create a ModalComponentManager::Callback that will call a static function with two custom parameters.

The function that you supply must take three parameters - the first being an int, which is the result code that was used when the modal component was dismissed, and the next two are your custom types. Note that these custom values will be copied and stored, so they must be primitive types or classes that provide copy-by-value semantics.

E.g.

static void myCallbackFunction (int modalResult, double customValue1, String customValue2)
{
if (modalResult == 1)
doSomethingWith (customValue1, customValue2);
}
Component* someKindOfComp;
...
someKindOfComp->enterModalState (ModalCallbackFunction::create (myCallbackFunction, 3.0, String ("xyz")));
See also
ModalComponentManager::Callback
template<class ComponentType >
static ModalComponentManager::Callback* ModalCallbackFunction::forComponent ( void(*)(int, ComponentType *)  functionToCall,
ComponentType *  component 
)
static

This is a utility function to create a ModalComponentManager::Callback that will call a static function with a component.

The function that you supply must take two parameters - the first being an int, which is the result code that was used when the modal component was dismissed, and the second can be a Component class. The component will be stored as a WeakReference, so that if it gets deleted before this callback is invoked, the pointer that is passed to the function will be null.

E.g.

static void myCallbackFunction (int modalResult, Slider* mySlider)
{
if (modalResult == 1 && mySlider != nullptr) // (must check that mySlider isn't null in case it was deleted..)
mySlider->setValue (0.0);
}
Component* someKindOfComp;
Slider* mySlider;
...
someKindOfComp->enterModalState (ModalCallbackFunction::forComponent (myCallbackFunction, mySlider));
See also
ModalComponentManager::Callback

Referenced by StandaloneFilterWindow::buttonClicked().

template<class ComponentType , typename ParamType >
static ModalComponentManager::Callback* ModalCallbackFunction::forComponent ( void(*)(int, ComponentType *, ParamType)  functionToCall,
ComponentType *  component,
ParamType  param 
)
static

Creates a ModalComponentManager::Callback that will call a static function with a component.

The function that you supply must take three parameters - the first being an int, which is the result code that was used when the modal component was dismissed, the second being a Component class, and the third being a custom type (which must be a primitive type or have copy-by-value semantics). The component will be stored as a WeakReference, so that if it gets deleted before this callback is invoked, the pointer that is passed into the function will be null.

E.g.

static void myCallbackFunction (int modalResult, Slider* mySlider, String customParam)
{
if (modalResult == 1 && mySlider != nullptr) // (must check that mySlider isn't null in case it was deleted..)
mySlider->setName (customParam);
}
Component* someKindOfComp;
Slider* mySlider;
...
someKindOfComp->enterModalState (ModalCallbackFunction::forComponent (myCallbackFunction, mySlider, String ("hello")));
See also
ModalComponentManager::Callback

References JUCE_DECLARE_NON_COPYABLE, and JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR.


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