Update attributeManager.py
This commit is contained in:
parent
a541622870
commit
17c6f2cd2b
@ -8,14 +8,14 @@ from fenrirscreenreader.core import debug
|
||||
|
||||
class attributeManager():
|
||||
def __init__(self):
|
||||
pass
|
||||
self.setDefaultAttributes()
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
def shutdown(self):
|
||||
pass
|
||||
def isDefaultAttribute(attribute):
|
||||
defaultAttributes = []
|
||||
defaultAttributes.append((
|
||||
def setDefaultAttributes(self):
|
||||
self.defaultAttributes = []
|
||||
self.defaultAttributes.append((
|
||||
'white', # fg
|
||||
'black', # bg
|
||||
False, # bold
|
||||
@ -27,7 +27,7 @@ class attributeManager():
|
||||
'default', # fontsize
|
||||
'default' # fontfamily
|
||||
)) #end attribute
|
||||
defaultAttributes.append((
|
||||
self.defaultAttributes.append((
|
||||
'default', # fg
|
||||
'default', # bg
|
||||
False, # bold
|
||||
@ -39,7 +39,8 @@ class attributeManager():
|
||||
'default', # fontsize
|
||||
'default' # fontfamily
|
||||
)) #end attribute
|
||||
return attribute in defaultAttributes
|
||||
def isDefaultAttribute(self,attribute):
|
||||
return attribute in self.defaultAttributes
|
||||
def formatAttributes(self, attribute, attributeFormatString = None):
|
||||
# "black",
|
||||
# "red",
|
||||
|
Loading…
Reference in New Issue
Block a user