canberra.h | canberra.h | |||
---|---|---|---|---|
skipping to change at line 49 | skipping to change at line 49 | |||
* | * | |||
* Evaluates to the major version number of libcanberra. | * Evaluates to the major version number of libcanberra. | |||
*/ | */ | |||
#define CA_MAJOR (0) | #define CA_MAJOR (0) | |||
/** | /** | |||
* CA_MINOR: | * CA_MINOR: | |||
* | * | |||
* Evaluates to the minor version number of libcanberra. | * Evaluates to the minor version number of libcanberra. | |||
*/ | */ | |||
#define CA_MINOR (17) | #define CA_MINOR (18) | |||
/** | /** | |||
* CA_CHECK_VERSION: | * CA_CHECK_VERSION: | |||
* | * | |||
* Evaluates to TRUE when the library version is newer than the | * Evaluates to TRUE when the library version is newer than the | |||
* specified parameters. | * specified parameters. | |||
*/ | */ | |||
#define CA_CHECK_VERSION(major,minor) \ | #define CA_CHECK_VERSION(major,minor) \ | |||
((CA_MAJOR > (major)) || \ | ((CA_MAJOR > (major)) || \ | |||
(CA_MAJOR == (major) && CA_MINOR >= (minor))) | (CA_MAJOR == (major) && CA_MINOR >= (minor))) | |||
skipping to change at line 278 | skipping to change at line 278 | |||
* If this sound event was triggered by a window on the screen, the Y | * If this sound event was triggered by a window on the screen, the Y | |||
* position of the center of the window as fractional value between 0 | * position of the center of the window as fractional value between 0 | |||
* and 1, formatted as string, 0 reflecting the top side of the | * and 1, formatted as string, 0 reflecting the top side of the | |||
* screen, 1 the bottom side. | * screen, 1 the bottom side. | |||
* | * | |||
* Since: 0.17 | * Since: 0.17 | |||
*/ | */ | |||
#define CA_PROP_WINDOW_VPOS "window.vpos" | #define CA_PROP_WINDOW_VPOS "window.vpos" | |||
/** | /** | |||
* CA_PROP_WINDOW_DESKTOP: | ||||
* | ||||
* If this sound event was triggered by a window on the screen and the | ||||
* windowing system supports multiple desktops, a comma seperated list | ||||
* of indexes of the desktops this window is visible on. If this | ||||
* property is an empty string, it is visible on all desktops | ||||
* (i.e. 'sticky'). The first desktop is 0. (e.g. "0,2,3") | ||||
* | ||||
* Since: 0.18 | ||||
*/ | ||||
#define CA_PROP_WINDOW_DESKTOP "window.desktop" | ||||
/** | ||||
* CA_PROP_WINDOW_X11_DISPLAY: | * CA_PROP_WINDOW_X11_DISPLAY: | |||
* | * | |||
* If this sound event was triggered by a window on the screen and the | * If this sound event was triggered by a window on the screen and the | |||
* windowing system is X11, the X display name of the window (e.g. ":0"). | * windowing system is X11, the X display name of the window (e.g. ":0"). | |||
*/ | */ | |||
#define CA_PROP_WINDOW_X11_DISPLAY "window.x11.display" | #define CA_PROP_WINDOW_X11_DISPLAY "window.x11.display" | |||
/** | /** | |||
* CA_PROP_WINDOW_X11_SCREEN: | * CA_PROP_WINDOW_X11_SCREEN: | |||
* | * | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 14 lines changed or added | |||