/* * Copyright (c) 2018-2020, Andreas Kling * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { GUI::Application app(argc, argv); auto window = GUI::Window::construct(); window->set_rect(100, 100, 400, 487); window->set_title("Widget Gallery"); auto& root_widget = window->set_main_widget(); root_widget.set_fill_with_background_color(true); root_widget.set_layout(); root_widget.layout()->set_margins({ 4, 4, 4, 4 }); auto& tab_widget = root_widget.add(); auto& tab_basic = tab_widget.add_tab("Basic"); tab_basic.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fill); tab_basic.set_layout(); tab_basic.layout()->set_margins({ 4, 4, 4, 4 }); tab_basic.layout()->set_spacing(4); auto& checkbox1 = tab_basic.add("CheckBox 1"); (void)checkbox1; auto& checkbox2 = tab_basic.add("CheckBox 2"); checkbox2.set_enabled(false); auto& radio1 = tab_basic.add("RadioButton 1"); (void)radio1; auto& radio2 = tab_basic.add("RadioButton 2"); radio2.set_enabled(false); auto& button1 = tab_basic.add("Button 1"); (void)button1; auto& button2 = tab_basic.add("Button 2"); button2.set_enabled(false); auto& progress1 = tab_basic.add(); progress1.add(100, [&] { progress1.set_value(progress1.value() + 1); if (progress1.value() == progress1.max()) progress1.set_value(progress1.min()); }); auto& label1 = tab_basic.add("Label 1"); (void)label1; auto& label2 = tab_basic.add("Label 2"); label2.set_enabled(false); auto& textbox1 = tab_basic.add(); textbox1.set_text("TextBox 1"); auto& textbox2 = tab_basic.add(); textbox2.set_text("TextBox 2"); textbox2.set_enabled(false); auto& spinbox1 = tab_basic.add(); (void)spinbox1; auto& spinbox2 = tab_basic.add(); spinbox2.set_enabled(false); auto& color_input_enabled = tab_basic.add(); color_input_enabled.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fill); color_input_enabled.set_color(Color::from_string("#573666ff").value()); color_input_enabled.set_color_picker_title("Select color for desktop"); auto& color_input_disabled = tab_basic.add(); color_input_disabled.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fill); color_input_disabled.set_color(Color::from_string("#573666ff").value()); color_input_disabled.set_enabled(false); auto& tab_others = tab_widget.add_tab("Sliders"); tab_others.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fill); tab_others.set_layout(); tab_others.layout()->set_margins({ 4, 4, 4, 4 }); tab_others.layout()->set_spacing(4); auto& vertical_slider_container = tab_others.add(); vertical_slider_container.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); vertical_slider_container.set_preferred_size(0, 100); vertical_slider_container.set_layout(); auto& vslider1 = vertical_slider_container.add(); (void)vslider1; auto& vslider2 = vertical_slider_container.add(); vslider2.set_enabled(false); auto& vslider3 = vertical_slider_container.add(); vslider3.set_max(5); vslider3.set_knob_size_mode(GUI::Slider::KnobSizeMode::Proportional); auto& slider1 = tab_others.add(); (void)slider1; auto& slider2 = tab_others.add(); slider2.set_enabled(false); auto& slider3 = tab_others.add(); slider3.set_max(5); slider3.set_knob_size_mode(GUI::Slider::KnobSizeMode::Proportional); auto& scrollbar1 = tab_others.add(Orientation::Horizontal); scrollbar1.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); scrollbar1.set_preferred_size(0, 16); scrollbar1.set_min(0); scrollbar1.set_max(100); scrollbar1.set_value(50); auto& scrollbar2 = tab_others.add(Orientation::Horizontal); scrollbar2.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); scrollbar2.set_preferred_size(0, 16); scrollbar2.set_enabled(false); auto& tab_msgbox = tab_widget.add_tab("Message Box"); tab_msgbox.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fill); tab_msgbox.set_layout(); tab_msgbox.layout()->set_margins({ 4, 4, 4, 4 }); tab_msgbox.layout()->set_spacing(4); GUI::MessageBox::Type msg_box_type = GUI::MessageBox::Type::Error; auto& icon_group_box = tab_msgbox.add("Icon"); icon_group_box.set_layout(); icon_group_box.layout()->set_margins({ 5, 15, 5, 5 }); icon_group_box.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); icon_group_box.set_preferred_size(0, 150); auto& radio_none = icon_group_box.add("None"); radio_none.on_checked = [&](bool) { msg_box_type = GUI::MessageBox::Type::None; }; auto& radio_information = icon_group_box.add("Information"); radio_information.on_checked = [&](bool) { msg_box_type = GUI::MessageBox::Type::Information; }; auto& question_information = icon_group_box.add("Question"); question_information.on_checked = [&](bool) { msg_box_type = GUI::MessageBox::Type::Question; }; auto& radio_warning = icon_group_box.add("Warning"); radio_warning.on_checked = [&](bool) { msg_box_type = GUI::MessageBox::Type::Warning; }; auto& radio_error = icon_group_box.add("Error"); radio_error.set_checked(true); radio_error.on_checked = [&](bool) { msg_box_type = GUI::MessageBox::Type::Error; }; auto& button_group_box = tab_msgbox.add("Buttons"); button_group_box.set_layout(); button_group_box.layout()->set_margins({ 5, 10, 5, 5 }); button_group_box.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); button_group_box.set_preferred_size(0, 120); GUI::MessageBox::InputType msg_box_input_type = GUI::MessageBox::InputType::OKCancel; auto& radio_ok = button_group_box.add("OK"); radio_ok.on_checked = [&](bool) { msg_box_input_type = GUI::MessageBox::InputType::OK; }; auto& radio_ok_cancel = button_group_box.add("OK & Cancel"); radio_ok_cancel.set_checked(true); radio_ok_cancel.on_checked = [&](bool) { msg_box_input_type = GUI::MessageBox::InputType::OKCancel; }; auto& radio_yes_no = button_group_box.add("Yes & No"); radio_yes_no.on_checked = [&](bool) { msg_box_input_type = GUI::MessageBox::InputType::YesNo; }; auto& radio_yes_no_cancel = button_group_box.add("Yes & No & Cancel"); radio_yes_no_cancel.on_checked = [&](bool) { msg_box_input_type = GUI::MessageBox::InputType::YesNoCancel; }; auto& title_textbox = tab_msgbox.add(); title_textbox.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); title_textbox.set_preferred_size(0, 20); title_textbox.set_text("Demo Title"); auto& content_textbox = tab_msgbox.add(); content_textbox.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); content_textbox.set_preferred_size(0, 20); content_textbox.set_text("Demo text for message box."); auto& show_buton = tab_msgbox.add("Show"); show_buton.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); show_buton.set_preferred_size(0, 20); show_buton.on_click = [&](auto) { GUI::MessageBox::show(content_textbox.text(), title_textbox.text(), msg_box_type, msg_box_input_type, window); }; tab_msgbox.layout()->add_spacer(); window->show(); return app.exec(); }