
This is a wrapper around Core::Process::spawn() for GUI applications, that shows an error if the call to spawn() failed.
20 lines
551 B
C++
20 lines
551 B
C++
/*
|
|
* Copyright (c) 2022, MacDue <macdue@dueutil.tech>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibCore/Process.h>
|
|
#include <LibGUI/Forward.h>
|
|
|
|
namespace GUI {
|
|
|
|
struct Process {
|
|
static void spawn_or_show_error(Window* parent_window, StringView path, Span<String const> arguments);
|
|
static void spawn_or_show_error(Window* parent_window, StringView path, Span<StringView const> arguments);
|
|
static void spawn_or_show_error(Window* parent_window, StringView path, Span<char const* const> arguments = {});
|
|
};
|
|
|
|
}
|