mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 00:24:13 +08:00
copypasteable
This commit is contained in:
parent
e9e8005a94
commit
0a0e53f5f2
@ -83,7 +83,7 @@ class codeacceptdialog(LDialog):
|
|||||||
row += 1
|
row += 1
|
||||||
button = threebuttons(texts=["添加行", "删除行", "立即应用"])
|
button = threebuttons(texts=["添加行", "删除行", "立即应用"])
|
||||||
button.btn1clicked.connect(self.clicked1)
|
button.btn1clicked.connect(self.clicked1)
|
||||||
button.btn2clicked.connect(self.clicked2)
|
button.btn2clicked.connect(self.table.removeselectedrows)
|
||||||
button.btn3clicked.connect(self.apply)
|
button.btn3clicked.connect(self.apply)
|
||||||
self.button = button
|
self.button = button
|
||||||
formLayout.addWidget(self.table)
|
formLayout.addWidget(self.table)
|
||||||
@ -126,17 +126,6 @@ class codeacceptdialog(LDialog):
|
|||||||
index = self.model.index(0, 0)
|
index = self.model.index(0, 0)
|
||||||
self.table.setIndexWidget(index, codecombox)
|
self.table.setIndexWidget(index, codecombox)
|
||||||
|
|
||||||
def clicked2(self):
|
|
||||||
skip = []
|
|
||||||
for index in self.table.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
|
||||||
self.model.removeRow(row)
|
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
|
|
||||||
rows = self.model.rowCount()
|
rows = self.model.rowCount()
|
||||||
|
@ -1050,8 +1050,10 @@ class dialog_setting_game_internal(QWidget):
|
|||||||
formLayout2 = self.createfollowdefault(
|
formLayout2 = self.createfollowdefault(
|
||||||
savehook_new_data[gameuid], "tts_follow_default", formLayout
|
savehook_new_data[gameuid], "tts_follow_default", formLayout
|
||||||
)
|
)
|
||||||
if 'tts_repair_use_at_translate' not in savehook_new_data[gameuid]:
|
if "tts_repair_use_at_translate" not in savehook_new_data[gameuid]:
|
||||||
savehook_new_data[gameuid]['tts_repair_use_at_translate']=globalconfig["ttscommon"]["tts_repair"]
|
savehook_new_data[gameuid]["tts_repair_use_at_translate"] = globalconfig[
|
||||||
|
"ttscommon"
|
||||||
|
]["tts_repair"]
|
||||||
formLayout2.addRow(
|
formLayout2.addRow(
|
||||||
"语音指定",
|
"语音指定",
|
||||||
getboxlayout(
|
getboxlayout(
|
||||||
@ -1084,8 +1086,10 @@ class dialog_setting_game_internal(QWidget):
|
|||||||
icon="fa.gear",
|
icon="fa.gear",
|
||||||
),
|
),
|
||||||
QLabel(),
|
QLabel(),
|
||||||
getsimpleswitch(savehook_new_data[gameuid], "tts_repair_use_at_translate"),
|
getsimpleswitch(
|
||||||
LLabel('作用于翻译'),
|
savehook_new_data[gameuid], "tts_repair_use_at_translate"
|
||||||
|
),
|
||||||
|
LLabel("作用于翻译"),
|
||||||
],
|
],
|
||||||
margin0=True,
|
margin0=True,
|
||||||
makewidget=True,
|
makewidget=True,
|
||||||
@ -1227,8 +1231,8 @@ class dialog_setting_game_internal(QWidget):
|
|||||||
return
|
return
|
||||||
menu = QMenu(self.__textprocinternaltable)
|
menu = QMenu(self.__textprocinternaltable)
|
||||||
remove = LAction(("删除"))
|
remove = LAction(("删除"))
|
||||||
up = LAction(("上移"))
|
up = LAction("上移")
|
||||||
down = LAction(("下移"))
|
down = LAction("下移")
|
||||||
menu.addAction(remove)
|
menu.addAction(remove)
|
||||||
menu.addAction(up)
|
menu.addAction(up)
|
||||||
menu.addAction(down)
|
menu.addAction(down)
|
||||||
@ -3298,8 +3302,8 @@ class dialog_savedgame_v3(QWidget):
|
|||||||
editname = LAction(("修改列表名称"))
|
editname = LAction(("修改列表名称"))
|
||||||
addlist = LAction(("创建列表"))
|
addlist = LAction(("创建列表"))
|
||||||
dellist = LAction(("删除列表"))
|
dellist = LAction(("删除列表"))
|
||||||
Upaction = LAction(("上移"))
|
Upaction = LAction("上移")
|
||||||
Downaction = LAction(("下移"))
|
Downaction = LAction("下移")
|
||||||
addgame = LAction(("添加游戏"))
|
addgame = LAction(("添加游戏"))
|
||||||
batchadd = LAction(("批量添加"))
|
batchadd = LAction(("批量添加"))
|
||||||
menu.addAction(Upaction)
|
menu.addAction(Upaction)
|
||||||
|
@ -50,35 +50,26 @@ class noundictconfigdialog1(LDialog):
|
|||||||
if r < 0:
|
if r < 0:
|
||||||
return
|
return
|
||||||
menu = QMenu(table)
|
menu = QMenu(table)
|
||||||
up = LAction(("上移"))
|
up = LAction("上移")
|
||||||
down = LAction(("下移"))
|
down = LAction("下移")
|
||||||
|
copy = LAction("复制")
|
||||||
|
paste = LAction("粘贴")
|
||||||
menu.addAction(up)
|
menu.addAction(up)
|
||||||
menu.addAction(down)
|
menu.addAction(down)
|
||||||
|
menu.addAction(copy)
|
||||||
|
menu.addAction(paste)
|
||||||
action = menu.exec(table.cursor().pos())
|
action = menu.exec(table.cursor().pos())
|
||||||
|
|
||||||
if action == up:
|
if action == up:
|
||||||
|
table.moverank(-1)
|
||||||
self.moverank(table, -1)
|
|
||||||
|
|
||||||
elif action == down:
|
elif action == down:
|
||||||
self.moverank(table, 1)
|
table.moverank(1)
|
||||||
|
elif action == copy:
|
||||||
|
table.copytable()
|
||||||
|
|
||||||
def moverank(self, table: TableViewW, dy):
|
elif action == paste:
|
||||||
curr = table.currentIndex()
|
table.pastetable()
|
||||||
model = table.model()
|
|
||||||
target = (curr.row() + dy) % model.rowCount()
|
|
||||||
texts = [model.item(curr.row(), i).text() for i in range(model.columnCount())]
|
|
||||||
|
|
||||||
item = self.reflist.pop(curr.row())
|
|
||||||
self.reflist.insert(
|
|
||||||
target, {"key": texts[1], "value": [2], "regex": item["regex"]}
|
|
||||||
)
|
|
||||||
model.removeRow(curr.row())
|
|
||||||
model.insertRow(target, [QStandardItem(text) for text in texts])
|
|
||||||
table.setCurrentIndex(model.index(target, curr.column()))
|
|
||||||
table.setIndexWidget(
|
|
||||||
model.index(target, 0), getsimpleswitch(self.reflist[target], "regex")
|
|
||||||
)
|
|
||||||
|
|
||||||
def __init__(self, parent, reflist, title, label) -> None:
|
def __init__(self, parent, reflist, title, label) -> None:
|
||||||
super().__init__(parent, Qt.WindowType.WindowCloseButtonHint)
|
super().__init__(parent, Qt.WindowType.WindowCloseButtonHint)
|
||||||
@ -125,32 +116,20 @@ class noundictconfigdialog1(LDialog):
|
|||||||
|
|
||||||
button4.clicked.connect(clicked4)
|
button4.clicked.connect(clicked4)
|
||||||
search.addWidget(button4)
|
search.addWidget(button4)
|
||||||
|
table.getindexwidgetdata = self.__getindexwidgetdata
|
||||||
|
table.setindexwidget = self.__setindexwidget
|
||||||
|
self.table = table
|
||||||
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
||||||
|
table.insertplainrow = lambda row: self.newline(
|
||||||
|
row, {"key": "", "value": "", "regex": False}
|
||||||
|
)
|
||||||
|
|
||||||
def clicked1():
|
button.btn1clicked.connect(functools.partial(table.insertplainrow, 0))
|
||||||
self.reflist.insert(0, {"key": "", "value": "", "regex": False})
|
|
||||||
|
|
||||||
self.newline(0, self.reflist[0])
|
button.btn2clicked.connect(self.table.removeselectedrows)
|
||||||
|
|
||||||
button.btn1clicked.connect(clicked1)
|
|
||||||
|
|
||||||
def clicked2():
|
|
||||||
skip = []
|
|
||||||
for index in self.table.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
|
||||||
self.model.removeRow(row)
|
|
||||||
self.reflist.pop(row)
|
|
||||||
|
|
||||||
button.btn2clicked.connect(clicked2)
|
|
||||||
button.btn5clicked.connect(self.apply)
|
button.btn5clicked.connect(self.apply)
|
||||||
button.btn3clicked.connect(functools.partial(self.moverank, table, -1))
|
button.btn3clicked.connect(functools.partial(table.moverank, -1))
|
||||||
button.btn4clicked.connect(functools.partial(self.moverank, table, 1))
|
button.btn4clicked.connect(functools.partial(table.moverank, 1))
|
||||||
self.button = button
|
self.button = button
|
||||||
formLayout.addWidget(table)
|
formLayout.addWidget(table)
|
||||||
formLayout.addLayout(search)
|
formLayout.addLayout(search)
|
||||||
@ -159,21 +138,21 @@ class noundictconfigdialog1(LDialog):
|
|||||||
self.resize(QSize(600, 400))
|
self.resize(QSize(600, 400))
|
||||||
self.show()
|
self.show()
|
||||||
|
|
||||||
|
def __setindexwidget(self, index: QModelIndex, data):
|
||||||
|
if index.column() == 0:
|
||||||
|
self.table.setIndexWidget(index, getsimpleswitch(data, "regex"))
|
||||||
|
|
||||||
|
def __getindexwidgetdata(self, index: QModelIndex):
|
||||||
|
return {"regex": self.table.indexWidgetX(index).isChecked()}
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
rows = self.model.rowCount()
|
self.table.dedumpmodel(1)
|
||||||
dedump = set()
|
self.reflist.clear()
|
||||||
needremoves = []
|
for row in range(self.model.rowCount()):
|
||||||
for row in range(rows):
|
|
||||||
k = self.model.item(row, 1).text()
|
k = self.model.item(row, 1).text()
|
||||||
v = self.model.item(row, 2).text()
|
v = self.model.item(row, 2).text()
|
||||||
if k == "" or k in dedump:
|
switch = self.table.indexWidgetX(row, 0)
|
||||||
needremoves.append(row)
|
self.reflist.append({"key": k, "value": v, "regex": switch.isChecked()})
|
||||||
continue
|
|
||||||
self.reflist[row].update({"key": k, "value": v})
|
|
||||||
dedump.add(k)
|
|
||||||
for row in reversed(needremoves):
|
|
||||||
self.model.removeRow(row)
|
|
||||||
self.reflist.pop(row)
|
|
||||||
|
|
||||||
def closeEvent(self, a0: QCloseEvent) -> None:
|
def closeEvent(self, a0: QCloseEvent) -> None:
|
||||||
self.button.setFocus()
|
self.button.setFocus()
|
||||||
@ -287,50 +266,24 @@ class yuyinzhidingsetting(LDialog):
|
|||||||
if r < 0:
|
if r < 0:
|
||||||
return
|
return
|
||||||
menu = QMenu(table)
|
menu = QMenu(table)
|
||||||
up = LAction(("上移"))
|
up = LAction("上移")
|
||||||
down = LAction(("下移"))
|
down = LAction("下移")
|
||||||
menu.addAction(up)
|
menu.addAction(up)
|
||||||
menu.addAction(down)
|
menu.addAction(down)
|
||||||
action = menu.exec(table.cursor().pos())
|
action = menu.exec(table.cursor().pos())
|
||||||
|
|
||||||
if action == up:
|
if action == up:
|
||||||
|
|
||||||
self.moverank(table, -1)
|
table.moverank(-1)
|
||||||
|
|
||||||
elif action == down:
|
elif action == down:
|
||||||
self.moverank(table, 1)
|
table.moverank(1)
|
||||||
|
|
||||||
def moverank(self, table: TableViewW, dy):
|
|
||||||
curr = table.currentIndex()
|
|
||||||
model = table.model()
|
|
||||||
target = (curr.row() + dy) % model.rowCount()
|
|
||||||
texts = [model.item(curr.row(), i).text() for i in range(model.columnCount())]
|
|
||||||
|
|
||||||
item = self.reflist.pop(curr.row())
|
|
||||||
self.reflist.insert(
|
|
||||||
target,
|
|
||||||
{
|
|
||||||
"key": texts[1],
|
|
||||||
"condition": item["condition"],
|
|
||||||
"regex": item["regex"],
|
|
||||||
"target": item["target"],
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
model.removeRow(curr.row())
|
|
||||||
model.insertRow(target, [QStandardItem(text) for text in texts])
|
|
||||||
table.setCurrentIndex(model.index(target, curr.column()))
|
|
||||||
table.setIndexWidget(
|
|
||||||
model.index(target, 0), getsimpleswitch(self.reflist[target], "regex")
|
|
||||||
)
|
|
||||||
com = getsimplecombobox(["首尾", "包含"], item, "condition")
|
|
||||||
table.setIndexWidget(self.model.index(target, 1), com)
|
|
||||||
table.setIndexWidget(self.model.index(target, 3), self.createacombox(item))
|
|
||||||
|
|
||||||
def createacombox(self, config):
|
def createacombox(self, config):
|
||||||
com = LFocusCombo()
|
com = LFocusCombo()
|
||||||
com.addItems(["跳过", "默认", "选择声音"])
|
com.addItems(["跳过", "默认", "选择声音"])
|
||||||
target = config.get("target", "skip")
|
target = config.get("target", "skip")
|
||||||
|
com.target = target
|
||||||
if target == "skip":
|
if target == "skip":
|
||||||
com.setCurrentIndex(0)
|
com.setCurrentIndex(0)
|
||||||
elif target == "default":
|
elif target == "default":
|
||||||
@ -346,11 +299,11 @@ class yuyinzhidingsetting(LDialog):
|
|||||||
|
|
||||||
def __comchange(self, com: LFocusCombo, config, idx):
|
def __comchange(self, com: LFocusCombo, config, idx):
|
||||||
if idx == 0:
|
if idx == 0:
|
||||||
config["target"] = "skip"
|
com.target = "skip"
|
||||||
if com.count() > 3:
|
if com.count() > 3:
|
||||||
com.removeItem(com.count() - 1)
|
com.removeItem(com.count() - 1)
|
||||||
elif idx == 1:
|
elif idx == 1:
|
||||||
config["target"] = "default"
|
com.target = "default"
|
||||||
if com.count() > 3:
|
if com.count() > 3:
|
||||||
com.removeItem(com.count() - 1)
|
com.removeItem(com.count() - 1)
|
||||||
elif idx == 2:
|
elif idx == 2:
|
||||||
@ -359,7 +312,7 @@ class yuyinzhidingsetting(LDialog):
|
|||||||
if voice.datas["voice"] is None:
|
if voice.datas["voice"] is None:
|
||||||
com.setCurrentIndex(1)
|
com.setCurrentIndex(1)
|
||||||
return
|
return
|
||||||
config["target"] = (
|
com.target = (
|
||||||
voice.datas["engine"],
|
voice.datas["engine"],
|
||||||
voice.datas["voice"],
|
voice.datas["voice"],
|
||||||
voice.datas["vis"],
|
voice.datas["vis"],
|
||||||
@ -428,30 +381,16 @@ class yuyinzhidingsetting(LDialog):
|
|||||||
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
||||||
|
|
||||||
def clicked1():
|
def clicked1():
|
||||||
self.reflist.insert(
|
self.newline(
|
||||||
0, {"key": "", "condition": 0, "regex": False, "target": "skip"}
|
0, {"key": "", "condition": 0, "regex": False, "target": "skip"}
|
||||||
)
|
)
|
||||||
|
|
||||||
self.newline(0, self.reflist[0])
|
|
||||||
|
|
||||||
button.btn1clicked.connect(clicked1)
|
button.btn1clicked.connect(clicked1)
|
||||||
|
|
||||||
def clicked2():
|
button.btn2clicked.connect(table.removeselectedrows)
|
||||||
skip = []
|
|
||||||
for index in self.table.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
|
||||||
self.model.removeRow(row)
|
|
||||||
self.reflist.pop(row)
|
|
||||||
|
|
||||||
button.btn2clicked.connect(clicked2)
|
|
||||||
button.btn5clicked.connect(self.apply)
|
button.btn5clicked.connect(self.apply)
|
||||||
button.btn3clicked.connect(functools.partial(self.moverank, table, -1))
|
button.btn3clicked.connect(functools.partial(table.moverank, -1))
|
||||||
button.btn4clicked.connect(functools.partial(self.moverank, table, 1))
|
button.btn4clicked.connect(functools.partial(table.moverank, 1))
|
||||||
self.button = button
|
self.button = button
|
||||||
formLayout.addWidget(table)
|
formLayout.addWidget(table)
|
||||||
formLayout.addLayout(search)
|
formLayout.addLayout(search)
|
||||||
@ -461,20 +400,22 @@ class yuyinzhidingsetting(LDialog):
|
|||||||
self.show()
|
self.show()
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
|
self.table.dedumpmodel(2)
|
||||||
rows = self.model.rowCount()
|
rows = self.model.rowCount()
|
||||||
dedump = set()
|
self.reflist.clear()
|
||||||
needremoves = []
|
|
||||||
for row in range(rows):
|
for row in range(rows):
|
||||||
k = self.model.item(row, 2).text()
|
k = self.model.item(row, 2).text()
|
||||||
|
switch = self.table.indexWidgetX(row, 0)
|
||||||
if k == "" or k in dedump:
|
con = self.table.indexWidgetX(row, 1)
|
||||||
needremoves.append(row)
|
con2 = self.table.indexWidgetX(row, 3)
|
||||||
continue
|
self.reflist.append(
|
||||||
self.reflist[row].update({"key": k})
|
{
|
||||||
dedump.add(k)
|
"key": k,
|
||||||
for row in reversed(needremoves):
|
"condition": con.currentIndex(),
|
||||||
self.model.removeRow(row)
|
"regex": switch.isChecked(),
|
||||||
self.reflist.pop(row)
|
"target": con2.target,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
def closeEvent(self, a0: QCloseEvent) -> None:
|
def closeEvent(self, a0: QCloseEvent) -> None:
|
||||||
self.button.setFocus()
|
self.button.setFocus()
|
||||||
@ -777,47 +718,28 @@ class postconfigdialog_(LDialog):
|
|||||||
|
|
||||||
if action == up:
|
if action == up:
|
||||||
|
|
||||||
self.moverank(table, -1)
|
table.moverank(-1)
|
||||||
|
|
||||||
elif action == down:
|
elif action == down:
|
||||||
self.moverank(table, 1)
|
table.moverank(1)
|
||||||
elif action == copy:
|
elif action == copy:
|
||||||
table.copytable()
|
table.copytable()
|
||||||
|
|
||||||
elif action == paste:
|
elif action == paste:
|
||||||
table.pastetable()
|
table.pastetable()
|
||||||
|
|
||||||
def moverank(self, table: TableViewW, dy):
|
|
||||||
curr = table.currentIndex()
|
|
||||||
target = (curr.row() + dy) % table.model().rowCount()
|
|
||||||
texts = [
|
|
||||||
table.model().item(curr.row(), i).text()
|
|
||||||
for i in range(table.model().columnCount())
|
|
||||||
]
|
|
||||||
|
|
||||||
table.model().removeRow(curr.row())
|
|
||||||
table.model().insertRow(target, [QStandardItem(text) for text in texts])
|
|
||||||
table.setCurrentIndex(table.model().index(target, curr.column()))
|
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
|
self.table.dedumpmodel(0)
|
||||||
rows = self.model.rowCount()
|
rows = self.model.rowCount()
|
||||||
self.configdict.clear()
|
self.configdict.clear()
|
||||||
|
|
||||||
if isinstance(self.configdict, dict):
|
if isinstance(self.configdict, dict):
|
||||||
for row in range(rows):
|
for row in range(rows):
|
||||||
text = self.model.item(row, 0).text()
|
text = self.model.item(row, 0).text()
|
||||||
if text == "":
|
|
||||||
continue
|
|
||||||
self.configdict[text] = self.model.item(row, 1).text()
|
self.configdict[text] = self.model.item(row, 1).text()
|
||||||
elif isinstance(self.configdict, list):
|
elif isinstance(self.configdict, list):
|
||||||
dedump = set()
|
|
||||||
for row in range(rows):
|
for row in range(rows):
|
||||||
text = self.model.item(row, 0).text()
|
text = self.model.item(row, 0).text()
|
||||||
if text == "":
|
|
||||||
continue
|
|
||||||
if text in dedump:
|
|
||||||
continue
|
|
||||||
dedump.add(text)
|
|
||||||
item = {}
|
item = {}
|
||||||
for _i, key in enumerate(self.dictkeys):
|
for _i, key in enumerate(self.dictkeys):
|
||||||
item[key] = self.model.item(row, _i).text()
|
item[key] = self.model.item(row, _i).text()
|
||||||
@ -864,31 +786,12 @@ class postconfigdialog_(LDialog):
|
|||||||
functools.partial(self.showmenu, table)
|
functools.partial(self.showmenu, table)
|
||||||
)
|
)
|
||||||
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
||||||
|
self.table = table
|
||||||
|
button.btn1clicked.connect(table.insertplainrow)
|
||||||
|
button.btn2clicked.connect(table.removeselectedrows)
|
||||||
|
|
||||||
def clicked1():
|
button.btn3clicked.connect(functools.partial(table.moverank, -1))
|
||||||
if isinstance(configdict, dict):
|
button.btn4clicked.connect(functools.partial(table.moverank, 1))
|
||||||
model.insertRow(0, [QStandardItem(), QStandardItem()])
|
|
||||||
elif isinstance(configdict, list):
|
|
||||||
model.insertRow(0, [QStandardItem() for _ in range(len(dictkeys))])
|
|
||||||
else:
|
|
||||||
raise
|
|
||||||
|
|
||||||
def clicked2():
|
|
||||||
skip = []
|
|
||||||
for index in table.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
|
||||||
model.removeRow(row)
|
|
||||||
|
|
||||||
button.btn1clicked.connect(clicked1)
|
|
||||||
button.btn2clicked.connect(clicked2)
|
|
||||||
|
|
||||||
button.btn3clicked.connect(functools.partial(self.moverank, table, -1))
|
|
||||||
button.btn4clicked.connect(functools.partial(self.moverank, table, 1))
|
|
||||||
button.btn5clicked.connect(self.apply)
|
button.btn5clicked.connect(self.apply)
|
||||||
self.button = button
|
self.button = button
|
||||||
self.model = model
|
self.model = model
|
||||||
|
@ -95,10 +95,82 @@ class TableViewW(QTableView):
|
|||||||
super().__init__(*argc)
|
super().__init__(*argc)
|
||||||
self.setSelectionMode(QAbstractItemView.SelectionMode.ContiguousSelection)
|
self.setSelectionMode(QAbstractItemView.SelectionMode.ContiguousSelection)
|
||||||
|
|
||||||
|
def insertplainrow(self, row=0):
|
||||||
|
self.model().insertRow(
|
||||||
|
row, [QStandardItem() for _ in range(self.model().columnCount())]
|
||||||
|
)
|
||||||
|
|
||||||
|
def dedumpmodel(self, col):
|
||||||
|
|
||||||
|
rows = self.model().rowCount()
|
||||||
|
dedump = set()
|
||||||
|
needremoves = []
|
||||||
|
for row in range(rows):
|
||||||
|
k = self.safetext(row, col)
|
||||||
|
if k == "" or k in dedump:
|
||||||
|
needremoves.append(row)
|
||||||
|
continue
|
||||||
|
dedump.add(k)
|
||||||
|
for row in reversed(needremoves):
|
||||||
|
self.model().removeRow(row)
|
||||||
|
|
||||||
|
def removeselectedrows(self):
|
||||||
|
row = self.currentIndex().row()
|
||||||
|
col = self.currentIndex().column()
|
||||||
|
skip = []
|
||||||
|
for index in self.selectedIndexes():
|
||||||
|
if index.row() in skip:
|
||||||
|
continue
|
||||||
|
skip.append(index.row())
|
||||||
|
skip = reversed(sorted(skip))
|
||||||
|
|
||||||
|
for row in skip:
|
||||||
|
self.model().removeRow(row)
|
||||||
|
row = min(row, self.model().rowCount() - 1)
|
||||||
|
self.setCurrentIndex(self.model().index(row, col))
|
||||||
|
return skip
|
||||||
|
|
||||||
|
def moverank(self, dy):
|
||||||
|
curr = self.currentIndex()
|
||||||
|
row, col = curr.row(), curr.column()
|
||||||
|
|
||||||
|
model = self.model()
|
||||||
|
realws = []
|
||||||
|
for _ in range(self.model().columnCount()):
|
||||||
|
w = self.indexWidget(self.model().index(row, _))
|
||||||
|
if w is None:
|
||||||
|
realws.append(None)
|
||||||
|
continue
|
||||||
|
l: QHBoxLayout = w.layout()
|
||||||
|
w = l.takeAt(0).widget()
|
||||||
|
realws.append(w)
|
||||||
|
target = (row + dy) % model.rowCount()
|
||||||
|
model.insertRow(target, model.takeRow(row))
|
||||||
|
self.setCurrentIndex(model.index(target, col))
|
||||||
|
for _ in range(self.model().columnCount()):
|
||||||
|
self.setIndexWidget(self.model().index(target, _), realws[_])
|
||||||
|
return row, target
|
||||||
|
|
||||||
|
def indexWidgetX(self, row_or_index, col=None):
|
||||||
|
if col is None:
|
||||||
|
index: QModelIndex = row_or_index
|
||||||
|
else:
|
||||||
|
index = self.model().index(row_or_index, col)
|
||||||
|
w = self.indexWidget(index)
|
||||||
|
if w is None:
|
||||||
|
return w
|
||||||
|
l: QHBoxLayout = w.layout()
|
||||||
|
return l.itemAt(0).widget()
|
||||||
|
|
||||||
def setIndexWidget(self, index: QModelIndex, w: QWidget):
|
def setIndexWidget(self, index: QModelIndex, w: QWidget):
|
||||||
super().setIndexWidget(index, w)
|
|
||||||
if w is None:
|
if w is None:
|
||||||
return
|
return
|
||||||
|
__w = QWidget()
|
||||||
|
__l = QHBoxLayout()
|
||||||
|
__w.setLayout(__l)
|
||||||
|
__l.setContentsMargins(0, 0, 0, 0)
|
||||||
|
__l.addWidget(w)
|
||||||
|
super().setIndexWidget(index, __w)
|
||||||
if self.rowHeight(index.row()) < w.height():
|
if self.rowHeight(index.row()) < w.height():
|
||||||
self.setRowHeight(index.row(), w.height())
|
self.setRowHeight(index.row(), w.height())
|
||||||
|
|
||||||
@ -107,13 +179,23 @@ class TableViewW(QTableView):
|
|||||||
if isinstance(m, LStandardItemModel):
|
if isinstance(m, LStandardItemModel):
|
||||||
m.updatelangtext()
|
m.updatelangtext()
|
||||||
|
|
||||||
def safetext(self, row, col=None):
|
def getindexwidgetdata(self, index: QModelIndex): ...
|
||||||
|
|
||||||
|
def setindexwidget(self, index, data): ...
|
||||||
|
|
||||||
|
def safetext(self, row_or_index, col=None, mybewidget=False):
|
||||||
if col is None:
|
if col is None:
|
||||||
index = row
|
index: QModelIndex = row_or_index
|
||||||
else:
|
else:
|
||||||
index = self.model().index(row, col)
|
index = self.model().index(row_or_index, col)
|
||||||
|
if mybewidget:
|
||||||
|
w = self.indexWidget(index)
|
||||||
|
if w is not None:
|
||||||
|
return self.getindexwidgetdata(index)
|
||||||
|
|
||||||
_1 = self.model().itemFromIndex(index)
|
_1 = self.model().itemFromIndex(index)
|
||||||
_1 = _1.text() if _1 else ""
|
_1 = _1.text() if _1 else ""
|
||||||
|
|
||||||
return _1
|
return _1
|
||||||
|
|
||||||
def copytable(self) -> str:
|
def copytable(self) -> str:
|
||||||
@ -127,7 +209,7 @@ class TableViewW(QTableView):
|
|||||||
minc = min(minc, index.column())
|
minc = min(minc, index.column())
|
||||||
maxr = max(maxr, index.row())
|
maxr = max(maxr, index.row())
|
||||||
maxc = max(maxc, index.column())
|
maxc = max(maxc, index.column())
|
||||||
_data.append(self.safetext(index))
|
_data.append(self.safetext(index, mybewidget=True))
|
||||||
data = {
|
data = {
|
||||||
"data": _data,
|
"data": _data,
|
||||||
"row": maxr - minr + 1,
|
"row": maxr - minr + 1,
|
||||||
@ -141,17 +223,25 @@ class TableViewW(QTableView):
|
|||||||
js = json.loads(string)
|
js = json.loads(string)
|
||||||
current = self.currentIndex()
|
current = self.currentIndex()
|
||||||
for _ in range(js["row"]):
|
for _ in range(js["row"]):
|
||||||
self.model().insertRow(current.row() + 1, [])
|
self.insertplainrow(current.row() + 1)
|
||||||
|
|
||||||
for i, data in enumerate(js.get("data", [])):
|
for i, data in enumerate(js.get("data", [])):
|
||||||
c = current.column() + i % js["col"]
|
c = current.column() + i % js["col"]
|
||||||
if c >= self.model().columnCount():
|
if c >= self.model().columnCount():
|
||||||
continue
|
continue
|
||||||
self.model().setItem(
|
if isinstance(data, str):
|
||||||
current.row() + 1 + i // js["col"], c, QStandardItem(data)
|
self.model().setItem(
|
||||||
)
|
current.row() + 1 + i // js["col"], c, QStandardItem(data)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.model().setItem(
|
||||||
|
current.row() + 1 + i // js["col"], c, QStandardItem("")
|
||||||
|
)
|
||||||
|
self.setindexwidget(
|
||||||
|
self.model().index(current.row() + 1 + i // js["col"], c), data
|
||||||
|
)
|
||||||
|
|
||||||
except:
|
except:
|
||||||
|
print_exc()
|
||||||
self.model().itemFromIndex(self.currentIndex()).setText(string)
|
self.model().itemFromIndex(self.currentIndex()).setText(string)
|
||||||
|
|
||||||
|
|
||||||
@ -1694,16 +1784,8 @@ class listediter(LDialog):
|
|||||||
self.moverank(1)
|
self.moverank(1)
|
||||||
|
|
||||||
def moverank(self, dy):
|
def moverank(self, dy):
|
||||||
curr = self.hctable.currentIndex()
|
src, tgt = self.hctable.moverank(dy)
|
||||||
target = (curr.row() + dy) % self.hcmodel.rowCount()
|
self.internalrealname.insert(tgt, self.internalrealname.pop(src))
|
||||||
text = self.internalrealname[curr.row()]
|
|
||||||
self.internalrealname.pop(curr.row())
|
|
||||||
self.hcmodel.removeRow(curr.row())
|
|
||||||
self.internalrealname.insert(target, text)
|
|
||||||
if self.namemapfunction:
|
|
||||||
text = self.namemapfunction(text)
|
|
||||||
self.hcmodel.insertRow(target, [QStandardItem(text)])
|
|
||||||
self.hctable.setCurrentIndex(self.hcmodel.index(target, 0))
|
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
@ -1793,15 +1875,8 @@ class listediter(LDialog):
|
|||||||
print_exc()
|
print_exc()
|
||||||
|
|
||||||
def clicked2(self):
|
def clicked2(self):
|
||||||
skip = []
|
skip = self.hctable.removeselectedrows()
|
||||||
for index in self.hctable.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
for row in skip:
|
||||||
self.hcmodel.removeRow(row)
|
|
||||||
self.internalrealname.pop(row)
|
self.internalrealname.pop(row)
|
||||||
|
|
||||||
def closeEvent(self, a0: QCloseEvent) -> None:
|
def closeEvent(self, a0: QCloseEvent) -> None:
|
||||||
|
@ -33,28 +33,16 @@ class noundictconfigdialog(LDialog):
|
|||||||
|
|
||||||
if action == up:
|
if action == up:
|
||||||
|
|
||||||
self.moverank(table, -1)
|
table.moverank(-1)
|
||||||
|
|
||||||
elif action == down:
|
elif action == down:
|
||||||
self.moverank(table, 1)
|
table.moverank(1)
|
||||||
elif action == copy:
|
elif action == copy:
|
||||||
table.copytable()
|
table.copytable()
|
||||||
|
|
||||||
elif action == paste:
|
elif action == paste:
|
||||||
table.pastetable()
|
table.pastetable()
|
||||||
|
|
||||||
def moverank(self, table: TableViewW, dy):
|
|
||||||
curr = table.currentIndex()
|
|
||||||
target = (curr.row() + dy) % table.model().rowCount()
|
|
||||||
texts = [
|
|
||||||
table.model().item(curr.row(), i).text()
|
|
||||||
for i in range(table.model().columnCount())
|
|
||||||
]
|
|
||||||
|
|
||||||
table.model().removeRow(curr.row())
|
|
||||||
table.model().insertRow(target, [QStandardItem(text) for text in texts])
|
|
||||||
table.setCurrentIndex(table.model().index(target, curr.column()))
|
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
rows = self.model.rowCount()
|
rows = self.model.rowCount()
|
||||||
self.configdict.clear()
|
self.configdict.clear()
|
||||||
@ -116,22 +104,9 @@ class noundictconfigdialog(LDialog):
|
|||||||
)
|
)
|
||||||
|
|
||||||
button.btn1clicked.connect(clicked1)
|
button.btn1clicked.connect(clicked1)
|
||||||
|
button.btn2clicked.connect(self.table.removeselectedrows)
|
||||||
def clicked2():
|
button.btn3clicked.connect(functools.partial(table.moverank, -1))
|
||||||
|
button.btn4clicked.connect(functools.partial(table.moverank, 1))
|
||||||
skip = []
|
|
||||||
for index in self.table.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
|
||||||
model.removeRow(row)
|
|
||||||
|
|
||||||
button.btn2clicked.connect(clicked2)
|
|
||||||
button.btn3clicked.connect(functools.partial(self.moverank, table, -1))
|
|
||||||
button.btn4clicked.connect(functools.partial(self.moverank, table, 1))
|
|
||||||
|
|
||||||
button.btn5clicked.connect(self.apply)
|
button.btn5clicked.connect(self.apply)
|
||||||
|
|
||||||
@ -196,10 +171,10 @@ class noundictconfigdialog_private(LDialog):
|
|||||||
|
|
||||||
if action == up:
|
if action == up:
|
||||||
|
|
||||||
self.moverank(table, -1)
|
table.moverank(-1)
|
||||||
|
|
||||||
elif action == down:
|
elif action == down:
|
||||||
self.moverank(table, 1)
|
table.moverank(1)
|
||||||
|
|
||||||
elif action == copy:
|
elif action == copy:
|
||||||
table.copytable()
|
table.copytable()
|
||||||
@ -207,30 +182,15 @@ class noundictconfigdialog_private(LDialog):
|
|||||||
elif action == paste:
|
elif action == paste:
|
||||||
table.pastetable()
|
table.pastetable()
|
||||||
|
|
||||||
def moverank(self, table: TableViewW, dy):
|
|
||||||
curr = table.currentIndex()
|
|
||||||
target = (curr.row() + dy) % table.model().rowCount()
|
|
||||||
texts = [
|
|
||||||
table.model().item(curr.row(), i).text()
|
|
||||||
for i in range(table.model().columnCount())
|
|
||||||
]
|
|
||||||
|
|
||||||
table.model().removeRow(curr.row())
|
|
||||||
table.model().insertRow(target, [QStandardItem(text) for text in texts])
|
|
||||||
table.setCurrentIndex(table.model().index(target, curr.column()))
|
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
|
self.table.dedumpmodel(0)
|
||||||
rows = self.model.rowCount()
|
rows = self.model.rowCount()
|
||||||
self.configdict.clear()
|
self.configdict.clear()
|
||||||
_dedump = set()
|
|
||||||
for row in range(rows):
|
for row in range(rows):
|
||||||
k, v = self.model.item(row, 0).text(), self.model.item(row, 1).text()
|
k, v = self.model.item(row, 0).text(), self.model.item(row, 1).text()
|
||||||
if k == "":
|
|
||||||
continue
|
|
||||||
if k in _dedump:
|
|
||||||
continue
|
|
||||||
self.configdict.append([k, v])
|
self.configdict.append([k, v])
|
||||||
_dedump.add(k)
|
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self, parent, configdict, title, label=["原文", "翻译"], _=None
|
self, parent, configdict, title, label=["原文", "翻译"], _=None
|
||||||
@ -260,29 +220,10 @@ class noundictconfigdialog_private(LDialog):
|
|||||||
)
|
)
|
||||||
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
button = threebuttons(texts=["添加行", "删除行", "上移", "下移", "立即应用"])
|
||||||
self.table = table
|
self.table = table
|
||||||
|
button.btn1clicked.connect(table.insertplainrow)
|
||||||
def clicked1():
|
button.btn2clicked.connect(table.removeselectedrows)
|
||||||
|
button.btn3clicked.connect(functools.partial(table.moverank, -1))
|
||||||
model.insertRow(0, [QStandardItem(), QStandardItem()])
|
button.btn4clicked.connect(functools.partial(table.moverank, 1))
|
||||||
|
|
||||||
button.btn1clicked.connect(clicked1)
|
|
||||||
|
|
||||||
def clicked2():
|
|
||||||
|
|
||||||
skip = []
|
|
||||||
for index in self.table.selectedIndexes():
|
|
||||||
if index.row() in skip:
|
|
||||||
continue
|
|
||||||
skip.append(index.row())
|
|
||||||
skip = reversed(sorted(skip))
|
|
||||||
|
|
||||||
for row in skip:
|
|
||||||
model.removeRow(row)
|
|
||||||
|
|
||||||
button.btn2clicked.connect(clicked2)
|
|
||||||
button.btn3clicked.connect(functools.partial(self.moverank, table, -1))
|
|
||||||
button.btn4clicked.connect(functools.partial(self.moverank, table, 1))
|
|
||||||
|
|
||||||
button.btn5clicked.connect(self.apply)
|
button.btn5clicked.connect(self.apply)
|
||||||
|
|
||||||
search = QHBoxLayout()
|
search = QHBoxLayout()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user