From 219c14b0c20423ae3f797b7f42a849ed4d25d977 Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Sat, 4 Mar 2017 15:00:07 +0100 Subject: [PATCH] Added "not supported" implementation for iOS and Android --- src/SFML/Window/Android/CursorImpl.cpp | 68 ++++++++++++++++++++ src/SFML/Window/Android/CursorImpl.hpp | 88 ++++++++++++++++++++++++++ src/SFML/Window/iOS/CursorImpl.cpp | 68 ++++++++++++++++++++ src/SFML/Window/iOS/CursorImpl.hpp | 88 ++++++++++++++++++++++++++ 4 files changed, 312 insertions(+) create mode 100644 src/SFML/Window/Android/CursorImpl.cpp create mode 100644 src/SFML/Window/Android/CursorImpl.hpp create mode 100644 src/SFML/Window/iOS/CursorImpl.cpp create mode 100644 src/SFML/Window/iOS/CursorImpl.hpp diff --git a/src/SFML/Window/Android/CursorImpl.cpp b/src/SFML/Window/Android/CursorImpl.cpp new file mode 100644 index 000000000..34f9b45b3 --- /dev/null +++ b/src/SFML/Window/Android/CursorImpl.cpp @@ -0,0 +1,68 @@ +//////////////////////////////////////////////////////////// +// +// SFML - Simple and Fast Multimedia Library +// Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org) +// +// This software is provided 'as-is', without any express or implied warranty. +// In no event will the authors be held liable for any damages arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it freely, +// subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; +// you must not claim that you wrote the original software. +// If you use this software in a product, an acknowledgment +// in the product documentation would be appreciated but is not required. +// +// 2. Altered source versions must be plainly marked as such, +// and must not be misrepresented as being the original software. +// +// 3. This notice may not be removed or altered from any source distribution. +// +//////////////////////////////////////////////////////////// + +//////////////////////////////////////////////////////////// +// Headers +//////////////////////////////////////////////////////////// +#include + +namespace sf +{ +namespace priv +{ + +//////////////////////////////////////////////////////////// +CursorImpl::CursorImpl() +{ + // Nothing. +} + + +//////////////////////////////////////////////////////////// +CursorImpl::~CursorImpl() +{ + // Nothing. +} + + +//////////////////////////////////////////////////////////// +bool CursorImpl::loadFromPixels(const Uint8* pixels, Vector2u size, Vector2u hotspot) +{ + // Not supported + return false; +} + + +//////////////////////////////////////////////////////////// +bool CursorImpl::loadFromSystem(Cursor::Type type) +{ + // Not supported + return false; +} + + +} // namespace priv + +} // namespace sf + diff --git a/src/SFML/Window/Android/CursorImpl.hpp b/src/SFML/Window/Android/CursorImpl.hpp new file mode 100644 index 000000000..805ab96fe --- /dev/null +++ b/src/SFML/Window/Android/CursorImpl.hpp @@ -0,0 +1,88 @@ +//////////////////////////////////////////////////////////// +// +// SFML - Simple and Fast Multimedia Library +// Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org) +// +// This software is provided 'as-is', without any express or implied warranty. +// In no event will the authors be held liable for any damages arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it freely, +// subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; +// you must not claim that you wrote the original software. +// If you use this software in a product, an acknowledgment +// in the product documentation would be appreciated but is not required. +// +// 2. Altered source versions must be plainly marked as such, +// and must not be misrepresented as being the original software. +// +// 3. This notice may not be removed or altered from any source distribution. +// +//////////////////////////////////////////////////////////// + +#ifndef SFML_CURSORIMPLANDROID_HPP +#define SFML_CURSORIMPLANDROID_HPP + +//////////////////////////////////////////////////////////// +// Headers +//////////////////////////////////////////////////////////// +#include +#include +#include + + +namespace sf +{ + +namespace priv +{ +//////////////////////////////////////////////////////////// +/// \brief Android implementation of Cursor +/// +/// This is a typical "not supported" implementation. +/// +//////////////////////////////////////////////////////////// +class CursorImpl : NonCopyable +{ +public: + + //////////////////////////////////////////////////////////// + /// \brief Default constructor + /// + /// Refer to sf::Cursor::Cursor(). + /// + //////////////////////////////////////////////////////////// + CursorImpl(); + + //////////////////////////////////////////////////////////// + /// \brief Destructor + /// + /// Refer to sf::Cursor::~Cursor(). + /// + //////////////////////////////////////////////////////////// + ~CursorImpl(); + + //////////////////////////////////////////////////////////// + /// \brief Create a cursor with the provided image + /// + /// Returns false. + /// + //////////////////////////////////////////////////////////// + bool loadFromPixels(const Uint8* pixels, Vector2u size, Vector2u hotspot); + + //////////////////////////////////////////////////////////// + /// \brief Create a native system cursor + /// + /// Returns false. + /// + //////////////////////////////////////////////////////////// + bool loadFromSystem(Cursor::Type type); +}; + +} // namespace priv + +} // namespace sf + +#endif // SFML_CURSORIMPLANDROID_HPP diff --git a/src/SFML/Window/iOS/CursorImpl.cpp b/src/SFML/Window/iOS/CursorImpl.cpp new file mode 100644 index 000000000..ea725aaf5 --- /dev/null +++ b/src/SFML/Window/iOS/CursorImpl.cpp @@ -0,0 +1,68 @@ +//////////////////////////////////////////////////////////// +// +// SFML - Simple and Fast Multimedia Library +// Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org) +// +// This software is provided 'as-is', without any express or implied warranty. +// In no event will the authors be held liable for any damages arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it freely, +// subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; +// you must not claim that you wrote the original software. +// If you use this software in a product, an acknowledgment +// in the product documentation would be appreciated but is not required. +// +// 2. Altered source versions must be plainly marked as such, +// and must not be misrepresented as being the original software. +// +// 3. This notice may not be removed or altered from any source distribution. +// +//////////////////////////////////////////////////////////// + +//////////////////////////////////////////////////////////// +// Headers +//////////////////////////////////////////////////////////// +#include + +namespace sf +{ +namespace priv +{ + +//////////////////////////////////////////////////////////// +CursorImpl::CursorImpl() +{ + // Nothing. +} + + +//////////////////////////////////////////////////////////// +CursorImpl::~CursorImpl() +{ + // Nothing. +} + + +//////////////////////////////////////////////////////////// +bool CursorImpl::loadFromPixels(const Uint8* pixels, Vector2u size, Vector2u hotspot) +{ + // Not supported + return false; +} + + +//////////////////////////////////////////////////////////// +bool CursorImpl::loadFromSystem(Cursor::Type type) +{ + // Not supported + return false; +} + + +} // namespace priv + +} // namespace sf + diff --git a/src/SFML/Window/iOS/CursorImpl.hpp b/src/SFML/Window/iOS/CursorImpl.hpp new file mode 100644 index 000000000..6f715b7ad --- /dev/null +++ b/src/SFML/Window/iOS/CursorImpl.hpp @@ -0,0 +1,88 @@ +//////////////////////////////////////////////////////////// +// +// SFML - Simple and Fast Multimedia Library +// Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org) +// +// This software is provided 'as-is', without any express or implied warranty. +// In no event will the authors be held liable for any damages arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it freely, +// subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; +// you must not claim that you wrote the original software. +// If you use this software in a product, an acknowledgment +// in the product documentation would be appreciated but is not required. +// +// 2. Altered source versions must be plainly marked as such, +// and must not be misrepresented as being the original software. +// +// 3. This notice may not be removed or altered from any source distribution. +// +//////////////////////////////////////////////////////////// + +#ifndef SFML_CURSORIMPLIOS_HPP +#define SFML_CURSORIMPLIOS_HPP + +//////////////////////////////////////////////////////////// +// Headers +//////////////////////////////////////////////////////////// +#include +#include +#include + + +namespace sf +{ + +namespace priv +{ +//////////////////////////////////////////////////////////// +/// \brief iOS implementation of Cursor +/// +/// This is a typical "not supported" implementation. +/// +//////////////////////////////////////////////////////////// +class CursorImpl : NonCopyable +{ +public: + + //////////////////////////////////////////////////////////// + /// \brief Default constructor + /// + /// Refer to sf::Cursor::Cursor(). + /// + //////////////////////////////////////////////////////////// + CursorImpl(); + + //////////////////////////////////////////////////////////// + /// \brief Destructor + /// + /// Refer to sf::Cursor::~Cursor(). + /// + //////////////////////////////////////////////////////////// + ~CursorImpl(); + + //////////////////////////////////////////////////////////// + /// \brief Create a cursor with the provided image + /// + /// Returns false. + /// + //////////////////////////////////////////////////////////// + bool loadFromPixels(const Uint8* pixels, Vector2u size, Vector2u hotspot); + + //////////////////////////////////////////////////////////// + /// \brief Create a native system cursor + /// + /// Returns false. + /// + //////////////////////////////////////////////////////////// + bool loadFromSystem(Cursor::Type type); +}; + +} // namespace priv + +} // namespace sf + +#endif // SFML_CURSORIMPLIOS_HPP