comparison frontends/src/quick_frontend/constants.py @ 1342:e31a07a5614d frontends_multi_profiles

quick_frontends, primitivus (contact list): added nick observer + implemented onNickUpdate
author Goffi <goffi@goffi.org>
date Tue, 24 Feb 2015 17:14:10 +0100
parents f8bd40509a2d
children a39d2db03c80
comparison
equal deleted inserted replaced
1341:6dbeb2ef966c 1342:e31a07a5614d
16 16
17 # You should have received a copy of the GNU Affero General Public License 17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 19
20 from sat.core import constants 20 from sat.core import constants
21 from sat.core.i18n import _, D_ 21 from sat.core.i18n import _
22 from collections import OrderedDict # only available from python 2.7 22 from collections import OrderedDict # only available from python 2.7
23 23
24 24
25 class Const(constants.Const): 25 class Const(constants.Const):
26 26
69 WIDGET_NEW = 'NEW' 69 WIDGET_NEW = 'NEW'
70 WIDGET_KEEP = 'KEEP' 70 WIDGET_KEEP = 'KEEP'
71 WIDGET_RAISE = 'RAISE' 71 WIDGET_RAISE = 'RAISE'
72 WIDGET_RECREATE = 'RECREATE' 72 WIDGET_RECREATE = 'RECREATE'
73 73
74 LISTENERS = {'avatar', 'presence'} 74 LISTENERS = {'avatar', 'nick', 'presence'}