1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 01:58:12 +00:00
serenity/Applications/VisualBuilder/VBPropertiesWindow.h
Andreas Kling 62d347d12a VisualBuilder: Remove the separate property editor box in favor of inline.
Also make the property names show up in bold text. :^)
2019-04-19 01:16:57 +02:00

18 lines
384 B
C++

#pragma once
#include <LibGUI/GWindow.h>
class GTableView;
class GTextBox;
class VBPropertiesWindow final : public GWindow {
public:
VBPropertiesWindow();
virtual ~VBPropertiesWindow() override;
GTableView& table_view() { return *m_table_view; }
const GTableView& table_view() const { return *m_table_view; }
private:
GTableView* m_table_view { nullptr };
};