create tableManager skeleton
This commit is contained in:
parent
621bee3d31
commit
1fc5e74067
@ -22,6 +22,7 @@ from core import cursorManager
|
||||
from core import applicationManager
|
||||
from core import helpManager
|
||||
from core import headLineManager
|
||||
from core import tableManager
|
||||
from core import environment
|
||||
from core import inputData
|
||||
from core.settingsData import settingsData
|
||||
@ -347,6 +348,8 @@ class settingsManager():
|
||||
environment['runtime']['helpManager'].initialize(environment)
|
||||
environment['runtime']['headLineManager'] = headLineManager.headLineManager()
|
||||
environment['runtime']['headLineManager'].initialize(environment)
|
||||
environment['runtime']['tableManager'] = tableManager.tableManager()
|
||||
environment['runtime']['tableManager'].initialize(environment)
|
||||
if environment['runtime']['screenManager'] == None:
|
||||
environment['runtime']['screenManager'] = screenManager.screenManager()
|
||||
environment['runtime']['screenManager'].initialize(environment)
|
||||
|
16
src/fenrir/core/tableManager.py
Normal file
16
src/fenrir/core/tableManager.py
Normal file
@ -0,0 +1,16 @@
|
||||
#!/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
import re
|
||||
|
||||
class tableManager():
|
||||
def __init__(self):
|
||||
pass
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
def shutdown(self):
|
||||
pass
|
Loading…
Reference in New Issue
Block a user