mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
|
/*
|
||
|
* Copyright (c) 2022, MacDue <macdue@dueutil.tech>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <AK/Format.h>
|
||
|
#include <AK/StringView.h>
|
||
|
#include <LibGUI/MessageBox.h>
|
||
|
#include <LibGUI/Process.h>
|
||
|
|
||
|
template<typename StringType>
|
||
|
void spawn_or_show_error(GUI::Window* parent_window, StringView path, Span<StringType const> arguments)
|
||
|
{
|
||
|
auto spawn_result = Core::Process::spawn(path, arguments);
|
||
|
if (spawn_result.is_error())
|
||
|
GUI::MessageBox::show_error(parent_window, String::formatted("Failed to spawn {}: {}", path, spawn_result.error()));
|
||
|
}
|
||
|
|
||
|
namespace GUI {
|
||
|
|
||
|
void Process::spawn_or_show_error(Window* parent_window, StringView path, Span<String const> arguments)
|
||
|
{
|
||
|
::spawn_or_show_error<String>(parent_window, path, arguments);
|
||
|
}
|
||
|
|
||
|
void Process::spawn_or_show_error(Window* parent_window, StringView path, Span<StringView const> arguments)
|
||
|
{
|
||
|
::spawn_or_show_error<StringView>(parent_window, path, arguments);
|
||
|
}
|
||
|
|
||
|
void Process::spawn_or_show_error(Window* parent_window, StringView path, Span<char const* const> arguments)
|
||
|
{
|
||
|
::spawn_or_show_error<char const*>(parent_window, path, arguments);
|
||
|
}
|
||
|
|
||
|
}
|