mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	 61af9d882e
			
		
	
	
		61af9d882e
		
	
	
	
	
		
			
			This enables rendering of mixed-scale screen layouts with e.g. high resolution cursors and window button icons on high-dpi screens while using lower resolution bitmaps on regular screens.
		
			
				
	
	
		
			54 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Function.h>
 | |
| #include <AK/Weakable.h>
 | |
| #include <LibGfx/Bitmap.h>
 | |
| #include <LibGfx/Forward.h>
 | |
| #include <LibGfx/Rect.h>
 | |
| #include <WindowServer/MultiScaleBitmaps.h>
 | |
| 
 | |
| namespace WindowServer {
 | |
| 
 | |
| class MouseEvent;
 | |
| class Screen;
 | |
| class WindowFrame;
 | |
| 
 | |
| class Button : public Weakable<Button> {
 | |
| public:
 | |
|     Button(WindowFrame&, Function<void(Button&)>&& on_click_handler);
 | |
|     ~Button();
 | |
| 
 | |
|     Gfx::IntRect relative_rect() const { return m_relative_rect; }
 | |
|     void set_relative_rect(const Gfx::IntRect& rect) { m_relative_rect = rect; }
 | |
| 
 | |
|     Gfx::IntRect rect() const { return { {}, m_relative_rect.size() }; }
 | |
|     Gfx::IntRect screen_rect() const;
 | |
| 
 | |
|     void paint(Screen&, Gfx::Painter&);
 | |
| 
 | |
|     void on_mouse_event(const MouseEvent&);
 | |
| 
 | |
|     Function<void(Button&)> on_click;
 | |
|     Function<void(Button&)> on_right_click;
 | |
|     Function<void(Button&)> on_middle_click;
 | |
| 
 | |
|     bool is_visible() const { return m_visible; }
 | |
| 
 | |
|     void set_icon(const RefPtr<MultiScaleBitmaps>& icon) { m_icon = icon; }
 | |
| 
 | |
| private:
 | |
|     WindowFrame& m_frame;
 | |
|     Gfx::IntRect m_relative_rect;
 | |
|     RefPtr<MultiScaleBitmaps> m_icon;
 | |
|     bool m_pressed { false };
 | |
|     bool m_visible { true };
 | |
|     bool m_hovered { false };
 | |
| };
 | |
| 
 | |
| }
 |