From 66ed63166173ccbf5279f6204a1b4099daf176ec Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 5 Jun 2025 18:00:36 +0200 Subject: gui: extract resource path strings --- gui/include/resources.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gui/include/resources.hpp (limited to 'gui/include/resources.hpp') diff --git a/gui/include/resources.hpp b/gui/include/resources.hpp new file mode 100644 index 0000000..bf37468 --- /dev/null +++ b/gui/include/resources.hpp @@ -0,0 +1,19 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner + * SPDX-License-Identifier: LGPL-2.1-only + */ + +#ifndef TURNS_GUI_RESOURCES_HPP +#define TURNS_GUI_RESOURCES_HPP + +namespace Turns::gui::resource +{ + auto constexpr static metainfo_xml{"/ch/arknet/Turns/metainfo.xml"}; + auto constexpr static participant_editor_ui{"/ch/arknet/Turns/participant_editor.ui"}; + auto constexpr static participant_row_ui{"/ch/arknet/Turns/participant_row.ui"}; + auto constexpr static preferences_ui{"/ch/arknet/Turns/preferences.ui"}; + auto constexpr static tracker_ui{"/ch/arknet/Turns/tracker.ui"}; + auto constexpr static turn_order_view_ui{"/ch/arknet/Turns/turn_order_view.ui"}; +} // namespace Turns::gui::resource + +#endif \ No newline at end of file -- cgit v1.2.3