mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-01 03:18:32 +00:00
dc967ccc7b
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>
40 lines
720 B
C++
40 lines
720 B
C++
/**
|
|
* @file src/system_tray.h
|
|
* @brief todo
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// system_tray namespace
|
|
namespace system_tray {
|
|
|
|
void
|
|
tray_open_ui_cb(struct tray_menu *item);
|
|
void
|
|
tray_donate_github_cb(struct tray_menu *item);
|
|
void
|
|
tray_donate_mee6_cb(struct tray_menu *item);
|
|
void
|
|
tray_donate_patreon_cb(struct tray_menu *item);
|
|
void
|
|
tray_donate_paypal_cb(struct tray_menu *item);
|
|
void
|
|
tray_quit_cb(struct tray_menu *item);
|
|
|
|
int
|
|
system_tray();
|
|
int
|
|
run_tray();
|
|
int
|
|
end_tray();
|
|
void
|
|
update_tray_playing(std::string app_name);
|
|
void
|
|
update_tray_pausing(std::string app_name);
|
|
void
|
|
update_tray_stopped(std::string app_name);
|
|
void
|
|
update_tray_require_pin();
|
|
|
|
} // namespace system_tray
|