/***************************************************************************** * Copyright (c) 2014-2023 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #include #include #include #include #include #include // clang-format off enum WindowTitleOptionsWidgetIdx { WIDX_OPTIONS, }; static Widget _windowTitleOptionsWidgets[] = { MakeWidget({0, 0}, {80, 15}, WindowWidgetType::Button, WindowColour::Tertiary, STR_OPTIONS, STR_OPTIONS_TIP), WIDGETS_END, }; // clang-format on class TitleOptionsWindow final : public Window { public: void OnOpen() override { widgets = _windowTitleOptionsWidgets; WindowInitScrollWidgets(*this); } void OnMouseUp(WidgetIndex widgetIndex) override { switch (widgetIndex) { case WIDX_OPTIONS: ContextOpenWindow(WindowClass::Options); break; } } void OnDraw(rct_drawpixelinfo& dpi) override { DrawWidgets(dpi); } }; /** * Creates the window containing the options button on the title screen. */ rct_window* WindowTitleOptionsOpen() { auto* window = window_bring_to_front_by_class(WindowClass::TitleOptions); if (window == nullptr) { window = WindowCreate( WindowClass::TitleOptions, ScreenCoordsXY(ContextGetWidth() - 80, 0), 80, 15, WF_STICK_TO_BACK | WF_TRANSPARENT); } return window; }