mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 14:42:51 +00:00
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Debugger.h"
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <LibGUI/Model.h>
|
|
#include <LibGUI/TreeView.h>
|
|
#include <sys/arch/i386/regs.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
class VariablesModel final : public GUI::Model {
|
|
public:
|
|
static RefPtr<VariablesModel> create(const PtraceRegisters& regs);
|
|
|
|
void set_variable_value(const GUI::ModelIndex&, const StringView&, GUI::Window*);
|
|
|
|
virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
|
|
virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return 1; }
|
|
virtual GUI::Variant data(const GUI::ModelIndex& index, GUI::ModelRole role) const override;
|
|
virtual void update() override;
|
|
virtual GUI::ModelIndex parent_index(const GUI::ModelIndex&) const override;
|
|
virtual GUI::ModelIndex index(int row, int column = 0, const GUI::ModelIndex& = GUI::ModelIndex()) const override;
|
|
|
|
private:
|
|
explicit VariablesModel(NonnullOwnPtrVector<Debug::DebugInfo::VariableInfo>&& variables, const PtraceRegisters& regs)
|
|
: m_variables(move(variables))
|
|
, m_regs(regs)
|
|
{
|
|
m_variable_icon.set_bitmap_for_size(16, Gfx::Bitmap::load_from_file("/res/icons/16x16/inspector-object.png"));
|
|
}
|
|
NonnullOwnPtrVector<Debug::DebugInfo::VariableInfo> m_variables;
|
|
PtraceRegisters m_regs;
|
|
|
|
GUI::Icon m_variable_icon;
|
|
};
|
|
|
|
}
|