mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 21:48:11 +00:00
VisualBuilder: Remove the separate property editor box in favor of inline.
Also make the property names show up in bold text. :^)
This commit is contained in:
parent
3a33b8ea08
commit
62d347d12a
3 changed files with 5 additions and 6 deletions
|
@ -7,18 +7,15 @@
|
||||||
VBPropertiesWindow::VBPropertiesWindow()
|
VBPropertiesWindow::VBPropertiesWindow()
|
||||||
{
|
{
|
||||||
set_title("Properties");
|
set_title("Properties");
|
||||||
set_rect(780, 200, 220, 280);
|
set_rect(780, 200, 240, 280);
|
||||||
|
|
||||||
auto* widget = new GWidget;
|
auto* widget = new GWidget;
|
||||||
widget->set_fill_with_background_color(true);
|
widget->set_fill_with_background_color(true);
|
||||||
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
||||||
set_main_widget(widget);
|
set_main_widget(widget);
|
||||||
|
|
||||||
m_text_box = new GTextBox(widget);
|
|
||||||
m_text_box->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
|
|
||||||
m_text_box->set_preferred_size({ 0, 21 });
|
|
||||||
|
|
||||||
m_table_view = new GTableView(widget);
|
m_table_view = new GTableView(widget);
|
||||||
|
m_table_view->set_headers_visible(false);
|
||||||
m_table_view->set_editable(true);
|
m_table_view->set_editable(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,5 @@ public:
|
||||||
const GTableView& table_view() const { return *m_table_view; }
|
const GTableView& table_view() const { return *m_table_view; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
GTextBox* m_text_box { nullptr };
|
|
||||||
GTableView* m_table_view { nullptr };
|
GTableView* m_table_view { nullptr };
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#include "VBWidgetPropertyModel.h"
|
#include "VBWidgetPropertyModel.h"
|
||||||
#include "VBWidget.h"
|
#include "VBWidget.h"
|
||||||
#include "VBProperty.h"
|
#include "VBProperty.h"
|
||||||
|
#include <SharedGraphics/Font.h>
|
||||||
|
|
||||||
VBWidgetPropertyModel::VBWidgetPropertyModel(VBWidget& widget)
|
VBWidgetPropertyModel::VBWidgetPropertyModel(VBWidget& widget)
|
||||||
: m_widget(widget)
|
: m_widget(widget)
|
||||||
|
@ -29,6 +30,8 @@ String VBWidgetPropertyModel::column_name(int column) const
|
||||||
GModel::ColumnMetadata VBWidgetPropertyModel::column_metadata(int column) const
|
GModel::ColumnMetadata VBWidgetPropertyModel::column_metadata(int column) const
|
||||||
{
|
{
|
||||||
UNUSED_PARAM(column);
|
UNUSED_PARAM(column);
|
||||||
|
if (column == Column::Name)
|
||||||
|
return { 110, TextAlignment::CenterLeft, &Font::default_bold_font() };
|
||||||
return { 90, TextAlignment::CenterLeft };
|
return { 90, TextAlignment::CenterLeft };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue