mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, Mustafa Quraish <mustafa@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 "HexEditor.h"
 | |
| #include "ValueInspectorModel.h"
 | |
| #include <AK/Function.h>
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <LibGUI/ActionGroup.h>
 | |
| #include <LibGUI/Application.h>
 | |
| #include <LibGUI/TextEditor.h>
 | |
| #include <LibGUI/Widget.h>
 | |
| #include <LibGUI/Window.h>
 | |
| 
 | |
| class HexEditor;
 | |
| 
 | |
| class HexEditorWidget final : public GUI::Widget {
 | |
|     C_OBJECT(HexEditorWidget)
 | |
| public:
 | |
|     virtual ~HexEditorWidget() override = default;
 | |
|     void open_file(String const& filename, NonnullOwnPtr<Core::File>);
 | |
|     ErrorOr<void> initialize_menubar(GUI::Window&);
 | |
|     bool request_close();
 | |
| 
 | |
| private:
 | |
|     HexEditorWidget();
 | |
|     void set_path(StringView);
 | |
|     void update_title();
 | |
|     void set_search_results_visible(bool visible);
 | |
|     void set_value_inspector_visible(bool visible);
 | |
|     void update_inspector_values(size_t position);
 | |
| 
 | |
|     virtual void drag_enter_event(GUI::DragEvent&) override;
 | |
|     virtual void drop_event(GUI::DropEvent&) override;
 | |
| 
 | |
|     RefPtr<HexEditor> m_editor;
 | |
|     DeprecatedString m_path;
 | |
|     DeprecatedString m_name;
 | |
|     DeprecatedString m_extension;
 | |
| 
 | |
|     int m_goto_history { 0 };
 | |
|     String m_search_text;
 | |
|     ByteBuffer m_search_buffer;
 | |
|     int last_found_index() const { return m_last_found_index == -1 ? 0 : m_last_found_index; }
 | |
|     int m_last_found_index { -1 };
 | |
| 
 | |
|     RefPtr<GUI::Action> m_new_action;
 | |
|     RefPtr<GUI::Action> m_open_action;
 | |
|     RefPtr<GUI::Action> m_save_action;
 | |
|     RefPtr<GUI::Action> m_save_as_action;
 | |
| 
 | |
|     RefPtr<GUI::Action> m_undo_action;
 | |
|     RefPtr<GUI::Action> m_redo_action;
 | |
| 
 | |
|     RefPtr<GUI::Action> m_find_action;
 | |
|     RefPtr<GUI::Action> m_goto_offset_action;
 | |
|     RefPtr<GUI::Action> m_layout_toolbar_action;
 | |
|     RefPtr<GUI::Action> m_layout_search_results_action;
 | |
|     RefPtr<GUI::Action> m_layout_value_inspector_action;
 | |
| 
 | |
|     RefPtr<GUI::Action> m_copy_hex_action;
 | |
|     RefPtr<GUI::Action> m_copy_text_action;
 | |
|     RefPtr<GUI::Action> m_copy_as_c_code_action;
 | |
|     RefPtr<GUI::Action> m_fill_selection_action;
 | |
| 
 | |
|     GUI::ActionGroup m_bytes_per_row_actions;
 | |
|     GUI::ActionGroup m_value_inspector_mode_actions;
 | |
| 
 | |
|     RefPtr<GUI::Statusbar> m_statusbar;
 | |
|     RefPtr<GUI::Toolbar> m_toolbar;
 | |
|     RefPtr<GUI::ToolbarContainer> m_toolbar_container;
 | |
|     RefPtr<GUI::TableView> m_search_results;
 | |
|     RefPtr<GUI::Widget> m_search_results_container;
 | |
|     RefPtr<GUI::Widget> m_side_panel_container;
 | |
|     RefPtr<GUI::Widget> m_value_inspector_container;
 | |
|     RefPtr<GUI::TableView> m_value_inspector;
 | |
| 
 | |
|     bool m_value_inspector_little_endian { true };
 | |
|     bool m_selecting_from_inspector { false };
 | |
| };
 | 
