20 lines
423 B
Python
20 lines
423 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# sound type constants
|
||
|
SOUND_NONE = 0
|
||
|
SOUND_KNOWN = 1
|
||
|
SOUND_UNKNOWN = 2
|
||
|
SOUND_CONNECTED = 3
|
||
|
SOUND_DISCONNECTED = 4
|
||
|
SOUND_CONNECTION_GREEN = 5
|
||
|
|
||
|
|
||
|
# returns true if the given sound category is a connection sound
|
||
|
# rather than a received message sound
|
||
|
def is_connection_sound(category):
|
||
|
return category in (
|
||
|
SOUND_CONNECTED,
|
||
|
SOUND_DISCONNECTED,
|
||
|
SOUND_CONNECTION_GREEN
|
||
|
)
|