kindle manager
This commit is contained in:
@@ -54,6 +54,7 @@ b['1']['2'] = {'3':1} # OK
|
|||||||
## 1.0.3 (20200603)
|
## 1.0.3 (20200603)
|
||||||
### feature
|
### feature
|
||||||
- design GUI with qdesigner 
|
- design GUI with qdesigner 
|
||||||
|
- define toolbar action's slots
|
||||||
|
|
||||||
# feature plan
|
# feature plan
|
||||||
## 20200528
|
## 20200528
|
||||||
@@ -61,3 +62,7 @@ b['1']['2'] = {'3':1} # OK
|
|||||||
- add GUI use QT
|
- add GUI use QT
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
16
kmanapp.py
16
kmanapp.py
@@ -29,35 +29,35 @@ class kmanWindow(QMainWindow):
|
|||||||
ui.actionflush.triggered.connect(lambda: self.flush())
|
ui.actionflush.triggered.connect(lambda: self.flush())
|
||||||
|
|
||||||
# define slot functions
|
# define slot functions
|
||||||
def importkindle():
|
def importkindle(self):
|
||||||
print("call slot importkindle()")
|
print("call slot importkindle()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def importlocal():
|
def importlocal(self):
|
||||||
print("call slot importlocal()")
|
print("call slot importlocal()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def config():
|
def config(self):
|
||||||
print("call slot config()")
|
print("call slot config()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def words():
|
def words(self):
|
||||||
print("call slot words()")
|
print("call slot words()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def statistic():
|
def statistic(self):
|
||||||
print("call slot statistic()")
|
print("call slot statistic()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def homepage():
|
def homepage(self):
|
||||||
print("call slot homepage()")
|
print("call slot homepage()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def about():
|
def about(self):
|
||||||
print("call slot about()")
|
print("call slot about()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def flush():
|
def flush(self):
|
||||||
print("call slot flush()")
|
print("call slot flush()")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user