mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:52:45 +00:00 
			
		
		
		
	 9d8aa2a57a
			
		
	
	
		9d8aa2a57a
		
	
	
	
	
		
			
			Make the taskbar 27 pixels tall instead of 28. This makes the button icons and applets vertically centered. On a related note, this required touching *way* too many places..
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "WindowList.h"
 | |
| #include <LibGUI/Widget.h>
 | |
| #include <LibGUI/Window.h>
 | |
| 
 | |
| class TaskbarWindow final : public GUI::Window {
 | |
|     C_OBJECT(TaskbarWindow);
 | |
| 
 | |
| public:
 | |
|     virtual ~TaskbarWindow() override;
 | |
| 
 | |
|     static int taskbar_height() { return 27; }
 | |
| 
 | |
| private:
 | |
|     explicit TaskbarWindow(NonnullRefPtr<GUI::Menu> start_menu);
 | |
|     void create_quick_launch_bar();
 | |
|     void on_screen_rect_change(const Gfx::IntRect&);
 | |
|     NonnullRefPtr<GUI::Button> create_button(const WindowIdentifier&);
 | |
|     void add_window_button(::Window&, const WindowIdentifier&);
 | |
|     void remove_window_button(::Window&, bool);
 | |
|     void update_window_button(::Window&, bool);
 | |
|     ::Window* find_window_owner(::Window&) const;
 | |
| 
 | |
|     virtual void wm_event(GUI::WMEvent&) override;
 | |
|     virtual void screen_rect_change_event(GUI::ScreenRectChangeEvent&) override;
 | |
| 
 | |
|     void update_applet_area();
 | |
| 
 | |
|     NonnullRefPtr<GUI::Menu> m_start_menu;
 | |
|     RefPtr<GUI::Widget> m_task_button_container;
 | |
|     RefPtr<Gfx::Bitmap> m_default_icon;
 | |
| 
 | |
|     Gfx::IntSize m_applet_area_size;
 | |
|     RefPtr<GUI::Frame> m_applet_area_container;
 | |
|     RefPtr<GUI::Button> m_start_button;
 | |
| };
 |