mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:12:43 +00:00 
			
		
		
		
	 f34b1c7a7e
			
		
	
	
		f34b1c7a7e
		
	
	
	
	
		
			
			`Tool::get_properties_widget()` now also returns a NNRP to a widget rather than a raw pointer.
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  * Copyright (c) 2022, Timothy Slater <tslater2006@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "../Selection.h"
 | |
| #include "Tool.h"
 | |
| 
 | |
| #include <AK/Vector.h>
 | |
| #include <LibGUI/Widget.h>
 | |
| 
 | |
| namespace PixelPaint {
 | |
| 
 | |
| class WandSelectTool final : public Tool {
 | |
| public:
 | |
|     WandSelectTool() = default;
 | |
|     virtual ~WandSelectTool() = default;
 | |
| 
 | |
|     virtual void on_mousedown(Layer*, MouseEvent& event) override;
 | |
|     virtual bool on_keydown(GUI::KeyEvent&) override;
 | |
|     virtual NonnullRefPtr<GUI::Widget> get_properties_widget() override;
 | |
|     virtual Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap const>> cursor() override { return Gfx::StandardCursor::Crosshair; }
 | |
| 
 | |
| private:
 | |
|     virtual StringView tool_name() const override { return "Wand Select Tool"sv; }
 | |
| 
 | |
|     int m_threshold { 0 };
 | |
|     RefPtr<GUI::Widget> m_properties_widget;
 | |
|     Vector<DeprecatedString> m_merge_mode_names {};
 | |
|     Selection::MergeMode m_merge_mode { Selection::MergeMode::Set };
 | |
| };
 | |
| 
 | |
| }
 |