Skip to content

Commit

Permalink
LibGUI: Convert GRadioButton to ObjectPtr
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Sep 21, 2019
1 parent 870bc2a commit f8d7514
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions Applications/Terminal/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ ObjectPtr<GWindow> create_settings_window(TerminalWidget& terminal, RefPtr<CConf
radio_container->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
radio_container->set_preferred_size(100, 70);

auto* sysbell_radio = new GRadioButton("Use (Audible) System Bell", radio_container);
auto* visbell_radio = new GRadioButton("Use (Visual) Terminal Bell", radio_container);
auto sysbell_radio = GRadioButton::construct("Use (Audible) System Bell", radio_container);
auto visbell_radio = GRadioButton::construct("Use (Visual) Terminal Bell", radio_container);
sysbell_radio->set_checked(terminal.should_beep());
visbell_radio->set_checked(!terminal.should_beep());
sysbell_radio->on_checked = [&terminal](const bool checked) {
Expand Down Expand Up @@ -181,8 +181,13 @@ int main(int argc, char** argv)
auto app_menu = make<GMenu>("Terminal");
app_menu->add_action(GAction::create("Settings...", load_png("/res/icons/gear16.png"),
[&](const GAction&) {
if (!settings_window)
if (!settings_window) {
settings_window = create_settings_window(*terminal, config);
settings_window->on_close_request = [&] {
settings_window = nullptr;
return GWindow::CloseRequestDecision::Close;
};
}
settings_window->show();
settings_window->move_to_front();
}));
Expand Down
4 changes: 2 additions & 2 deletions Demos/WidgetGallery/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ int main(int argc, char** argv)
auto* checkbox2 = new GCheckBox("GCheckBox 2", main_widget);
checkbox2->set_enabled(false);

auto* radio1 = new GRadioButton("GRadioButton 1", main_widget);
auto radio1 = GRadioButton::construct("GRadioButton 1", main_widget);
(void)radio1;
auto* radio2 = new GRadioButton("GRadioButton 2", main_widget);
auto radio2 = GRadioButton::construct("GRadioButton 2", main_widget);
radio2->set_enabled(false);

auto* button1 = new GButton("GButton 1", main_widget);
Expand Down
2 changes: 1 addition & 1 deletion Libraries/LibGUI/GRadioButton.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
class GRadioButton : public GAbstractButton {
C_OBJECT(GRadioButton)
public:
GRadioButton(const StringView& text, GWidget* parent);
virtual ~GRadioButton() override;

virtual void click() override;

protected:
GRadioButton(const StringView& text, GWidget* parent);
virtual void paint_event(GPaintEvent&) override;

private:
Expand Down

0 comments on commit f8d7514

Please sign in to comment.