2020-02-16 19:28:08 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-16 19:28:08 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
|
#include <LibGUI/Application.h>
|
|
|
|
|
#include <LibGUI/Notification.h>
|
2020-03-29 19:04:05 +02:00
|
|
|
#include <LibGfx/Bitmap.h>
|
2020-02-16 19:28:08 +01:00
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
|
{
|
2020-07-04 14:05:19 +02:00
|
|
|
auto app = GUI::Application::construct(argc, argv);
|
2020-02-16 19:28:08 +01:00
|
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
|
const char* title = nullptr;
|
|
|
|
|
const char* message = nullptr;
|
2020-03-26 20:38:28 +01:00
|
|
|
const char* icon_path = nullptr;
|
2020-02-16 19:28:08 +01:00
|
|
|
args_parser.add_positional_argument(title, "Title of the notification", "title");
|
|
|
|
|
args_parser.add_positional_argument(message, "Message to display in the notification", "message");
|
2020-03-26 20:38:28 +01:00
|
|
|
args_parser.add_positional_argument(icon_path, "Path of icon to display in the notification", "icon-path", Core::ArgsParser::Required::No);
|
2020-02-16 19:28:08 +01:00
|
|
|
args_parser.parse(argc, argv);
|
|
|
|
|
|
|
|
|
|
auto notification = GUI::Notification::construct();
|
|
|
|
|
notification->set_text(message);
|
|
|
|
|
notification->set_title(title);
|
2021-12-25 16:35:47 +01:00
|
|
|
if (icon_path) {
|
|
|
|
|
ErrorOr<NonnullRefPtr<Gfx::Bitmap>> icon_or_error = Gfx::Bitmap::try_load_from_file(icon_path);
|
|
|
|
|
if (icon_or_error.is_error()) {
|
|
|
|
|
warnln("Failed to load icon: {}", icon_or_error.error());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
notification->set_icon(icon_or_error.release_value());
|
|
|
|
|
}
|
2020-02-16 19:28:08 +01:00
|
|
|
notification->show();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|