mirror of
				https://github.com/slint-ui/slint.git
				synced 2025-10-31 03:54:25 +00:00 
			
		
		
		
	 3523e86359
			
		
	
	
		3523e86359
		
			
		
	
	
	
	
		
			
			Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			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);
 | |
| }
 |