Update attributeManager.py
This commit is contained in:
parent
8f1dbd0fc3
commit
f820cbfc0e
@ -13,6 +13,44 @@ class attributeManager():
|
|||||||
self.env = environment
|
self.env = environment
|
||||||
def shutdown(self):
|
def shutdown(self):
|
||||||
pass
|
pass
|
||||||
|
charAttrib = (
|
||||||
|
'white', # fg
|
||||||
|
'black', # bg
|
||||||
|
False, # bold
|
||||||
|
False, # italics
|
||||||
|
False, # underscore
|
||||||
|
False, # strikethrough
|
||||||
|
False, # reverse
|
||||||
|
False, # blink
|
||||||
|
'default', # fontsize
|
||||||
|
'default') # fontfamily
|
||||||
|
def isDefaultAttribute(attribute):
|
||||||
|
defaultAttributes = []
|
||||||
|
defaultAttributes.append((
|
||||||
|
'white', # fg
|
||||||
|
'black', # bg
|
||||||
|
False, # bold
|
||||||
|
False, # italics
|
||||||
|
False, # underscore
|
||||||
|
False, # strikethrough
|
||||||
|
False, # reverse
|
||||||
|
False, # blink
|
||||||
|
'default', # fontsize
|
||||||
|
'default' # fontfamily
|
||||||
|
)) #end attribute
|
||||||
|
defaultAttributes.append((
|
||||||
|
'default', # fg
|
||||||
|
'default', # bg
|
||||||
|
False, # bold
|
||||||
|
False, # italics
|
||||||
|
False, # underscore
|
||||||
|
False, # strikethrough
|
||||||
|
False, # reverse
|
||||||
|
False, # blink
|
||||||
|
'default', # fontsize
|
||||||
|
'default' # fontfamily
|
||||||
|
)) #end attribute
|
||||||
|
return attribute in defaultAttributes
|
||||||
def formatAttributes(self, attribute, attributeFormatString = None):
|
def formatAttributes(self, attribute, attributeFormatString = None):
|
||||||
if not attributeFormatString:
|
if not attributeFormatString:
|
||||||
attributeFormatString = self.env['runtime']['settingsManager'].getSetting('general', 'attributeFormatString')
|
attributeFormatString = self.env['runtime']['settingsManager'].getSetting('general', 'attributeFormatString')
|
||||||
|
Loading…
Reference in New Issue
Block a user