mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-11-01 02:58:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			1002 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1002 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2020 Arthur Sonzogni. All rights reserved.
 | |
| // Use of this source code is governed by the MIT license that can be found in
 | |
| // the LICENSE file.
 | |
| #include <ftxui/dom/elements.hpp>  // for operator|, text, Element, Fit, borderDouble, borderHeavy, borderLight, borderRounded, vbox
 | |
| #include <ftxui/screen/screen.hpp>  // for Screen
 | |
| #include <iostream>                 // for endl, cout, ostream
 | |
| #include <memory>                   // for allocator
 | |
| 
 | |
| #include "ftxui/dom/node.hpp"      // for Render
 | |
| #include "ftxui/screen/color.hpp"  // for ftxui
 | |
| 
 | |
| int main() {
 | |
|   using namespace ftxui;
 | |
| 
 | |
|   auto document = vbox({
 | |
|       text("borderLight") | borderLight,
 | |
|       text("borderDashed") | borderDashed,
 | |
|       text("borderHeavy") | borderHeavy,
 | |
|       text("borderDouble") | borderDouble,
 | |
|       text("borderRounded") | borderRounded,
 | |
|   });
 | |
| 
 | |
|   auto screen =
 | |
|       Screen::Create(Dimension::Fit(document), Dimension::Fit(document));
 | |
|   Render(screen, document);
 | |
|   screen.Print();
 | |
|   std::cout << std::endl;
 | |
| }
 | 
