Files
novelWriter/tests/nwdummy.py
T
2020-08-12 21:50:43 +02:00

40 lines
652 B
Python

# -*- coding: utf-8 -*-
"""novelWriter Test Dummy GUI Classes
"""
from nw.constants import nwAlert
class DummyMain():
def __init__(self):
self.mainConf = None
self.statusBar = StatusBar()
return
def makeAlert(self, theMessage, theLevel):
return
def setStatus(self, theMessage):
return
def setProjectStatus(self, isChanged):
return
def openProject(self, projPath):
return
def rebuildIndex(self):
return
# END Class GuiMain
class StatusBar():
def __init__(self):
return
def setStatus(self, theText):
return
# END Class StatusBar