/** * @file src/system_tray.h * @brief Declarations for the system tray icon and notification system. */ #pragma once /** * @brief Handles the system tray icon and notification system. */ namespace system_tray { /** * @brief Callback for opening the UI from the system tray. * @param item The tray menu item. */ void tray_open_ui_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Callback for opening GitHub Sponsors from the system tray. * @param item The tray menu item. */ void tray_donate_github_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Callback for opening Patreon from the system tray. * @param item The tray menu item. */ void tray_donate_patreon_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Callback for opening PayPal donation from the system tray. * @param item The tray menu item. */ void tray_donate_paypal_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Callback for resetting display device configuration. * @param item The tray menu item. */ void tray_reset_display_device_config_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Callback for restarting Sunshine from the system tray. * @param item The tray menu item. */ void tray_restart_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Callback for exiting Sunshine from the system tray. * @param item The tray menu item. */ void tray_quit_cb([[maybe_unused]] struct tray_menu *item); /** * @brief Initializes the system tray without starting a loop. * @return 0 if initialization was successful, non-zero otherwise. */ int init_tray(); /** * @brief Processes a single tray event iteration. * @return 0 if processing was successful, non-zero otherwise. */ int process_tray_events(); /** * @brief Exit the system tray. * @return 0 after exiting the system tray. */ int end_tray(); /** * @brief Sets the tray icon in playing mode and spawns the appropriate notification * @param app_name The started application name */ void update_tray_playing(std::string app_name); /** * @brief Sets the tray icon in pausing mode (stream stopped but app running) and spawns the appropriate notification * @param app_name The paused application name */ void update_tray_pausing(std::string app_name); /** * @brief Sets the tray icon in stopped mode (app and stream stopped) and spawns the appropriate notification * @param app_name The started application name */ void update_tray_stopped(std::string app_name); /** * @brief Spawns a notification for PIN Pairing. Clicking it opens the PIN Web UI Page */ void update_tray_require_pin(); /** * @brief Initializes and runs the system tray in a separate thread. * @return 0 if initialization was successful, non-zero otherwise. */ int init_tray_threaded(); } // namespace system_tray