mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:32:45 +00:00 
			
		
		
		
	 6e19ab2bbc
			
		
	
	
		6e19ab2bbc
		
	
	
	
	
		
			
			We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			985 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			985 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Alex McGrath <amk@amk.ie>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGUI/Label.h>
 | |
| 
 | |
| namespace GUI {
 | |
| 
 | |
| class LinkLabel : public Label {
 | |
|     C_OBJECT(LinkLabel);
 | |
| 
 | |
| public:
 | |
|     Function<void()> on_click;
 | |
| 
 | |
| private:
 | |
|     explicit LinkLabel(DeprecatedString text = {});
 | |
| 
 | |
|     virtual void mousemove_event(MouseEvent&) override;
 | |
|     virtual void mousedown_event(MouseEvent&) override;
 | |
|     virtual void paint_event(PaintEvent&) override;
 | |
|     virtual void resize_event(ResizeEvent&) override;
 | |
|     virtual void leave_event(Core::Event&) override;
 | |
|     virtual void keydown_event(KeyEvent&) override;
 | |
|     virtual void context_menu_event(ContextMenuEvent&) override;
 | |
| 
 | |
|     virtual void did_change_text() override;
 | |
| 
 | |
|     void update_tooltip_if_needed();
 | |
|     void setup_actions();
 | |
|     void set_hovered(bool);
 | |
| 
 | |
|     RefPtr<Menu> m_context_menu;
 | |
|     RefPtr<Action> m_open_action;
 | |
|     RefPtr<Action> m_copy_action;
 | |
| 
 | |
|     bool m_hovered { false };
 | |
| };
 | |
| 
 | |
| }
 |