2018-07-01 10:55:30 +08:00
|
|
|
|
#-*- coding:utf-8 -*-
|
|
|
|
|
|
#
|
2018-07-07 17:48:15 +08:00
|
|
|
|
# Copyright © 2016–2017 sthoo <sth201807@gmail.com>
|
2018-07-01 10:55:30 +08:00
|
|
|
|
#
|
|
|
|
|
|
# Support: Report an issue at https://github.com/sth2018/FastWordQuery/issues
|
|
|
|
|
|
#
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
|
# any later version; http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
|
#
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
#
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
2018-07-14 15:24:21 +08:00
|
|
|
|
from PyQt4 import QtCore, QtGui
|
2018-07-01 10:55:30 +08:00
|
|
|
|
import anki
|
|
|
|
|
|
import aqt
|
|
|
|
|
|
import aqt.models
|
|
|
|
|
|
from aqt import mw
|
|
|
|
|
|
from aqt.studydeck import StudyDeck
|
2018-07-14 15:24:21 +08:00
|
|
|
|
from .base import Dialog, WIDGET_SIZE
|
|
|
|
|
|
from .setting import SettingDialog
|
|
|
|
|
|
from ..context import config
|
|
|
|
|
|
from ..lang import _, _sl
|
|
|
|
|
|
from ..service import service_manager, service_pool
|
|
|
|
|
|
from ..utils import get_model_byId
|
|
|
|
|
|
from ..constants import Endpoint
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
2018-07-14 15:24:21 +08:00
|
|
|
|
__all__ = ['OptionsDialog']
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
2018-07-13 00:57:53 +08:00
|
|
|
|
class OptionsDialog(Dialog):
|
2018-07-12 16:18:10 +08:00
|
|
|
|
'''
|
|
|
|
|
|
query options window
|
|
|
|
|
|
setting query dictionary and fileds
|
|
|
|
|
|
'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
2018-07-13 00:57:53 +08:00
|
|
|
|
__slot__ = [
|
|
|
|
|
|
'begore_build',
|
|
|
|
|
|
'after_build'
|
|
|
|
|
|
]
|
|
|
|
|
|
|
2018-07-14 10:22:45 +08:00
|
|
|
|
def __init__(self, parent, title=u'Options', model_id = -1):
|
2018-07-13 00:57:53 +08:00
|
|
|
|
super(OptionsDialog, self).__init__(parent, title)
|
|
|
|
|
|
self.connect(self, QtCore.SIGNAL('before_build'), self._before_build, QtCore.Qt.QueuedConnection)
|
|
|
|
|
|
self.connect(self, QtCore.SIGNAL('after_build'), self._after_build, QtCore.Qt.QueuedConnection)
|
2018-07-09 14:14:52 +08:00
|
|
|
|
# initlizing info
|
2018-07-13 00:57:53 +08:00
|
|
|
|
self.main_layout = QtGui.QVBoxLayout()
|
|
|
|
|
|
self.loading_label = QtGui.QLabel(_('INITLIZING_DICT'))
|
|
|
|
|
|
self.main_layout.addWidget(self.loading_label, 0, QtCore.Qt.AlignCenter)
|
2018-07-09 14:14:52 +08:00
|
|
|
|
#self.loading_layout.addLayout(models_layout)
|
|
|
|
|
|
self.setLayout(self.main_layout)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
#initlize properties
|
|
|
|
|
|
self.___last_checkeds___ = None
|
|
|
|
|
|
self.___options___ = list()
|
2018-07-14 10:22:45 +08:00
|
|
|
|
self.model_id = model_id if model_id != -1 else config.last_model_id
|
2018-07-14 15:24:21 +08:00
|
|
|
|
self.current_model = None
|
2018-07-09 14:14:52 +08:00
|
|
|
|
# size and signal
|
2018-07-13 00:57:53 +08:00
|
|
|
|
self.resize(WIDGET_SIZE.dialog_width, 4 * WIDGET_SIZE.map_max_height + WIDGET_SIZE.dialog_height_margin)
|
2018-07-14 10:22:45 +08:00
|
|
|
|
self.emit(QtCore.SIGNAL('before_build'))
|
2018-07-09 14:14:52 +08:00
|
|
|
|
|
2018-07-14 10:22:45 +08:00
|
|
|
|
def _before_build(self):
|
2018-07-09 14:14:52 +08:00
|
|
|
|
for cls in service_manager.services:
|
|
|
|
|
|
service = service_pool.get(cls.__unique__)
|
2018-07-14 15:24:21 +08:00
|
|
|
|
if service:
|
|
|
|
|
|
service_pool.put(service)
|
2018-07-14 10:22:45 +08:00
|
|
|
|
self.emit(QtCore.SIGNAL('after_build'))
|
2018-07-09 14:14:52 +08:00
|
|
|
|
|
2018-07-14 10:22:45 +08:00
|
|
|
|
def _after_build(self):
|
2018-07-09 14:14:52 +08:00
|
|
|
|
self.main_layout.removeWidget(self.loading_label)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
models_layout = QtGui.QHBoxLayout()
|
2018-07-01 10:55:30 +08:00
|
|
|
|
# add buttons
|
2018-07-13 00:57:53 +08:00
|
|
|
|
mdx_button = QtGui.QPushButton(_('DICTS_FOLDERS'))
|
2018-07-01 10:55:30 +08:00
|
|
|
|
mdx_button.clicked.connect(self.show_fm_dialog)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
self.models_button = QtGui.QPushButton(_('CHOOSE_NOTE_TYPES'))
|
2018-07-01 10:55:30 +08:00
|
|
|
|
self.models_button.clicked.connect(self.btn_models_pressed)
|
|
|
|
|
|
models_layout.addWidget(mdx_button)
|
|
|
|
|
|
models_layout.addWidget(self.models_button)
|
|
|
|
|
|
self.main_layout.addLayout(models_layout)
|
|
|
|
|
|
# add dicts mapping
|
2018-07-13 00:57:53 +08:00
|
|
|
|
dicts_widget = QtGui.QWidget()
|
|
|
|
|
|
self.dicts_layout = QtGui.QGridLayout()
|
|
|
|
|
|
self.dicts_layout.setSizeConstraint(QtGui.QLayout.SetMinAndMaxSize)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
dicts_widget.setLayout(self.dicts_layout)
|
|
|
|
|
|
|
2018-07-13 00:57:53 +08:00
|
|
|
|
scroll_area = QtGui.QScrollArea()
|
2018-07-01 10:55:30 +08:00
|
|
|
|
scroll_area.setWidgetResizable(True)
|
|
|
|
|
|
scroll_area.setWidget(dicts_widget)
|
|
|
|
|
|
|
|
|
|
|
|
self.main_layout.addWidget(scroll_area)
|
|
|
|
|
|
# add description of radio buttons AND ok button
|
2018-07-13 00:57:53 +08:00
|
|
|
|
bottom_layout = QtGui.QHBoxLayout()
|
|
|
|
|
|
paras_btn = QtGui.QPushButton(_('SETTINGS'))
|
2018-07-01 10:55:30 +08:00
|
|
|
|
paras_btn.clicked.connect(self.show_paras)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
about_btn = QtGui.QPushButton(_('ABOUT'))
|
2018-07-01 10:55:30 +08:00
|
|
|
|
about_btn.clicked.connect(self.show_about)
|
|
|
|
|
|
# about_btn.clicked.connect(self.show_paras)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
chk_update_btn = QtGui.QPushButton(_('UPDATE'))
|
2018-07-14 15:24:21 +08:00
|
|
|
|
chk_update_btn.clicked.connect(self.check_updates)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
home_label = QtGui.QLabel(
|
2018-07-01 10:55:30 +08:00
|
|
|
|
'<a href="{url}">User Guide</a>'.format(url=Endpoint.user_guide))
|
|
|
|
|
|
home_label.setOpenExternalLinks(True)
|
|
|
|
|
|
# shop_label = QLabel(
|
|
|
|
|
|
# '<a href="{url}">Service Shop</a>'.format(url=Endpoint.service_shop))
|
|
|
|
|
|
# shop_label.setOpenExternalLinks(True)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
btnbox = QtGui.QDialogButtonBox(QtGui.QDialogButtonBox.Ok, QtCore.Qt.Horizontal, self)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
btnbox.accepted.connect(self.accept)
|
|
|
|
|
|
bottom_layout.addWidget(paras_btn)
|
|
|
|
|
|
bottom_layout.addWidget(chk_update_btn)
|
|
|
|
|
|
bottom_layout.addWidget(about_btn)
|
|
|
|
|
|
bottom_layout.addWidget(home_label)
|
|
|
|
|
|
# bottom_layout.addWidget(shop_label)
|
|
|
|
|
|
bottom_layout.addWidget(btnbox)
|
2018-07-09 14:14:52 +08:00
|
|
|
|
#self.setLayout(self.main_layout)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
self.main_layout.addLayout(bottom_layout)
|
|
|
|
|
|
# init from saved data
|
|
|
|
|
|
self.current_model = None
|
2018-07-14 10:22:45 +08:00
|
|
|
|
if self.model_id:
|
|
|
|
|
|
self.current_model = get_model_byId(mw.col.models, self.model_id)
|
2018-07-09 14:14:52 +08:00
|
|
|
|
if self.current_model:
|
|
|
|
|
|
self.models_button.setText(
|
|
|
|
|
|
u'%s [%s]' % (_('CHOOSE_NOTE_TYPES'), self.current_model['name']))
|
|
|
|
|
|
# build fields -- dicts layout
|
|
|
|
|
|
self.build_mappings_layout(self.current_model)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def show_paras(self):
|
2018-07-14 15:24:21 +08:00
|
|
|
|
'''open setting dialog'''
|
|
|
|
|
|
dialog = SettingDialog(self, u'Setting')
|
2018-07-01 10:55:30 +08:00
|
|
|
|
dialog.exec_()
|
|
|
|
|
|
|
2018-07-14 15:24:21 +08:00
|
|
|
|
def check_updates(self):
|
|
|
|
|
|
'''check addon version'''
|
|
|
|
|
|
from .common import check_updates
|
|
|
|
|
|
check_updates()
|
|
|
|
|
|
|
2018-07-09 14:14:52 +08:00
|
|
|
|
def show_fm_dialog(self):
|
2018-07-14 15:24:21 +08:00
|
|
|
|
'''open folder manager dialog'''
|
|
|
|
|
|
from .common import show_fm_dialog
|
2018-07-09 14:14:52 +08:00
|
|
|
|
self.save()
|
|
|
|
|
|
self.close()
|
2018-07-14 10:22:45 +08:00
|
|
|
|
show_fm_dialog(self._parent)
|
2018-07-09 14:14:52 +08:00
|
|
|
|
|
2018-07-01 10:55:30 +08:00
|
|
|
|
def show_about(self):
|
2018-07-14 15:24:21 +08:00
|
|
|
|
'''open about dialog'''
|
|
|
|
|
|
from .common import show_about_dialog
|
|
|
|
|
|
show_about_dialog(self)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def accept(self):
|
2018-07-14 15:24:21 +08:00
|
|
|
|
'''on button was clicked'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
self.save()
|
2018-07-14 10:22:45 +08:00
|
|
|
|
super(OptionsDialog, self).accept()
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def btn_models_pressed(self):
|
2018-07-14 15:24:21 +08:00
|
|
|
|
'''on choose model button was clicker'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
self.save()
|
|
|
|
|
|
self.current_model = self.show_models()
|
|
|
|
|
|
if self.current_model:
|
|
|
|
|
|
self.build_mappings_layout(self.current_model)
|
|
|
|
|
|
|
|
|
|
|
|
def build_mappings_layout(self, model):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
'''
|
|
|
|
|
|
build dictionary、fields etc
|
|
|
|
|
|
'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
def clear_layout(layout):
|
|
|
|
|
|
if layout is not None:
|
|
|
|
|
|
while layout.count():
|
|
|
|
|
|
item = layout.takeAt(0)
|
|
|
|
|
|
widget = item.widget()
|
|
|
|
|
|
if widget is not None:
|
|
|
|
|
|
widget.deleteLater()
|
|
|
|
|
|
else:
|
|
|
|
|
|
clear_layout(item.layout())
|
|
|
|
|
|
|
|
|
|
|
|
clear_layout(self.dicts_layout)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
del self.___options___[:]
|
|
|
|
|
|
self.___last_checkeds___ = None
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
2018-07-12 16:18:10 +08:00
|
|
|
|
labels = ['', '', 'DICTS', 'DICT_FIELDS', '']
|
|
|
|
|
|
for i, s in enumerate(labels):
|
2018-07-13 00:57:53 +08:00
|
|
|
|
label = QtGui.QLabel(_(s))
|
|
|
|
|
|
label.setSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
self.dicts_layout.addWidget(label, 0, i)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
maps = config.get_maps(model['id'])
|
2018-07-13 00:57:53 +08:00
|
|
|
|
self.radio_group = QtGui.QButtonGroup()
|
2018-07-01 10:55:30 +08:00
|
|
|
|
for i, fld in enumerate(model['flds']):
|
|
|
|
|
|
ord = fld['ord']
|
|
|
|
|
|
name = fld['name']
|
|
|
|
|
|
if maps:
|
|
|
|
|
|
for j, each in enumerate(maps):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
if each.get('fld_ord', -1) == ord or each.get('fld_name', '') == name:
|
|
|
|
|
|
each['fld_name'] = name
|
|
|
|
|
|
each['fld_ord'] = ord
|
|
|
|
|
|
self.add_dict_layout(j, **each)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
break
|
|
|
|
|
|
else:
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.add_dict_layout(i, fld_name=name, fld_ord=ord)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
else:
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.add_dict_layout(i, fld_name=name, fld_ord=ord)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
2018-07-09 14:14:52 +08:00
|
|
|
|
#self.setLayout(self.main_layout)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
self.resize(WIDGET_SIZE.dialog_width,
|
|
|
|
|
|
max(3, (i + 1)) * WIDGET_SIZE.map_max_height + WIDGET_SIZE.dialog_height_margin)
|
2018-07-06 20:56:20 +08:00
|
|
|
|
self.save()
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def show_models(self):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
'''
|
|
|
|
|
|
show choose note type window
|
|
|
|
|
|
'''
|
2018-07-13 00:57:53 +08:00
|
|
|
|
edit = QtGui.QPushButton(anki.lang._("Manage"),
|
2018-07-01 10:55:30 +08:00
|
|
|
|
clicked=lambda: aqt.models.Models(mw, self))
|
|
|
|
|
|
ret = StudyDeck(mw, names=lambda: sorted(mw.col.models.allNames()),
|
|
|
|
|
|
accept=anki.lang._("Choose"), title=anki.lang._("Choose Note Type"),
|
|
|
|
|
|
help="_notes", parent=self, buttons=[edit],
|
|
|
|
|
|
cancel=True, geomKey="selectModel")
|
|
|
|
|
|
if ret.name:
|
|
|
|
|
|
model = mw.col.models.byName(ret.name)
|
|
|
|
|
|
self.models_button.setText(
|
|
|
|
|
|
u'%s [%s]' % (_('CHOOSE_NOTE_TYPES'), ret.name))
|
|
|
|
|
|
return model
|
|
|
|
|
|
|
2018-07-13 22:09:07 +08:00
|
|
|
|
def fill_dict_combo_options(self, dict_combo, current_unique):
|
2018-07-12 16:18:10 +08:00
|
|
|
|
'''setup dict combo box'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
dict_combo.clear()
|
2018-07-12 16:18:10 +08:00
|
|
|
|
#dict_combo.addItem(_('NOT_DICT_FIELD'))
|
2018-07-09 14:14:52 +08:00
|
|
|
|
|
|
|
|
|
|
# local dict service
|
2018-07-12 16:18:10 +08:00
|
|
|
|
#dict_combo.insertSeparator(dict_combo.count())
|
|
|
|
|
|
has_local_service = False
|
2018-07-05 12:38:04 +08:00
|
|
|
|
for cls in service_manager.local_services:
|
2018-07-01 10:55:30 +08:00
|
|
|
|
# combo_data.insert("data", each.label)
|
2018-07-05 12:38:04 +08:00
|
|
|
|
service = service_pool.get(cls.__unique__)
|
2018-07-06 12:29:50 +08:00
|
|
|
|
if service and service.support:
|
|
|
|
|
|
dict_combo.addItem(
|
|
|
|
|
|
service.title, userData=service.unique)
|
|
|
|
|
|
service_pool.put(service)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
has_local_service = True
|
2018-07-05 12:38:04 +08:00
|
|
|
|
|
2018-07-12 16:18:10 +08:00
|
|
|
|
# hr
|
|
|
|
|
|
if has_local_service:
|
|
|
|
|
|
dict_combo.insertSeparator(dict_combo.count())
|
|
|
|
|
|
|
|
|
|
|
|
# web dict service
|
2018-07-05 12:38:04 +08:00
|
|
|
|
for cls in service_manager.web_services:
|
|
|
|
|
|
service = service_pool.get(cls.__unique__)
|
2018-07-06 12:29:50 +08:00
|
|
|
|
if service and service.support:
|
|
|
|
|
|
dict_combo.addItem(
|
|
|
|
|
|
service.title, userData=service.unique)
|
|
|
|
|
|
service_pool.put(service)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def set_dict_combo_index():
|
2018-07-06 12:29:50 +08:00
|
|
|
|
#dict_combo.setCurrentIndex(-1)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
dict_combo.setCurrentIndex(0)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
if current_unique:
|
2018-07-13 00:57:53 +08:00
|
|
|
|
for i in range(dict_combo.count()):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
if dict_combo.itemData(i) == current_unique:
|
2018-07-13 00:57:53 +08:00
|
|
|
|
dict_combo.setCurrentIndex(i)
|
|
|
|
|
|
break
|
2018-07-12 16:18:10 +08:00
|
|
|
|
|
|
|
|
|
|
set_dict_combo_index()
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
2018-07-13 22:09:07 +08:00
|
|
|
|
def fill_field_combo_options(self, field_combo, dict_combo_text, dict_combo_itemdata, dict_fld_name, dict_fld_ord):
|
2018-07-12 16:18:10 +08:00
|
|
|
|
'''setup field combobox'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
field_combo.clear()
|
2018-07-09 19:25:08 +08:00
|
|
|
|
field_combo.setEditable(False)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
#if dict_combo_text in _sl('NOT_DICT_FIELD'):
|
|
|
|
|
|
# field_combo.setEnabled(False)
|
|
|
|
|
|
#el
|
|
|
|
|
|
if dict_combo_text in _sl('MDX_SERVER'):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
text = dict_fld_name if dict_fld_name else 'http://'
|
2018-07-09 19:25:08 +08:00
|
|
|
|
field_combo.setEditable(True)
|
|
|
|
|
|
field_combo.setEditText(text)
|
2018-07-13 01:47:30 +08:00
|
|
|
|
field_combo.setFocus(QtCore.Qt.MouseFocusReason) # MouseFocusReason
|
2018-07-01 10:55:30 +08:00
|
|
|
|
else:
|
2018-07-06 12:29:50 +08:00
|
|
|
|
unique = dict_combo_itemdata
|
|
|
|
|
|
service = service_pool.get(unique)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
# problem
|
2018-07-09 14:14:52 +08:00
|
|
|
|
field_combo.setCurrentIndex(0)
|
2018-07-06 12:29:50 +08:00
|
|
|
|
if service and service.support and service.fields:
|
2018-07-09 14:14:52 +08:00
|
|
|
|
for i, each in enumerate(service.fields):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
field_combo.addItem(each, userData=i)
|
|
|
|
|
|
if each == dict_fld_name or i == dict_fld_ord:
|
2018-07-09 14:14:52 +08:00
|
|
|
|
field_combo.setCurrentIndex(i)
|
2018-07-06 12:29:50 +08:00
|
|
|
|
service_pool.put(service)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def add_dict_layout(self, i, **kwargs):
|
|
|
|
|
|
"""
|
2018-07-13 22:09:07 +08:00
|
|
|
|
add dictionary fields row
|
2018-07-01 10:55:30 +08:00
|
|
|
|
"""
|
2018-07-12 16:18:10 +08:00
|
|
|
|
word_checked = i == 0
|
2018-07-13 22:09:07 +08:00
|
|
|
|
|
|
|
|
|
|
fld_name, fld_ord = (
|
|
|
|
|
|
kwargs.get('fld_name', ''), #笔记类型的字段名
|
|
|
|
|
|
kwargs.get('fld_ord', ''), #笔记类型的字段编号
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
dict_name, dict_unique, dict_fld_name, dict_fld_ord = (
|
|
|
|
|
|
kwargs.get('dict_name', ''), #字典名
|
|
|
|
|
|
kwargs.get('dict_unique', ''), #字典ID
|
|
|
|
|
|
kwargs.get('dict_fld_name', ''), #对应字典的字段名
|
|
|
|
|
|
kwargs.get('dcit_fld_ord', 0) #对应字典的字段编号
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
ignore, skip = (
|
2018-07-14 01:17:30 +08:00
|
|
|
|
kwargs.get('ignore', True), #忽略标志
|
|
|
|
|
|
kwargs.get('skip_valued', True), #略过有值项标志
|
2018-07-12 16:18:10 +08:00
|
|
|
|
)
|
|
|
|
|
|
# check
|
2018-07-13 00:57:53 +08:00
|
|
|
|
word_check_btn = QtGui.QRadioButton(fld_name)
|
|
|
|
|
|
word_check_btn.setMinimumSize(WIDGET_SIZE.map_fld_width, 0)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
word_check_btn.setMaximumSize(
|
2018-07-13 00:57:53 +08:00
|
|
|
|
WIDGET_SIZE.map_fld_width,
|
|
|
|
|
|
WIDGET_SIZE.map_max_height
|
2018-07-12 16:18:10 +08:00
|
|
|
|
)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
word_check_btn.setSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
word_check_btn.setCheckable(True)
|
|
|
|
|
|
word_check_btn.setChecked(word_checked)
|
|
|
|
|
|
self.radio_group.addButton(word_check_btn)
|
2018-07-09 14:14:52 +08:00
|
|
|
|
# dict combox
|
2018-07-13 00:57:53 +08:00
|
|
|
|
dict_combo = QtGui.QComboBox()
|
|
|
|
|
|
dict_combo.setMinimumSize(WIDGET_SIZE.map_dictname_width, 0)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
dict_combo.setFocusPolicy(
|
2018-07-13 00:57:53 +08:00
|
|
|
|
QtCore.Qt.TabFocus | QtCore.Qt.ClickFocus | QtCore.Qt.StrongFocus | QtCore.Qt.WheelFocus
|
2018-07-09 14:14:52 +08:00
|
|
|
|
)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
dict_combo.setEnabled(not word_checked and not ignore)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.fill_dict_combo_options(dict_combo, dict_unique)
|
2018-07-13 00:57:53 +08:00
|
|
|
|
dict_unique = dict_combo.itemData(dict_combo.currentIndex())
|
2018-07-09 14:14:52 +08:00
|
|
|
|
# field combox
|
2018-07-13 00:57:53 +08:00
|
|
|
|
field_combo = QtGui.QComboBox()
|
|
|
|
|
|
field_combo.setMinimumSize(WIDGET_SIZE.map_dictfield_width, 0)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
field_combo.setEnabled(not word_checked and not ignore)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.fill_field_combo_options(field_combo, dict_name, dict_unique, dict_fld_name, dict_fld_ord)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
|
|
|
|
|
|
# ignore
|
2018-07-13 22:09:07 +08:00
|
|
|
|
ignore_check_btn = QtGui.QCheckBox(_("NOT_DICT_FIELD"))
|
|
|
|
|
|
ignore_check_btn.setEnabled(not word_checked)
|
|
|
|
|
|
ignore_check_btn.setChecked(ignore)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
|
|
|
|
|
|
# Skip valued
|
2018-07-13 22:09:07 +08:00
|
|
|
|
skip_check_btn = QtGui.QCheckBox(_("SKIP_VALUED"))
|
|
|
|
|
|
skip_check_btn.setEnabled(not word_checked and not ignore)
|
|
|
|
|
|
skip_check_btn.setChecked(skip)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
|
|
|
|
|
|
# events
|
|
|
|
|
|
# word
|
|
|
|
|
|
def radio_btn_checked():
|
|
|
|
|
|
if self.___last_checkeds___:
|
|
|
|
|
|
self.___last_checkeds___[0].setEnabled(True)
|
|
|
|
|
|
ignore = self.___last_checkeds___[0].isChecked()
|
|
|
|
|
|
for i in range(1, len(self.___last_checkeds___)):
|
|
|
|
|
|
self.___last_checkeds___[i].setEnabled(not ignore)
|
|
|
|
|
|
|
|
|
|
|
|
word_checked = word_check_btn.isChecked()
|
2018-07-13 22:09:07 +08:00
|
|
|
|
ignore_check_btn.setEnabled(not word_checked)
|
|
|
|
|
|
ignore = ignore_check_btn.isChecked()
|
2018-07-12 16:18:10 +08:00
|
|
|
|
dict_combo.setEnabled(not word_checked and not ignore)
|
|
|
|
|
|
field_combo.setEnabled(not word_checked and not ignore)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
skip_check_btn.setEnabled(not word_checked and not ignore)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
if word_checked:
|
|
|
|
|
|
self.___last_checkeds___ = [
|
2018-07-13 22:09:07 +08:00
|
|
|
|
ignore_check_btn, dict_combo,
|
|
|
|
|
|
field_combo, skip_check_btn
|
2018-07-12 16:18:10 +08:00
|
|
|
|
]
|
|
|
|
|
|
word_check_btn.clicked.connect(radio_btn_checked)
|
|
|
|
|
|
if word_checked:
|
|
|
|
|
|
self.___last_checkeds___ = None
|
|
|
|
|
|
radio_btn_checked()
|
|
|
|
|
|
# ignor
|
|
|
|
|
|
def ignore_check_changed():
|
2018-07-13 22:09:07 +08:00
|
|
|
|
ignore = not ignore_check_btn.isChecked()
|
2018-07-12 16:18:10 +08:00
|
|
|
|
dict_combo.setEnabled(ignore)
|
|
|
|
|
|
field_combo.setEnabled(ignore)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
skip_check_btn.setEnabled(ignore)
|
|
|
|
|
|
ignore_check_btn.clicked.connect(ignore_check_changed)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
# dict
|
|
|
|
|
|
def dict_combo_changed(index):
|
|
|
|
|
|
'''dict combo box index changed'''
|
|
|
|
|
|
self.fill_field_combo_options(
|
|
|
|
|
|
field_combo,
|
|
|
|
|
|
dict_combo.currentText(),
|
|
|
|
|
|
dict_combo.itemData(index),
|
2018-07-13 22:09:07 +08:00
|
|
|
|
field_combo.currentText(),
|
|
|
|
|
|
field_combo.itemData(field_combo.currentIndex())
|
2018-07-12 16:18:10 +08:00
|
|
|
|
)
|
|
|
|
|
|
dict_combo.currentIndexChanged.connect(dict_combo_changed)
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
self.dicts_layout.addWidget(word_check_btn, i + 1, 0)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.dicts_layout.addWidget(ignore_check_btn, i + 1, 1)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
self.dicts_layout.addWidget(dict_combo, i + 1, 2)
|
|
|
|
|
|
self.dicts_layout.addWidget(field_combo, i + 1, 3)
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.dicts_layout.addWidget(skip_check_btn, i + 1, 4)
|
2018-07-12 16:18:10 +08:00
|
|
|
|
|
2018-07-13 22:09:07 +08:00
|
|
|
|
self.___options___.append({
|
|
|
|
|
|
'model': {'fld_name': fld_name, 'fld_ord': fld_ord},
|
|
|
|
|
|
'word_check_btn': word_check_btn,
|
|
|
|
|
|
'dict_combo': dict_combo,
|
|
|
|
|
|
'field_combo': field_combo,
|
|
|
|
|
|
'ignore_check_btn': ignore_check_btn,
|
|
|
|
|
|
'skip_check_btn': skip_check_btn
|
|
|
|
|
|
})
|
2018-07-01 10:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
def save(self):
|
2018-07-13 22:09:07 +08:00
|
|
|
|
'''save config to file'''
|
2018-07-01 10:55:30 +08:00
|
|
|
|
if not self.current_model:
|
|
|
|
|
|
return
|
|
|
|
|
|
data = dict()
|
2018-07-13 22:09:07 +08:00
|
|
|
|
maps = []
|
|
|
|
|
|
for row in self.___options___:
|
|
|
|
|
|
maps.append({
|
|
|
|
|
|
'fld_name': row['model']['fld_name'],
|
|
|
|
|
|
'fld_ord': row['model']['fld_ord'],
|
|
|
|
|
|
'word_checked': row['word_check_btn'].isChecked(),
|
|
|
|
|
|
'dict_name': row['dict_combo'].currentText().strip(),
|
|
|
|
|
|
'dict_unique': row['dict_combo'].itemData(row['dict_combo'].currentIndex()),
|
|
|
|
|
|
'dict_fld_name': row['field_combo'].currentText().strip(),
|
|
|
|
|
|
'dict_fld_ord': row['field_combo'].itemData(row['field_combo'].currentIndex()),
|
|
|
|
|
|
'ignore': row['ignore_check_btn'].isChecked(),
|
|
|
|
|
|
'skip_valued': row['skip_check_btn'].isChecked()
|
|
|
|
|
|
})
|
2018-07-01 10:55:30 +08:00
|
|
|
|
current_model_id = str(self.current_model['id'])
|
|
|
|
|
|
data[current_model_id] = maps
|
|
|
|
|
|
data['last_model'] = self.current_model['id']
|
|
|
|
|
|
config.update(data)
|