slint/api/cpp/tests/window.cpp
Aurindam Jana 3523e86359
Simplify commercial license (#3063)
Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
2024-05-31 14:06:17 +02:00

46 lines
1.3 KiB
C++

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
#define CATCH_CONFIG_MAIN
#include "catch2/catch.hpp"
#include <slint.h>
#include <thread>
#include <slint-interpreter.h>
TEST_CASE("Basic Window Visibility")
{
using namespace slint::interpreter;
using namespace slint;
ComponentCompiler compiler;
auto comp_def = compiler.build_from_source(R"(
export App := Window {
}
)",
"");
REQUIRE(comp_def.has_value());
auto instance = comp_def->create();
REQUIRE(instance->window().is_visible() == false);
instance->show();
REQUIRE(instance->window().is_visible() == true);
instance->hide();
REQUIRE(instance->window().is_visible() == false);
}
TEST_CASE("Window Scale Factory Existence")
{
using namespace slint::interpreter;
using namespace slint;
ComponentCompiler compiler;
auto comp_def = compiler.build_from_source(R"(
export App := Window {
}
)",
"");
REQUIRE(comp_def.has_value());
auto instance = comp_def->create();
REQUIRE(instance->window().scale_factor() > 0);
}