2012-12-21 08:51:59 +01:00
|
|
|
# Copyright: Damien Elmes <anki@ichi2.net>
|
2015-09-28 15:09:30 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-12-21 08:51:59 +01:00
|
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
|
|
|
from aqt.qt import *
|
2016-05-12 06:45:35 +02:00
|
|
|
import re, os, sys, urllib.request, urllib.parse, urllib.error, subprocess
|
2012-12-21 08:51:59 +01:00
|
|
|
import aqt
|
2013-02-20 07:12:07 +01:00
|
|
|
from anki.sound import stripSounds
|
|
|
|
from anki.utils import isWin, isMac, invalidFilename
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def openHelp(section):
|
|
|
|
link = aqt.appHelpSite
|
|
|
|
if section:
|
|
|
|
link += "#%s" % section
|
|
|
|
openLink(link)
|
|
|
|
|
|
|
|
def openLink(link):
|
|
|
|
tooltip(_("Loading..."), period=1000)
|
|
|
|
QDesktopServices.openUrl(QUrl(link))
|
|
|
|
|
2016-04-30 07:44:41 +02:00
|
|
|
def showWarning(text, parent=None, help="", title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
"Show a small warning with an OK button."
|
2016-04-30 07:44:41 +02:00
|
|
|
return showInfo(text, parent, help, "warning", title=title)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2016-04-30 07:44:41 +02:00
|
|
|
def showCritical(text, parent=None, help="", title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
"Show a small critical error with an OK button."
|
2016-04-30 07:44:41 +02:00
|
|
|
return showInfo(text, parent, help, "critical", title=title)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2016-04-30 07:44:41 +02:00
|
|
|
def showInfo(text, parent=False, help="", type="info", title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
"Show a small info window with an OK button."
|
|
|
|
if parent is False:
|
|
|
|
parent = aqt.mw.app.activeWindow() or aqt.mw
|
|
|
|
if type == "warning":
|
|
|
|
icon = QMessageBox.Warning
|
|
|
|
elif type == "critical":
|
|
|
|
icon = QMessageBox.Critical
|
|
|
|
else:
|
|
|
|
icon = QMessageBox.Information
|
|
|
|
mb = QMessageBox(parent)
|
|
|
|
mb.setText(text)
|
|
|
|
mb.setIcon(icon)
|
|
|
|
mb.setWindowModality(Qt.WindowModal)
|
2016-04-30 07:44:41 +02:00
|
|
|
mb.setWindowTitle(title)
|
2012-12-21 08:51:59 +01:00
|
|
|
b = mb.addButton(QMessageBox.Ok)
|
|
|
|
b.setDefault(True)
|
|
|
|
if help:
|
|
|
|
b = mb.addButton(QMessageBox.Help)
|
2016-05-31 10:51:40 +02:00
|
|
|
b.clicked.connect(lambda: openHelp(help))
|
2012-12-21 08:51:59 +01:00
|
|
|
b.setAutoDefault(False)
|
|
|
|
return mb.exec_()
|
|
|
|
|
2016-04-30 07:44:41 +02:00
|
|
|
def showText(txt, parent=None, type="text", run=True, geomKey=None, \
|
|
|
|
minWidth=500, minHeight=400, title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
if not parent:
|
|
|
|
parent = aqt.mw.app.activeWindow() or aqt.mw
|
|
|
|
diag = QDialog(parent)
|
2016-04-30 07:44:41 +02:00
|
|
|
diag.setWindowTitle(title)
|
2012-12-21 08:51:59 +01:00
|
|
|
layout = QVBoxLayout(diag)
|
|
|
|
diag.setLayout(layout)
|
|
|
|
text = QTextEdit()
|
|
|
|
text.setReadOnly(True)
|
|
|
|
if type == "text":
|
|
|
|
text.setPlainText(txt)
|
|
|
|
else:
|
|
|
|
text.setHtml(txt)
|
|
|
|
layout.addWidget(text)
|
|
|
|
box = QDialogButtonBox(QDialogButtonBox.Close)
|
|
|
|
layout.addWidget(box)
|
2014-06-18 20:47:45 +02:00
|
|
|
def onReject():
|
|
|
|
if geomKey:
|
|
|
|
saveGeom(diag, geomKey)
|
|
|
|
QDialog.reject(diag)
|
2016-05-31 10:51:40 +02:00
|
|
|
box.rejected.connect(onReject)
|
2016-04-30 07:44:41 +02:00
|
|
|
diag.setMinimumHeight(minHeight)
|
|
|
|
diag.setMinimumWidth(minWidth)
|
2014-06-18 20:47:45 +02:00
|
|
|
if geomKey:
|
|
|
|
restoreGeom(diag, geomKey)
|
2012-12-21 08:51:59 +01:00
|
|
|
if run:
|
|
|
|
diag.exec_()
|
|
|
|
else:
|
|
|
|
return diag, box
|
|
|
|
|
2016-04-30 07:44:41 +02:00
|
|
|
def askUser(text, parent=None, help="", defaultno=False, msgfunc=None, \
|
|
|
|
title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
"Show a yes/no question. Return true if yes."
|
|
|
|
if not parent:
|
|
|
|
parent = aqt.mw.app.activeWindow()
|
|
|
|
if not msgfunc:
|
|
|
|
msgfunc = QMessageBox.question
|
|
|
|
sb = QMessageBox.Yes | QMessageBox.No
|
|
|
|
if help:
|
|
|
|
sb |= QMessageBox.Help
|
|
|
|
while 1:
|
|
|
|
if defaultno:
|
|
|
|
default = QMessageBox.No
|
|
|
|
else:
|
|
|
|
default = QMessageBox.Yes
|
2016-04-30 07:44:41 +02:00
|
|
|
r = msgfunc(parent, title, text, sb, default)
|
2012-12-21 08:51:59 +01:00
|
|
|
if r == QMessageBox.Help:
|
|
|
|
|
|
|
|
openHelp(help)
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
return r == QMessageBox.Yes
|
|
|
|
|
2016-05-01 05:32:17 +02:00
|
|
|
class ButtonedDialog(QMessageBox):
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2016-05-01 05:32:17 +02:00
|
|
|
def __init__(self, text, buttons, parent=None, help="", title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
QDialog.__init__(self, parent)
|
|
|
|
self.buttons = []
|
2016-04-30 07:44:41 +02:00
|
|
|
self.setWindowTitle(title)
|
2012-12-21 08:51:59 +01:00
|
|
|
self.help = help
|
|
|
|
self.setIcon(QMessageBox.Warning)
|
|
|
|
self.setText(text)
|
|
|
|
# v = QVBoxLayout()
|
|
|
|
# v.addWidget(QLabel(text))
|
|
|
|
# box = QDialogButtonBox()
|
|
|
|
# v.addWidget(box)
|
|
|
|
for b in buttons:
|
|
|
|
self.buttons.append(
|
|
|
|
self.addButton(b, QMessageBox.AcceptRole))
|
|
|
|
if help:
|
|
|
|
self.addButton(_("Help"), QMessageBox.HelpRole)
|
|
|
|
buttons.append(_("Help"))
|
|
|
|
#self.setLayout(v)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.exec_()
|
|
|
|
but = self.clickedButton().text()
|
|
|
|
if but == "Help":
|
|
|
|
# FIXME stop dialog closing?
|
|
|
|
openHelp(self.help)
|
|
|
|
return self.clickedButton().text()
|
|
|
|
|
|
|
|
def setDefault(self, idx):
|
|
|
|
self.setDefaultButton(self.buttons[idx])
|
|
|
|
|
2016-04-30 07:44:41 +02:00
|
|
|
def askUserDialog(text, buttons, parent=None, help="", title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
if not parent:
|
|
|
|
parent = aqt.mw
|
2016-04-30 07:44:41 +02:00
|
|
|
diag = ButtonedDialog(text, buttons, parent, help, title=title)
|
2012-12-21 08:51:59 +01:00
|
|
|
return diag
|
|
|
|
|
|
|
|
class GetTextDialog(QDialog):
|
|
|
|
|
2016-05-12 06:45:35 +02:00
|
|
|
def __init__(self, parent, question, help=None, edit=None, default="", \
|
2016-04-30 07:44:41 +02:00
|
|
|
title="Anki", minWidth=400):
|
2012-12-21 08:51:59 +01:00
|
|
|
QDialog.__init__(self, parent)
|
|
|
|
self.setWindowTitle(title)
|
|
|
|
self.question = question
|
|
|
|
self.help = help
|
|
|
|
self.qlabel = QLabel(question)
|
2016-04-30 07:44:41 +02:00
|
|
|
self.setMinimumWidth(minWidth)
|
2012-12-21 08:51:59 +01:00
|
|
|
v = QVBoxLayout()
|
|
|
|
v.addWidget(self.qlabel)
|
|
|
|
if not edit:
|
|
|
|
edit = QLineEdit()
|
|
|
|
self.l = edit
|
|
|
|
if default:
|
|
|
|
self.l.setText(default)
|
|
|
|
self.l.selectAll()
|
|
|
|
v.addWidget(self.l)
|
|
|
|
buts = QDialogButtonBox.Ok | QDialogButtonBox.Cancel
|
|
|
|
if help:
|
|
|
|
buts |= QDialogButtonBox.Help
|
|
|
|
b = QDialogButtonBox(buts)
|
|
|
|
v.addWidget(b)
|
|
|
|
self.setLayout(v)
|
2016-05-31 10:51:40 +02:00
|
|
|
b.button(QDialogButtonBox.Ok).clicked.connect(self.accept)
|
|
|
|
b.button(QDialogButtonBox.Cancel).clicked.connect(self.reject)
|
2012-12-21 08:51:59 +01:00
|
|
|
if help:
|
2016-05-31 10:51:40 +02:00
|
|
|
b.button(QDialogButtonBox.Help).clicked.connect(self.helpRequested)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def accept(self):
|
|
|
|
return QDialog.accept(self)
|
|
|
|
|
|
|
|
def reject(self):
|
|
|
|
return QDialog.reject(self)
|
|
|
|
|
|
|
|
def helpRequested(self):
|
|
|
|
openHelp(self.help)
|
|
|
|
|
2016-05-12 06:45:35 +02:00
|
|
|
def getText(prompt, parent=None, help=None, edit=None, default="", title="Anki"):
|
2012-12-21 08:51:59 +01:00
|
|
|
if not parent:
|
|
|
|
parent = aqt.mw.app.activeWindow() or aqt.mw
|
|
|
|
d = GetTextDialog(parent, prompt, help=help, edit=edit,
|
|
|
|
default=default, title=title)
|
|
|
|
d.setWindowModality(Qt.WindowModal)
|
|
|
|
ret = d.exec_()
|
2016-05-12 06:45:35 +02:00
|
|
|
return (str(d.l.text()), ret)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def getOnlyText(*args, **kwargs):
|
|
|
|
(s, r) = getText(*args, **kwargs)
|
|
|
|
if r:
|
|
|
|
return s
|
|
|
|
else:
|
2016-05-12 06:45:35 +02:00
|
|
|
return ""
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
# fixme: these utilities could be combined into a single base class
|
|
|
|
def chooseList(prompt, choices, startrow=0, parent=None):
|
|
|
|
if not parent:
|
|
|
|
parent = aqt.mw.app.activeWindow()
|
|
|
|
d = QDialog(parent)
|
|
|
|
d.setWindowModality(Qt.WindowModal)
|
|
|
|
l = QVBoxLayout()
|
|
|
|
d.setLayout(l)
|
|
|
|
t = QLabel(prompt)
|
|
|
|
l.addWidget(t)
|
|
|
|
c = QListWidget()
|
|
|
|
c.addItems(choices)
|
|
|
|
c.setCurrentRow(startrow)
|
|
|
|
l.addWidget(c)
|
|
|
|
bb = QDialogButtonBox(QDialogButtonBox.Ok)
|
2016-05-31 10:51:40 +02:00
|
|
|
bb.accepted.connect(d.accept)
|
2012-12-21 08:51:59 +01:00
|
|
|
l.addWidget(bb)
|
|
|
|
d.exec_()
|
|
|
|
return c.currentRow()
|
|
|
|
|
|
|
|
def getTag(parent, deck, question, tags="user", **kwargs):
|
|
|
|
from aqt.tagedit import TagEdit
|
|
|
|
te = TagEdit(parent)
|
|
|
|
te.setCol(deck)
|
|
|
|
ret = getText(question, parent, edit=te, **kwargs)
|
|
|
|
te.hideCompleter()
|
|
|
|
return ret
|
|
|
|
|
|
|
|
# File handling
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
def getFile(parent, title, cb, filter="*.*", dir=None, key=None):
|
|
|
|
"Ask the user for a file."
|
|
|
|
assert not dir or not key
|
|
|
|
if not dir:
|
|
|
|
dirkey = key+"Directory"
|
|
|
|
dir = aqt.mw.pm.profile.get(dirkey, "")
|
|
|
|
else:
|
|
|
|
dirkey = None
|
|
|
|
d = QFileDialog(parent)
|
|
|
|
d.setFileMode(QFileDialog.ExistingFile)
|
2016-03-21 00:57:45 +01:00
|
|
|
if os.path.exists(dir):
|
|
|
|
d.setDirectory(dir)
|
2012-12-21 08:51:59 +01:00
|
|
|
d.setWindowTitle(title)
|
|
|
|
d.setNameFilter(filter)
|
|
|
|
ret = []
|
|
|
|
def accept():
|
2016-05-12 06:45:35 +02:00
|
|
|
file = str(list(d.selectedFiles())[0])
|
2012-12-21 08:51:59 +01:00
|
|
|
if dirkey:
|
|
|
|
dir = os.path.dirname(file)
|
|
|
|
aqt.mw.pm.profile[dirkey] = dir
|
|
|
|
if cb:
|
|
|
|
cb(file)
|
|
|
|
ret.append(file)
|
2016-05-31 10:51:40 +02:00
|
|
|
d.accepted.connect(accept)
|
2012-12-21 08:51:59 +01:00
|
|
|
d.exec_()
|
|
|
|
return ret and ret[0]
|
|
|
|
|
2013-05-21 04:53:02 +02:00
|
|
|
def getSaveFile(parent, title, dir_description, key, ext, fname=None):
|
2013-05-18 18:24:53 +02:00
|
|
|
"""Ask the user for a file to save. Use DIR_DESCRIPTION as config
|
2013-05-21 04:53:02 +02:00
|
|
|
variable. The file dialog will default to open with FNAME."""
|
|
|
|
config_key = dir_description + 'Directory'
|
|
|
|
base = aqt.mw.pm.profile.get(config_key, aqt.mw.pm.base)
|
|
|
|
path = os.path.join(base, fname)
|
2016-05-31 10:51:40 +02:00
|
|
|
file = QFileDialog.getSaveFileName(
|
2016-05-12 06:45:35 +02:00
|
|
|
parent, title, path, "{0} (*{1})".format(key, ext),
|
2016-05-31 10:51:40 +02:00
|
|
|
options=QFileDialog.DontConfirmOverwrite)[0]
|
2012-12-21 08:51:59 +01:00
|
|
|
if file:
|
|
|
|
# add extension
|
|
|
|
if not file.lower().endswith(ext):
|
|
|
|
file += ext
|
|
|
|
# save new default
|
|
|
|
dir = os.path.dirname(file)
|
2013-05-18 18:24:53 +02:00
|
|
|
aqt.mw.pm.profile[config_key] = dir
|
2012-12-21 08:51:59 +01:00
|
|
|
# check if it exists
|
|
|
|
if os.path.exists(file):
|
|
|
|
if not askUser(
|
|
|
|
_("This file exists. Are you sure you want to overwrite it?"),
|
|
|
|
parent):
|
|
|
|
return None
|
|
|
|
return file
|
|
|
|
|
|
|
|
def saveGeom(widget, key):
|
|
|
|
key += "Geom"
|
|
|
|
aqt.mw.pm.profile[key] = widget.saveGeometry()
|
|
|
|
|
2014-06-18 20:47:45 +02:00
|
|
|
def restoreGeom(widget, key, offset=None, adjustSize=False):
|
2012-12-21 08:51:59 +01:00
|
|
|
key += "Geom"
|
|
|
|
if aqt.mw.pm.profile.get(key):
|
|
|
|
widget.restoreGeometry(aqt.mw.pm.profile[key])
|
|
|
|
if isMac and offset:
|
2013-05-17 08:17:04 +02:00
|
|
|
if qtminor > 6:
|
2012-12-21 08:51:59 +01:00
|
|
|
# bug in osx toolkit
|
|
|
|
s = widget.size()
|
|
|
|
widget.resize(s.width(), s.height()+offset*2)
|
2014-06-18 20:47:45 +02:00
|
|
|
else:
|
|
|
|
if adjustSize:
|
|
|
|
widget.adjustSize()
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def saveState(widget, key):
|
|
|
|
key += "State"
|
|
|
|
aqt.mw.pm.profile[key] = widget.saveState()
|
|
|
|
|
|
|
|
def restoreState(widget, key):
|
|
|
|
key += "State"
|
|
|
|
if aqt.mw.pm.profile.get(key):
|
|
|
|
widget.restoreState(aqt.mw.pm.profile[key])
|
|
|
|
|
|
|
|
def saveSplitter(widget, key):
|
|
|
|
key += "Splitter"
|
|
|
|
aqt.mw.pm.profile[key] = widget.saveState()
|
|
|
|
|
|
|
|
def restoreSplitter(widget, key):
|
|
|
|
key += "Splitter"
|
|
|
|
if aqt.mw.pm.profile.get(key):
|
|
|
|
widget.restoreState(aqt.mw.pm.profile[key])
|
|
|
|
|
|
|
|
def saveHeader(widget, key):
|
|
|
|
key += "Header"
|
|
|
|
aqt.mw.pm.profile[key] = widget.saveState()
|
|
|
|
|
|
|
|
def restoreHeader(widget, key):
|
|
|
|
key += "Header"
|
|
|
|
if aqt.mw.pm.profile.get(key):
|
|
|
|
widget.restoreState(aqt.mw.pm.profile[key])
|
|
|
|
|
2013-06-10 08:28:34 +02:00
|
|
|
def mungeQA(col, txt):
|
|
|
|
txt = col.media.escapeImages(txt)
|
2012-12-21 08:51:59 +01:00
|
|
|
txt = stripSounds(txt)
|
|
|
|
# osx webkit doesn't understand font weight 600
|
|
|
|
txt = re.sub("font-weight: *600", "font-weight:bold", txt)
|
2014-09-27 03:26:14 +02:00
|
|
|
if isMac:
|
|
|
|
# custom fonts cause crashes on osx at the moment
|
|
|
|
txt = txt.replace("font-face", "invalid")
|
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
return txt
|
|
|
|
|
|
|
|
def applyStyles(widget):
|
|
|
|
p = os.path.join(aqt.mw.pm.base, "style.css")
|
|
|
|
if os.path.exists(p):
|
|
|
|
widget.setStyleSheet(open(p).read())
|
|
|
|
|
2016-07-07 15:39:48 +02:00
|
|
|
# this will go away in the future - please use mw.baseHTML() instead
|
2012-12-21 08:51:59 +01:00
|
|
|
def getBase(col):
|
2016-07-07 15:39:48 +02:00
|
|
|
from aqt import mw
|
|
|
|
return mw.baseHTML()
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def openFolder(path):
|
|
|
|
if isWin:
|
|
|
|
subprocess.Popen(["explorer", path])
|
|
|
|
else:
|
2016-11-28 21:01:03 +01:00
|
|
|
oldlpath = os.environ.pop("LD_LIBRARY_PATH", None)
|
2012-12-21 08:51:59 +01:00
|
|
|
QDesktopServices.openUrl(QUrl("file://" + path))
|
2016-07-14 13:06:33 +02:00
|
|
|
if oldlpath:
|
|
|
|
os.environ["LD_LIBRARY_PATH"] = oldlpath
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def shortcut(key):
|
|
|
|
if isMac:
|
|
|
|
return re.sub("(?i)ctrl", "Command", key)
|
|
|
|
return key
|
|
|
|
|
|
|
|
def maybeHideClose(bbox):
|
|
|
|
if isMac:
|
|
|
|
b = bbox.button(QDialogButtonBox.Close)
|
|
|
|
if b:
|
|
|
|
bbox.removeButton(b)
|
|
|
|
|
2012-12-22 01:11:29 +01:00
|
|
|
def addCloseShortcut(widg):
|
|
|
|
if not isMac:
|
|
|
|
return
|
|
|
|
widg._closeShortcut = QShortcut(QKeySequence("Ctrl+W"), widg)
|
2016-05-31 10:51:40 +02:00
|
|
|
widg._closeShortcut.activated.connect(widg.reject)
|
2012-12-22 01:11:29 +01:00
|
|
|
|
2015-09-28 15:09:30 +02:00
|
|
|
def downArrow():
|
|
|
|
if isWin:
|
2016-05-12 06:45:35 +02:00
|
|
|
return "▼"
|
2015-09-28 15:09:30 +02:00
|
|
|
# windows 10 is lacking the smaller arrow on English installs
|
2016-05-12 06:45:35 +02:00
|
|
|
return "▾"
|
2015-09-28 15:09:30 +02:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
# Tooltips
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
_tooltipTimer = None
|
|
|
|
_tooltipLabel = None
|
|
|
|
|
|
|
|
def tooltip(msg, period=3000, parent=None):
|
|
|
|
global _tooltipTimer, _tooltipLabel
|
|
|
|
class CustomLabel(QLabel):
|
|
|
|
def mousePressEvent(self, evt):
|
|
|
|
evt.accept()
|
|
|
|
self.hide()
|
|
|
|
closeTooltip()
|
|
|
|
aw = parent or aqt.mw.app.activeWindow() or aqt.mw
|
|
|
|
lab = CustomLabel("""\
|
|
|
|
<table cellpadding=10>
|
|
|
|
<tr>
|
|
|
|
<td><img src=":/icons/help-hint.png"></td>
|
|
|
|
<td>%s</td>
|
|
|
|
</tr>
|
|
|
|
</table>""" % msg, aw)
|
|
|
|
lab.setFrameStyle(QFrame.Panel)
|
|
|
|
lab.setLineWidth(2)
|
|
|
|
lab.setWindowFlags(Qt.ToolTip)
|
|
|
|
p = QPalette()
|
|
|
|
p.setColor(QPalette.Window, QColor("#feffc4"))
|
2014-06-02 20:02:26 +02:00
|
|
|
p.setColor(QPalette.WindowText, QColor("#000000"))
|
2012-12-21 08:51:59 +01:00
|
|
|
lab.setPalette(p)
|
|
|
|
lab.move(
|
|
|
|
aw.mapToGlobal(QPoint(0, -100 + aw.height())))
|
|
|
|
lab.show()
|
|
|
|
_tooltipTimer = aqt.mw.progress.timer(
|
|
|
|
period, closeTooltip, False)
|
|
|
|
_tooltipLabel = lab
|
|
|
|
|
|
|
|
def closeTooltip():
|
|
|
|
global _tooltipLabel, _tooltipTimer
|
|
|
|
if _tooltipLabel:
|
|
|
|
try:
|
|
|
|
_tooltipLabel.deleteLater()
|
|
|
|
except:
|
|
|
|
# already deleted as parent window closed
|
|
|
|
pass
|
|
|
|
_tooltipLabel = None
|
|
|
|
if _tooltipTimer:
|
|
|
|
_tooltipTimer.stop()
|
|
|
|
_tooltipTimer = None
|
2013-02-20 07:12:07 +01:00
|
|
|
|
|
|
|
# true if invalid; print warning
|
|
|
|
def checkInvalidFilename(str, dirsep=True):
|
|
|
|
bad = invalidFilename(str, dirsep)
|
|
|
|
if bad:
|
|
|
|
showWarning(_("The following character can not be used: %s") %
|
|
|
|
bad)
|
|
|
|
return True
|
|
|
|
return False
|