diff frontends/src/primitivus/primitivus @ 495:a726b234d3bf

primitivus: moved constants in a separate file
author Goffi <goffi@goffi.org>
date Mon, 03 Sep 2012 23:43:15 +0200
parents 2a072735e459
children e9634d2e7b38
line wrap: on
line diff
--- a/frontends/src/primitivus/primitivus	Fri Aug 17 03:20:40 2012 +0200
+++ b/frontends/src/primitivus/primitivus	Mon Sep 03 23:43:15 2012 +0200
@@ -33,9 +33,9 @@
 from sat_frontends.primitivus.xmlui import XMLUI
 from sat_frontends.primitivus.progress import Progress
 from sat_frontends.primitivus.notify import Notify
+import sat_frontends.primitivus.constants
 import logging
 from logging import debug, info, error
-import sys, os
 from sat.tools.jid  import JID
 
 
@@ -43,41 +43,6 @@
 logging.basicConfig(level=logging.CRITICAL,  #TODO: configure it to put messages in a log file
                     format='%(message)s')
 ###
-
-const_APP_NAME      = "Primitivus"
-const_PALETTE = [('title', 'black', 'light gray', 'standout,underline'),
-                 ('title_focus', 'white,bold', 'light gray', 'standout,underline'),
-                 ('selected', 'default', 'dark red'),
-                 ('selected_focus', 'default,bold', 'dark red'),
-                 ('default', 'default', 'default'),
-                 ('default_focus', 'default,bold', 'default'),
-                 ('alert', 'default,underline', 'default'),
-                 ('alert_focus', 'default,bold,underline', 'default'),
-                 ('date', 'light gray', 'default'),
-                 ('my_nick', 'dark red,bold', 'default'),
-                 ('other_nick', 'dark cyan,bold', 'default'),
-                 ('menubar', 'light gray,bold', 'dark red'),
-                 ('menubar_focus', 'light gray,bold', 'dark green'),
-                 ('selected_menu', 'light gray,bold', 'dark green'),
-                 ('menuitem', 'light gray,bold', 'dark red'),
-                 ('menuitem_focus', 'light gray,bold', 'dark green'),
-                 ('notifs', 'black,bold', 'yellow'),
-                 ('notifs_focus', 'dark red', 'yellow'),
-                 ('card_neutral', 'dark gray', 'white', 'standout,underline'),
-                 ('card_neutral_selected', 'dark gray', 'dark green', 'standout,underline'),
-                 ('card_special', 'brown', 'white', 'standout,underline'),
-                 ('card_special_selected', 'brown', 'dark green', 'standout,underline'),
-                 ('card_red', 'dark red', 'white', 'standout,underline'),
-                 ('card_red_selected', 'dark red', 'dark green', 'standout,underline'),
-                 ('card_black', 'black', 'white', 'standout,underline'),
-                 ('card_black_selected', 'black', 'dark green', 'standout,underline'),
-                 ('directory', 'dark cyan, bold', 'default'),
-                 ('directory_focus', 'dark cyan, bold', 'dark green'),
-                 ('separator', 'brown', 'default'),
-                 ('warning', 'light red', 'default'),
-                 ('progress_normal', 'default', 'black'),
-                 ('progress_complete', 'default', 'light red'),
-                 ]
             
 class ChatList(QuickChatList):
     """This class manage the list of chat windows"""
@@ -244,7 +209,7 @@
     def _nick_completion(self, text, completion_data):
         """Completion method which complete pseudo in group chat
         for params, see AdvancedEdit"""
-        contact = self.contactList.get_contact() ###Based on the fact that there is currently only one contact selectableat once
+        contact = self.contactList.get_contact() ###Based on the fact that there is currently only one contact selectable at once
         if contact:
             chat = self.chat_wins[contact]
             if chat.type != "group":