diff --git a/include/TGUI/Signal.hpp b/include/TGUI/Signal.hpp index 4f42b07a..376dae0f 100644 --- a/include/TGUI/Signal.hpp +++ b/include/TGUI/Signal.hpp @@ -229,44 +229,6 @@ namespace tgui std::map> m_handlers; }; -#ifdef TGUI_REMOVE_DEPRECATED_CODE - #define TGUI_SIGNAL_VALUE_DECLARATION(TypeName, Type) \ - /**************************************************************************************************************************** \ - * @brief Signal to which the user can subscribe to get callbacks from - ****************************************************************************************************************************/ \ - class TGUI_API Signal##TypeName : public Signal \ - { \ - public: \ - /************************************************************************************************************************ \ - * @brief Constructor - ************************************************************************************************************************/ \ - Signal##TypeName(std::string&& name) : \ - Signal{std::move(name), 1} \ - { \ - } \ - \ - /************************************************************************************************************************ \ - * @internal - * @brief Call all connected signal handlers - ************************************************************************************************************************/ \ - bool emit(const Widget* widget, Type param) \ - { \ - if (m_handlers.empty()) \ - return false; \ - \ - internal_signal::parameters[1] = static_cast(¶m); \ - return Signal::emit(widget); \ - } \ - \ - private: \ - /************************************************************************************************************************ \ - * @internal - * @brief Checks whether the unbound parameters match with this signal - * @return The index in the parameters list where the parameters will be stored - ************************************************************************************************************************/ \ - unsigned int validateTypes(std::initializer_list unboundParameters) const override; \ - }; -#else #define TGUI_SIGNAL_VALUE_DECLARATION(TypeName, Type) \ /**************************************************************************************************************************** \ * @brief Signal to which the user can subscribe to get callbacks from @@ -293,7 +255,7 @@ namespace tgui * * @return Unique id of the connection ************************************************************************************************************************/ \ - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const Delegate##TypeName& handler); \ + unsigned int connect(const Delegate##TypeName& handler); \ \ /************************************************************************************************************************ \ * @brief Connects a signal handler that will be called when this signal is emitted @@ -302,7 +264,7 @@ namespace tgui * * @return Unique id of the connection ************************************************************************************************************************/ \ - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const Delegate##TypeName##Ex& handler); \ + unsigned int connect(const Delegate##TypeName##Ex& handler); \ \ /************************************************************************************************************************ \ * @internal @@ -325,7 +287,6 @@ namespace tgui ************************************************************************************************************************/ \ unsigned int validateTypes(std::initializer_list unboundParameters) const override; \ }; -#endif TGUI_SIGNAL_VALUE_DECLARATION(Int, int) TGUI_SIGNAL_VALUE_DECLARATION(UInt, unsigned int) @@ -342,11 +303,9 @@ namespace tgui { public: - #ifndef TGUI_REMOVE_DEPRECATED_CODE using DelegateRange = std::function; using DelegateRangeEx = std::function, const std::string&, float, float)>; using Signal::connect; - #endif ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Constructor @@ -356,7 +315,7 @@ namespace tgui { } - #ifndef TGUI_REMOVE_DEPRECATED_CODE + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Connects a signal handler that will be called when this signal is emitted /// @@ -364,7 +323,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateRange& handler); + unsigned int connect(const DelegateRange& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -374,8 +333,8 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateRangeEx& handler); - #endif + unsigned int connect(const DelegateRangeEx& handler); + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @internal @@ -405,11 +364,10 @@ namespace tgui { public: - #ifndef TGUI_REMOVE_DEPRECATED_CODE using DelegateChildWindow = std::function)>; using DelegateChildWindowEx = std::function, const std::string&, std::shared_ptr)>; using Signal::connect; - #endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Constructor @@ -419,7 +377,7 @@ namespace tgui { } - #ifndef TGUI_REMOVE_DEPRECATED_CODE + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Connects a signal handler that will be called when this signal is emitted /// @@ -427,7 +385,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateChildWindow& handler); + unsigned int connect(const DelegateChildWindow& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -437,8 +395,8 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateChildWindowEx& handler); - #endif + unsigned int connect(const DelegateChildWindowEx& handler); + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @internal @@ -468,13 +426,12 @@ namespace tgui { public: - #ifndef TGUI_REMOVE_DEPRECATED_CODE using DelegateItem = std::function; using DelegateItemAndId = std::function; using DelegateItemEx = std::function, const std::string&, const sf::String&)>; using DelegateItemAndIdEx = std::function, const std::string&, const sf::String&, const sf::String&)>; using Signal::connect; - #endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Constructor @@ -484,7 +441,7 @@ namespace tgui { } - #ifndef TGUI_REMOVE_DEPRECATED_CODE + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Connects a signal handler that will be called when this signal is emitted /// @@ -492,7 +449,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateItem& handler); + unsigned int connect(const DelegateItem& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -502,7 +459,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateItemEx& handler); + unsigned int connect(const DelegateItemEx& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -512,7 +469,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateItemAndId& handler); + unsigned int connect(const DelegateItemAndId& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -522,8 +479,8 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateItemAndIdEx& handler); - #endif + unsigned int connect(const DelegateItemAndIdEx& handler); + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @internal @@ -610,13 +567,12 @@ namespace tgui { public: - #ifndef TGUI_REMOVE_DEPRECATED_CODE using DelegateMenuItem = std::function; using DelegateMenuItemFull = std::function&)>; using DelegateMenuItemEx = std::function, const std::string&, const sf::String&)>; using DelegateMenuItemFullEx = std::function, const std::string&, const std::vector&)>; using Signal::connect; - #endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Constructor @@ -626,7 +582,7 @@ namespace tgui { } - #ifndef TGUI_REMOVE_DEPRECATED_CODE + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @brief Connects a signal handler that will be called when this signal is emitted /// @@ -634,7 +590,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateMenuItem& handler); + unsigned int connect(const DelegateMenuItem& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -644,7 +600,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateMenuItemEx& handler); + unsigned int connect(const DelegateMenuItemEx& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -654,7 +610,7 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateMenuItemFull& handler); + unsigned int connect(const DelegateMenuItemFull& handler); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -664,8 +620,8 @@ namespace tgui /// /// @return Unique id of the connection ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - TGUI_DEPRECATED("Use connect function from widget instead") unsigned int connect(const DelegateMenuItemFullEx& handler); - #endif + unsigned int connect(const DelegateMenuItemFullEx& handler); + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @internal diff --git a/src/TGUI/Signal.cpp b/src/TGUI/Signal.cpp index 043a2130..1a0314b5 100644 --- a/src/TGUI/Signal.cpp +++ b/src/TGUI/Signal.cpp @@ -135,7 +135,6 @@ namespace tgui ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#ifndef TGUI_REMOVE_DEPRECATED_CODE #define TGUI_SIGNAL_VALUE_CONNECT_DEFINITION(TypeName, Type) \ unsigned int Signal##TypeName::connect(const Delegate##TypeName& handler) \ { \ @@ -157,7 +156,6 @@ namespace tgui TGUI_SIGNAL_VALUE_CONNECT_DEFINITION(Float, float) TGUI_SIGNAL_VALUE_CONNECT_DEFINITION(String, const sf::String&) TGUI_SIGNAL_VALUE_CONNECT_DEFINITION(Vector2f, Vector2f) -#endif ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -220,7 +218,7 @@ namespace tgui } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#ifndef TGUI_REMOVE_DEPRECATED_CODE + unsigned int SignalRange::connect(const DelegateRange& handler) { const auto id = generateUniqueId(); @@ -236,7 +234,7 @@ namespace tgui m_handlers[id] = [handler, name=m_name](){ handler(getWidget(), name, internal_signal::dereference(internal_signal::parameters[1]), internal_signal::dereference(internal_signal::parameters[2])); }; return id; } -#endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// bool SignalRange::emit(const Widget* widget, float start, float end) @@ -260,7 +258,7 @@ namespace tgui } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#ifndef TGUI_REMOVE_DEPRECATED_CODE + unsigned int SignalChildWindow::connect(const DelegateChildWindow& handler) { const auto id = generateUniqueId(); @@ -276,7 +274,7 @@ namespace tgui m_handlers[id] = [handler, name=m_name](){ handler(getWidget(), name, internal_signal::dereference(internal_signal::parameters[1])); }; return id; } -#endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// bool SignalChildWindow::emit(ChildWindow* childWindow) @@ -300,7 +298,7 @@ namespace tgui } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#ifndef TGUI_REMOVE_DEPRECATED_CODE + unsigned int SignalItem::connect(const DelegateItem& handler) { const auto id = generateUniqueId(); @@ -334,7 +332,7 @@ namespace tgui m_handlers[id] = [handler, name=m_name](){ handler(getWidget(), name, internal_signal::dereference(internal_signal::parameters[1]), internal_signal::dereference(internal_signal::parameters[2])); }; return id; } -#endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// unsigned int SignalItem::validateTypes(std::initializer_list unboundParameters) const @@ -352,7 +350,7 @@ namespace tgui } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#ifndef TGUI_REMOVE_DEPRECATED_CODE + unsigned int SignalItemHierarchy::connect(const DelegateMenuItem& handler) { const auto id = generateUniqueId(); @@ -386,7 +384,7 @@ namespace tgui m_handlers[id] = [handler, name=m_name](){ handler(getWidget(), name, internal_signal::dereference>(internal_signal::parameters[2])); }; return id; } -#endif + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// unsigned int SignalItemHierarchy::validateTypes(std::initializer_list unboundParameters) const