mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-26 12:17:52 +00:00
LibGUI: Add GUI::Process::spawn_or_show_error()
This is a wrapper around Core::Process::spawn() for GUI applications, that shows an error if the call to spawn() failed.
This commit is contained in:
parent
3fc0350caf
commit
2f2671f2d3
Notes:
sideshowbarker
2024-07-17 22:41:14 +09:00
Author: https://github.com/MacDue
Commit: 2f2671f2d3
Pull-request: https://github.com/SerenityOS/serenity/pull/13999
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/linusg
3 changed files with 58 additions and 0 deletions
20
Userland/Libraries/LibGUI/Process.h
Normal file
20
Userland/Libraries/LibGUI/Process.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* 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 = {});
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue