mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 18:08:42 -05:00
Uniformize comments and docstrings syntax
This commit is contained in:
parent
06aad62cb6
commit
915a360a09
2 changed files with 14 additions and 14 deletions
|
|
@ -186,7 +186,7 @@ class StartQT5(QMainWindow):
|
||||||
|
|
||||||
def walk(self, dir, delegatorlist):
|
def walk(self, dir, delegatorlist):
|
||||||
"""
|
"""
|
||||||
Walks a directory, and executes a callback on each file
|
Walks a directory, and executes a callback on each file.
|
||||||
"""
|
"""
|
||||||
dir = path.abspath(dir)
|
dir = path.abspath(dir)
|
||||||
for file in [file for file in listdir(dir) if not file in [".","..",".svn",".git",".hg",".bzr",".cvs"]]:
|
for file in [file for file in listdir(dir) if not file in [".","..",".svn",".git",".hg",".bzr",".cvs"]]:
|
||||||
|
|
@ -199,7 +199,7 @@ class StartQT5(QMainWindow):
|
||||||
|
|
||||||
def add_image(self, fullpath, delegatorlist):
|
def add_image(self, fullpath, delegatorlist):
|
||||||
"""
|
"""
|
||||||
Adds an image file to the delegator list and update the tray and the title of the window
|
Adds an image file to the delegator list and update the tray and the title of the window.
|
||||||
"""
|
"""
|
||||||
image = Image(fullpath)
|
image = Image(fullpath)
|
||||||
if image.valid:
|
if image.valid:
|
||||||
|
|
@ -272,7 +272,7 @@ class StartQT5(QMainWindow):
|
||||||
return status
|
return status
|
||||||
|
|
||||||
def safe_call(self, command):
|
def safe_call(self, command):
|
||||||
""" cross-platform command-line check """
|
"""Cross-platform command-line check."""
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
return call(command, shell=True, stdout=PIPE)
|
return call(command, shell=True, stdout=PIPE)
|
||||||
|
|
@ -383,7 +383,7 @@ class ImageRow:
|
||||||
class Image:
|
class Image:
|
||||||
|
|
||||||
def __init__(self, fullpath):
|
def __init__(self, fullpath):
|
||||||
""" gather image information. """
|
"""Gather image information."""
|
||||||
self.valid = False
|
self.valid = False
|
||||||
self.reset()
|
self.reset()
|
||||||
self.fullpath = fullpath
|
self.fullpath = fullpath
|
||||||
|
|
@ -416,7 +416,7 @@ class Image:
|
||||||
"jpeg": "jpegoptim" + exe + " -f --strip-all '%(file)s'",
|
"jpeg": "jpegoptim" + exe + " -f --strip-all '%(file)s'",
|
||||||
"png": "optipng" + exe + " -force -o7 '%(file)s'&&advpng" + exe + " -z4 '%(file)s' && pngcrush -rem gAMA -rem alla -rem cHRM -rem iCCP -rem sRGB -rem time '%(file)s' '%(file)s.bak' && mv '%(file)s.bak' '%(file)s'"
|
"png": "optipng" + exe + " -force -o7 '%(file)s'&&advpng" + exe + " -z4 '%(file)s' && pngcrush -rem gAMA -rem alla -rem cHRM -rem iCCP -rem sRGB -rem time '%(file)s' '%(file)s.bak' && mv '%(file)s.bak' '%(file)s'"
|
||||||
}
|
}
|
||||||
# Create a backup file
|
# create a backup file
|
||||||
copy(self.fullpath, self.fullpath + '~')
|
copy(self.fullpath, self.fullpath + '~')
|
||||||
try:
|
try:
|
||||||
retcode = call(runString[self.filetype] % {"file": self.fullpath},
|
retcode = call(runString[self.filetype] % {"file": self.fullpath},
|
||||||
|
|
@ -427,12 +427,12 @@ class Image:
|
||||||
self.newfilesize = QFile(self.fullpath).size()
|
self.newfilesize = QFile(self.fullpath).size()
|
||||||
self.compressed = True
|
self.compressed = True
|
||||||
|
|
||||||
# Checks the new file and copy the backup
|
# checks the new file and copy the backup
|
||||||
if self.newfilesize >= self.oldfilesize:
|
if self.newfilesize >= self.oldfilesize:
|
||||||
copy(self.fullpath + '~', self.fullpath)
|
copy(self.fullpath + '~', self.fullpath)
|
||||||
self.newfilesize = self.oldfilesize
|
self.newfilesize = self.oldfilesize
|
||||||
|
|
||||||
# Removes the backup file
|
# removes the backup file
|
||||||
remove(self.fullpath + '~')
|
remove(self.fullpath + '~')
|
||||||
else:
|
else:
|
||||||
self.failed = True
|
self.failed = True
|
||||||
|
|
|
||||||
|
|
@ -36,12 +36,12 @@ class TrimageTableView(QTableView):
|
||||||
|
|
||||||
class Ui_trimage():
|
class Ui_trimage():
|
||||||
def get_image(self, image):
|
def get_image(self, image):
|
||||||
""" Get the correct link to the images used in the UI """
|
"""Get the correct link to the images used in the UI."""
|
||||||
imagelink = path.join(path.dirname(path.dirname(path.realpath(__file__))), "trimage/" + image)
|
imagelink = path.join(path.dirname(path.dirname(path.realpath(__file__))), "trimage/" + image)
|
||||||
return imagelink
|
return imagelink
|
||||||
|
|
||||||
def setupUi(self, trimage):
|
def setupUi(self, trimage):
|
||||||
""" Setup the entire UI """
|
"""Setup the entire UI."""
|
||||||
trimage.setObjectName("trimage")
|
trimage.setObjectName("trimage")
|
||||||
trimage.resize(600, 170)
|
trimage.resize(600, 170)
|
||||||
|
|
||||||
|
|
@ -149,7 +149,7 @@ class Ui_trimage():
|
||||||
QMetaObject.connectSlotsByName(trimage)
|
QMetaObject.connectSlotsByName(trimage)
|
||||||
|
|
||||||
def retranslateUi(self, trimage):
|
def retranslateUi(self, trimage):
|
||||||
""" Fill in the texts for all UI elements """
|
"""Fill in the texts for all UI elements."""
|
||||||
trimage.setWindowTitle(QApplication.translate("trimage",
|
trimage.setWindowTitle(QApplication.translate("trimage",
|
||||||
"Trimage image compressor", None))
|
"Trimage image compressor", None))
|
||||||
self.addfiles.setToolTip(QApplication.translate("trimage",
|
self.addfiles.setToolTip(QApplication.translate("trimage",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue