mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:12:43 +00:00 
			
		
		
		
	 0060b8c4e5
			
		
	
	
		0060b8c4e5
		
	
	
	
	
		
			
			This fixes an issue with a tab not updating its bookmark button when we either edit or delete a bookmark and the tab happens to be on the same page associated with the bookmark URL. `BookmarksBarWidget` "signals" a `Tab` object of any bookmark changes, where it will update the bookmark button depending on if the current URL is an existing bookmark or not.
		
			
				
	
	
		
			83 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Emanuel Sprung <emanuel.sprung@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGUI/Forward.h>
 | |
| #include <LibGUI/Model.h>
 | |
| #include <LibGUI/Widget.h>
 | |
| 
 | |
| namespace Browser {
 | |
| 
 | |
| class BookmarksBarWidget final
 | |
|     : public GUI::Widget
 | |
|     , private GUI::ModelClient {
 | |
|     C_OBJECT(BookmarksBarWidget);
 | |
| 
 | |
| public:
 | |
|     static BookmarksBarWidget& the();
 | |
| 
 | |
|     virtual ~BookmarksBarWidget() override;
 | |
| 
 | |
|     void set_model(RefPtr<GUI::Model>);
 | |
|     GUI::Model* model() { return m_model.ptr(); }
 | |
|     const GUI::Model* model() const { return m_model.ptr(); }
 | |
| 
 | |
|     enum class Open {
 | |
|         InNewTab,
 | |
|         InSameTab,
 | |
|         InNewWindow
 | |
|     };
 | |
| 
 | |
|     Function<void(DeprecatedString const& url, Open)> on_bookmark_click;
 | |
|     Function<void(DeprecatedString const&, DeprecatedString const&)> on_bookmark_hover;
 | |
|     Function<void()> on_bookmark_change;
 | |
| 
 | |
|     bool contains_bookmark(DeprecatedString const& url);
 | |
|     bool remove_bookmark(DeprecatedString const& url);
 | |
|     bool add_bookmark(DeprecatedString const& url, DeprecatedString const& title);
 | |
| 
 | |
|     enum class PerformEditOn {
 | |
|         NewBookmark,
 | |
|         ExistingBookmark
 | |
|     };
 | |
| 
 | |
|     bool edit_bookmark(DeprecatedString const& url, PerformEditOn perform_edit_on = PerformEditOn::ExistingBookmark);
 | |
| 
 | |
|     virtual Optional<GUI::UISize> calculated_min_size() const override
 | |
|     {
 | |
|         // Large enough to fit the `m_additional` button.
 | |
|         return GUI::UISize(20, 20);
 | |
|     }
 | |
| 
 | |
| private:
 | |
|     BookmarksBarWidget(DeprecatedString const&, bool enabled);
 | |
| 
 | |
|     // ^GUI::ModelClient
 | |
|     virtual void model_did_update(unsigned) override;
 | |
| 
 | |
|     // ^GUI::Widget
 | |
|     virtual void resize_event(GUI::ResizeEvent&) override;
 | |
| 
 | |
|     void update_content_size();
 | |
| 
 | |
|     bool update_model(Vector<JsonValue>& values, Function<bool(GUI::JsonArrayModel& model, Vector<JsonValue>&& values)> perform_model_change);
 | |
| 
 | |
|     RefPtr<GUI::Model> m_model;
 | |
|     RefPtr<GUI::Button> m_additional;
 | |
|     RefPtr<GUI::Widget> m_separator;
 | |
|     RefPtr<GUI::Menu> m_additional_menu;
 | |
| 
 | |
|     RefPtr<GUI::Menu> m_context_menu;
 | |
|     RefPtr<GUI::Action> m_context_menu_default_action;
 | |
|     DeprecatedString m_context_menu_url;
 | |
| 
 | |
|     Vector<NonnullRefPtr<GUI::Button>> m_bookmarks;
 | |
| 
 | |
|     int m_last_visible_index { -1 };
 | |
| };
 | |
| 
 | |
| }
 |