OpenRCT2/src/openrct2-ui/windows/TitleOptions.cpp

70 lines
2.0 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2024 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 <openrct2-ui/interface/Widget.h>
#include <openrct2-ui/windows/Window.h>
#include <openrct2/Context.h>
#include <openrct2/config/Config.h>
#include <openrct2/localisation/Localisation.h>
namespace OpenRCT2::Ui::Windows
{
// clang-format off
enum WindowTitleOptionsWidgetIdx {
WIDX_OPTIONS,
};
static Widget _windowTitleOptionsWidgets[] = {
MakeWidget({0, 0}, {80, 15}, WindowWidgetType::Button, WindowColour::Tertiary, STR_OPTIONS, STR_OPTIONS_TIP),
kWidgetsEnd,
};
// 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(DrawPixelInfo& dpi) override
{
DrawWidgets(dpi);
}
};
/**
* Creates the window containing the options button on the title screen.
*/
WindowBase* TitleOptionsOpen()
{
auto* window = WindowBringToFrontByClass(WindowClass::TitleOptions);
if (window == nullptr)
{
window = WindowCreate<TitleOptionsWindow>(
WindowClass::TitleOptions, ScreenCoordsXY(ContextGetWidth() - 80, 0), 80, 15,
WF_STICK_TO_BACK | WF_TRANSPARENT);
}
return window;
}
} // namespace OpenRCT2::Ui::Windows