mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Updated Button::onClick and added ComboBox::onChange
This commit is contained in:
parent
3300e71e17
commit
e7a5e520c6
20 changed files with 83 additions and 206 deletions
|
|
@ -1,75 +0,0 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
This file is part of the JUCE library.
|
||||
Copyright (c) 2017 - ROLI Ltd.
|
||||
|
||||
JUCE is an open source library subject to commercial or open-source
|
||||
licensing.
|
||||
|
||||
The code included in this file is provided under the terms of the ISC license
|
||||
http://www.isc.org/downloads/software-support-policy/isc-license. Permission
|
||||
To use, copy, modify, and/or distribute this software for any purpose with or
|
||||
without fee is hereby granted provided that the above copyright notice and
|
||||
this permission notice appear in all copies.
|
||||
|
||||
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
||||
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
||||
DISCLAIMED.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
namespace juce
|
||||
{
|
||||
|
||||
//==============================================================================
|
||||
/**
|
||||
Helper class for dispatching callbacks to a lambda function.
|
||||
|
||||
This class probably isn't something many users will use in their own code, but
|
||||
some juce classes use it as a helper to allow lambdas to be assigned to callback
|
||||
hooks - e.g. see its use in Button::onClick
|
||||
*/
|
||||
template <typename OwnerClass>
|
||||
struct EventHandler
|
||||
{
|
||||
EventHandler() {}
|
||||
~EventHandler() {}
|
||||
|
||||
/** Assigns a lambda to this callback.
|
||||
Note that this will replace any existing function that was previously assigned.
|
||||
*/
|
||||
void operator= (const std::function<void()>& callbackToAttach)
|
||||
{
|
||||
callback = callbackToAttach;
|
||||
}
|
||||
|
||||
/** Assigns a lambda to this callback.
|
||||
Note that this will replace any existing function that was previously assigned.
|
||||
*/
|
||||
void operator= (std::function<void()>&& callbackToAttach)
|
||||
{
|
||||
callback = static_cast<std::function<void()>&&> (callbackToAttach);
|
||||
}
|
||||
|
||||
/** Removes any existing function that was previously assigned to the callback. */
|
||||
void reset() noexcept
|
||||
{
|
||||
callback = {};
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
void invoke()
|
||||
{
|
||||
if (callback != nullptr)
|
||||
callback();
|
||||
}
|
||||
|
||||
private:
|
||||
std::function<void()> callback;
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (EventHandler)
|
||||
};
|
||||
|
||||
} // namespace juce
|
||||
|
|
@ -76,7 +76,6 @@
|
|||
#include "broadcasters/juce_AsyncUpdater.h"
|
||||
#include "broadcasters/juce_ChangeListener.h"
|
||||
#include "broadcasters/juce_ChangeBroadcaster.h"
|
||||
#include "broadcasters/juce_EventHandler.h"
|
||||
#include "timers/juce_Timer.h"
|
||||
#include "timers/juce_MultiTimer.h"
|
||||
#include "interprocess/juce_InterprocessConnection.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue