1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-11 01:12:07 +00:00
serenity/Applications/PaintBrush/ColorDialog.cpp
Andreas Kling bc319d9e88 LibCore: Make CObject reference-counted
Okay, I've spent a whole day on this now, and it finally kinda works!
With this patch, CObject and all of its derived classes are reference
counted instead of tree-owned.

The previous, Qt-like model was nice and familiar, but ultimately also
outdated and difficult to reason about.

CObject-derived types should now be stored in RefPtr/NonnullRefPtr and
each class can be constructed using the forwarding construct() helper:

    auto widget = GWidget::construct(parent_widget);

Note that construct() simply forwards all arguments to an existing
constructor. It is inserted into each class by the C_OBJECT macro,
see CObject.h to understand how that works.

CObject::delete_later() disappears in this patch, as there is no longer
a single logical owner of a CObject.
2019-09-22 00:25:25 +02:00

80 lines
2.7 KiB
C++

#include "ColorDialog.h"
#include <LibGUI/GBoxLayout.h>
#include <LibGUI/GButton.h>
#include <LibGUI/GFrame.h>
#include <LibGUI/GSpinBox.h>
#include <LibGUI/GWidget.h>
ColorDialog::ColorDialog(Color color, CObject* parent)
: GDialog(parent)
, m_color(color)
{
set_title("Edit Color");
build();
}
ColorDialog::~ColorDialog()
{
}
void ColorDialog::build()
{
auto horizontal_container = GWidget::construct();
horizontal_container->set_fill_with_background_color(true);
horizontal_container->set_layout(make<GBoxLayout>(Orientation::Horizontal));
horizontal_container->layout()->set_margins({ 4, 4, 4, 4 });
set_main_widget(horizontal_container);
auto left_vertical_container = GWidget::construct(horizontal_container.ptr());
left_vertical_container->set_layout(make<GBoxLayout>(Orientation::Vertical));
auto right_vertical_container = GWidget::construct(horizontal_container.ptr());
right_vertical_container->set_layout(make<GBoxLayout>(Orientation::Vertical));
enum RGBComponent {
Red, Green, Blue
};
m_preview_widget = GFrame::construct(right_vertical_container);
m_preview_widget->set_background_color(m_color);
m_preview_widget->set_fill_with_background_color(true);
right_vertical_container->layout()->add_spacer();
auto cancel_button = GButton::construct("Cancel", right_vertical_container);
cancel_button->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
cancel_button->set_preferred_size(0, 20);
cancel_button->on_click = [&](auto&) {
done(GDialog::ExecCancel);
};
auto ok_button = GButton::construct("Okay", right_vertical_container);
ok_button->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
ok_button->set_preferred_size(0, 20);
ok_button->on_click = [&](auto&) {
done(GDialog::ExecOK);
};
auto make_spinbox = [&](RGBComponent component, int initial_value) {
auto spinbox = GSpinBox::construct(left_vertical_container);
spinbox->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
spinbox->set_preferred_size(0, 20);
spinbox->set_min(0);
spinbox->set_max(255);
spinbox->set_value(initial_value);
spinbox->on_change = [this, component](auto value) {
if (component == Red)
m_color.set_red(value);
if (component == Green)
m_color.set_green(value);
if (component == Blue)
m_color.set_blue(value);
m_preview_widget->set_background_color(m_color);
m_preview_widget->update();
};
return spinbox;
};
make_spinbox(Red, m_color.red());
make_spinbox(Green, m_color.green());
make_spinbox(Blue, m_color.blue());
}