2015-08-07 05:03:22 -07:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2016-07-10 15:01:18 -07:00
|
|
|
// TGUI - Texus' Graphical User Interface
|
2018-03-22 11:57:45 -07:00
|
|
|
// Copyright (C) 2012-2018 Bruno Van de Velde (vdv_b@tgui.eu)
|
2015-08-07 05:03:22 -07:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-09-13 10:41:48 -07:00
|
|
|
#include "Tests.hpp"
|
|
|
|
#include <TGUI/ToolTip.hpp>
|
2016-09-15 16:45:46 -07:00
|
|
|
#include <TGUI/TextureManager.hpp>
|
2016-09-13 10:41:48 -07:00
|
|
|
#include <TGUI/Widgets/Label.hpp>
|
|
|
|
#include <TGUI/Widgets/Panel.hpp>
|
2015-08-07 05:03:22 -07:00
|
|
|
|
2016-08-20 09:42:18 -07:00
|
|
|
TEST_CASE("[ToolTip]")
|
|
|
|
{
|
2016-09-13 10:41:48 -07:00
|
|
|
sf::Time oldTimeToDisplay = tgui::ToolTip::getTimeToDisplay();
|
|
|
|
sf::Vector2f oldDistanceToMouse = tgui::ToolTip::getDistanceToMouse();
|
|
|
|
|
2016-08-20 09:42:18 -07:00
|
|
|
SECTION("TimeToDisplay")
|
|
|
|
{
|
2015-08-19 10:40:19 -07:00
|
|
|
tgui::ToolTip::setTimeToDisplay(sf::milliseconds(280));
|
|
|
|
REQUIRE(tgui::ToolTip::getTimeToDisplay() == sf::milliseconds(280));
|
2015-08-07 05:03:22 -07:00
|
|
|
}
|
|
|
|
|
2016-08-20 09:42:18 -07:00
|
|
|
SECTION("DistanceToMouse")
|
|
|
|
{
|
2015-09-08 07:12:02 -07:00
|
|
|
tgui::ToolTip::setDistanceToMouse({5, 5});
|
|
|
|
REQUIRE(tgui::ToolTip::getDistanceToMouse() == sf::Vector2f(5, 5));
|
2015-08-07 05:03:22 -07:00
|
|
|
}
|
2016-09-13 10:41:48 -07:00
|
|
|
|
|
|
|
SECTION("Setting tool tip of widget")
|
|
|
|
{
|
2016-09-14 11:11:20 -07:00
|
|
|
auto widget = tgui::ClickableWidget::create();
|
2016-09-13 10:41:48 -07:00
|
|
|
|
2016-09-14 11:11:20 -07:00
|
|
|
auto tooltip1 = tgui::Label::create();
|
2016-09-13 10:41:48 -07:00
|
|
|
tooltip1->setRenderer(tgui::Theme("resources/Black.txt").getRenderer("ToolTip"));
|
|
|
|
tooltip1->setText("some text");
|
|
|
|
widget->setToolTip(tooltip1);
|
|
|
|
REQUIRE(widget->getToolTip() == tooltip1);
|
|
|
|
|
|
|
|
SECTION("Saving and loading from file")
|
|
|
|
{
|
|
|
|
tgui::ToolTip::setTimeToDisplay(sf::milliseconds(320));
|
|
|
|
tgui::ToolTip::setDistanceToMouse({2, 1});
|
|
|
|
|
|
|
|
testSavingWidget("ToolTip", widget, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToolTip does not has to be a label
|
2016-09-14 11:11:20 -07:00
|
|
|
auto tooltip2 = tgui::Panel::create();
|
2016-09-13 10:41:48 -07:00
|
|
|
widget->setToolTip(tooltip2);
|
|
|
|
REQUIRE(widget->getToolTip() == tooltip2);
|
|
|
|
|
|
|
|
// ToolTip can be removed
|
|
|
|
widget->setToolTip(nullptr);
|
|
|
|
REQUIRE(widget->getToolTip() == nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
tgui::ToolTip::setTimeToDisplay(oldTimeToDisplay);
|
|
|
|
tgui::ToolTip::setDistanceToMouse(oldDistanceToMouse);
|
2015-08-07 05:03:22 -07:00
|
|
|
}
|