kindle manager
This commit is contained in:
16
kmanapp.py
16
kmanapp.py
@@ -29,35 +29,35 @@ class kmanWindow(QMainWindow):
|
||||
ui.actionflush.triggered.connect(lambda: self.flush())
|
||||
|
||||
# define slot functions
|
||||
def importkindle():
|
||||
def importkindle(self):
|
||||
print("call slot importkindle()")
|
||||
pass
|
||||
|
||||
def importlocal():
|
||||
def importlocal(self):
|
||||
print("call slot importlocal()")
|
||||
pass
|
||||
|
||||
def config():
|
||||
def config(self):
|
||||
print("call slot config()")
|
||||
pass
|
||||
|
||||
def words():
|
||||
def words(self):
|
||||
print("call slot words()")
|
||||
pass
|
||||
|
||||
def statistic():
|
||||
def statistic(self):
|
||||
print("call slot statistic()")
|
||||
pass
|
||||
|
||||
def homepage():
|
||||
def homepage(self):
|
||||
print("call slot homepage()")
|
||||
pass
|
||||
|
||||
def about():
|
||||
def about(self):
|
||||
print("call slot about()")
|
||||
pass
|
||||
|
||||
def flush():
|
||||
def flush(self):
|
||||
print("call slot flush()")
|
||||
pass
|
||||
|
||||
|
||||
Reference in New Issue
Block a user