The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Enumerations | Functions
desktop::notifications Namespace Reference

Enumerations

enum  type { CHAT, TURN_CHANGED, OTHER }
 

Functions

bool available ()
 Returns whether we were compiled with support for desktop notifications. More...
 
void send (const std::string &owner, const std::string &message, type t)
 Displays a desktop notification message, from owner, of type t. More...
 

Enumeration Type Documentation

Enumerator
CHAT 
TURN_CHANGED 
OTHER 

Definition at line 24 of file notifications.hpp.

Function Documentation

bool desktop::notifications::available ( )

Returns whether we were compiled with support for desktop notifications.

Definition at line 43 of file notifications.cpp.

Referenced by mp_ui_alerts::get_def_pref_notif(), gui2::tmp_alerts_options::pre_show(), and gui2::setup_item().

void desktop::notifications::send ( const std::string owner,
const std::string message,
type  t 
)

Displays a desktop notification message, from owner, of type t.

If it is an appropriate time to send a desktop notification (i.e. the window does not have focus and the feature is not disabled by the preferences), and wesnoth was compiled with support for this feature, a notification will be issued. If there is no support for notifications, this fcn is a no-op.

Note
Currently we have support for dbus (linux), windows tray notifications, and growl (Apple). To enable one of these, the corresponding compilation unit dbus_notification.cpp, growl_notification.cpp, windows_tray_notification.cpp, must be compiled, and the corresponding C++ symbol HAVE_LIBDBUS, HAVE_GROWL, WIN32 must be defined for that compilation unit _and for this one.

Definition at line 45 of file notifications.cpp.

Referenced by mp_ui_alerts::friend_message(), mp_ui_alerts::game_has_begun(), mp_ui_alerts::player_joins(), mp_ui_alerts::player_leaves(), mp_ui_alerts::private_message(), mp_ui_alerts::public_message(), mp_ui_alerts::ready_for_start(), mp_ui_alerts::server_message(), and mp_ui_alerts::turn_changed().