mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-10-31 18:48:11 +08:00 
			
		
		
		
	Feature: hyperlink support. (#665)
				
					
				
			See the [OSC 8 page](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda). FTXUI support proposed by @aaleino in [#662](https://github.com/ArthurSonzogni/FTXUI/issues/662). API: ```cpp auto link = text("Click here") | hyperlink("https://github.com/FTXUI") ``` Fixed:https://github.com/ArthurSonzogni/FTXUI/issues/662
This commit is contained in:
		| @@ -109,6 +109,8 @@ Element bgcolor(const LinearGradient&, Element); | ||||
| Decorator focusPosition(int x, int y); | ||||
| Decorator focusPositionRelative(float x, float y); | ||||
| Element automerge(Element child); | ||||
| Decorator hyperlink(std::string link); | ||||
| Element hyperlink(std::string link, Element child); | ||||
|  | ||||
| // --- Layout is | ||||
| // Horizontal, Vertical or stacked set of elements. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Arthur Sonzogni
					Arthur Sonzogni