mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 10:08:40 -05:00
more comments, make imagelist global
This commit is contained in:
parent
96c8442dd0
commit
64883dffd2
1 changed files with 30 additions and 26 deletions
56
trimage.py
56
trimage.py
|
|
@ -14,6 +14,8 @@ from ui import Ui_trimage
|
||||||
|
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
|
|
||||||
|
#init imagelist
|
||||||
|
imagelist = []
|
||||||
|
|
||||||
class StartQT4(QMainWindow):
|
class StartQT4(QMainWindow):
|
||||||
|
|
||||||
|
|
@ -27,9 +29,6 @@ class StartQT4(QMainWindow):
|
||||||
# disable recompress
|
# disable recompress
|
||||||
self.ui.recompress.setEnabled(False)
|
self.ui.recompress.setEnabled(False)
|
||||||
|
|
||||||
# init imagelist
|
|
||||||
self.imagelist = []
|
|
||||||
|
|
||||||
# show application on load (or not if there are command line options)
|
# show application on load (or not if there are command line options)
|
||||||
self.showapp = True
|
self.showapp = True
|
||||||
|
|
||||||
|
|
@ -63,7 +62,9 @@ class StartQT4(QMainWindow):
|
||||||
self.file_from_cmd(options.filename)
|
self.file_from_cmd(options.filename)
|
||||||
if options.directory:
|
if options.directory:
|
||||||
self.dir_from_cmd(options.directory)
|
self.dir_from_cmd(options.directory)
|
||||||
|
"""
|
||||||
|
Input functions
|
||||||
|
"""
|
||||||
def dir_from_cmd(self, directory):
|
def dir_from_cmd(self, directory):
|
||||||
"""Read the files in the directory and send all files to
|
"""Read the files in the directory and send all files to
|
||||||
compress_file."""
|
compress_file."""
|
||||||
|
|
@ -87,12 +88,6 @@ class StartQT4(QMainWindow):
|
||||||
if self.checkname(image):
|
if self.checkname(image):
|
||||||
self.compress_file(image)
|
self.compress_file(image)
|
||||||
|
|
||||||
|
|
||||||
def checkname(self, name):
|
|
||||||
"""Check if the file is a jpg or png."""
|
|
||||||
if path.splitext(str(name))[1].lower() in [".jpg", ".jpeg", ".png"]:
|
|
||||||
return True
|
|
||||||
|
|
||||||
def file_dialog(self):
|
def file_dialog(self):
|
||||||
"""Open a file dialog and send the selected images to compress_file."""
|
"""Open a file dialog and send the selected images to compress_file."""
|
||||||
fd = QFileDialog(self)
|
fd = QFileDialog(self)
|
||||||
|
|
@ -105,17 +100,15 @@ class StartQT4(QMainWindow):
|
||||||
if self.checkname(image):
|
if self.checkname(image):
|
||||||
self.compress_file(image)
|
self.compress_file(image)
|
||||||
|
|
||||||
def enable_recompress(self):
|
|
||||||
"""Enable the recompress button."""
|
|
||||||
self.ui.recompress.setEnabled(True)
|
|
||||||
|
|
||||||
def recompress_files(self):
|
def recompress_files(self):
|
||||||
"""Send each file in the current file list to compress_file again."""
|
"""Send each file in the current file list to compress_file again."""
|
||||||
imagelistcopy = self.imagelist
|
imagelistcopy = imagelist
|
||||||
self.imagelist = []
|
imagelist = []
|
||||||
for image in imagelistcopy:
|
for image in imagelistcopy:
|
||||||
self.compress_file(image[-1])
|
self.compress_file(image[-1])
|
||||||
|
"""
|
||||||
|
Compress functions
|
||||||
|
"""
|
||||||
def compress_file(self, filename):
|
def compress_file(self, filename):
|
||||||
"""Compress the given file, get data from it and call update_table."""
|
"""Compress the given file, get data from it and call update_table."""
|
||||||
|
|
||||||
|
|
@ -153,7 +146,7 @@ class StartQT4(QMainWindow):
|
||||||
ratiostr = "%.1f%%" % ratio
|
ratiostr = "%.1f%%" % ratio
|
||||||
|
|
||||||
# append current image to list
|
# append current image to list
|
||||||
self.imagelist.append(
|
imagelist.append(
|
||||||
(name, oldfilesizestr, newfilesizestr, ratiostr, filename, QIcon(filename)))
|
(name, oldfilesizestr, newfilesizestr, ratiostr, filename, QIcon(filename)))
|
||||||
self.update_table()
|
self.update_table()
|
||||||
|
|
||||||
|
|
@ -161,17 +154,18 @@ class StartQT4(QMainWindow):
|
||||||
# we work via the commandline
|
# we work via the commandline
|
||||||
print("File:" + filename + ", Old Size:" + oldfilesizestr +
|
print("File:" + filename + ", Old Size:" + oldfilesizestr +
|
||||||
", New Size:" + newfilesizestr + ", Ratio:" + ratiostr)
|
", New Size:" + newfilesizestr + ", Ratio:" + ratiostr)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# TODO nice error recovery
|
# TODO nice error recovery
|
||||||
print("uh. not good")
|
print("uh. not good")
|
||||||
|
"""
|
||||||
|
UI Functions
|
||||||
|
"""
|
||||||
def update_table(self):
|
def update_table(self):
|
||||||
"""Update the table view with the latest file data."""
|
"""Update the table view with the latest file data."""
|
||||||
tview = self.ui.processedfiles
|
tview = self.ui.processedfiles
|
||||||
|
|
||||||
# set table model
|
# set table model
|
||||||
tmodel = TriTableModel(self, self.imagelist,
|
tmodel = TriTableModel(self, imagelist,
|
||||||
["Filename", "Old Size", "New Size", "Compressed"])
|
["Filename", "Old Size", "New Size", "Compressed"])
|
||||||
tview.setModel(tmodel)
|
tview.setModel(tmodel)
|
||||||
|
|
||||||
|
|
@ -184,7 +178,7 @@ class StartQT4(QMainWindow):
|
||||||
hh.setStretchLastSection(True)
|
hh.setStretchLastSection(True)
|
||||||
|
|
||||||
# set all row heights
|
# set all row heights
|
||||||
nrows = len(self.imagelist)
|
nrows = len(imagelist)
|
||||||
for row in range(nrows):
|
for row in range(nrows):
|
||||||
tview.setRowHeight(row, 25)
|
tview.setRowHeight(row, 25)
|
||||||
|
|
||||||
|
|
@ -193,7 +187,17 @@ class StartQT4(QMainWindow):
|
||||||
|
|
||||||
# enable recompress button
|
# enable recompress button
|
||||||
self.enable_recompress()
|
self.enable_recompress()
|
||||||
|
"""
|
||||||
|
Helper functions
|
||||||
|
"""
|
||||||
|
def checkname(self, name):
|
||||||
|
"""Check if the file is a jpg or png."""
|
||||||
|
if path.splitext(str(name))[1].lower() in [".jpg", ".jpeg", ".png"]:
|
||||||
|
return True
|
||||||
|
|
||||||
|
def enable_recompress(self):
|
||||||
|
"""Enable the recompress button."""
|
||||||
|
self.ui.recompress.setEnabled(True)
|
||||||
|
|
||||||
class TriTableModel(QAbstractTableModel):
|
class TriTableModel(QAbstractTableModel):
|
||||||
|
|
||||||
|
|
@ -204,12 +208,12 @@ class TriTableModel(QAbstractTableModel):
|
||||||
tuple length has to match header length
|
tuple length has to match header length
|
||||||
"""
|
"""
|
||||||
QAbstractTableModel.__init__(self, parent, *args)
|
QAbstractTableModel.__init__(self, parent, *args)
|
||||||
self.imagelist = imagelist
|
imagelist = imagelist
|
||||||
self.header = header
|
self.header = header
|
||||||
|
|
||||||
def rowCount(self, parent):
|
def rowCount(self, parent):
|
||||||
"""Count the number of rows."""
|
"""Count the number of rows."""
|
||||||
return len(self.imagelist)
|
return len(imagelist)
|
||||||
|
|
||||||
def columnCount(self, parent):
|
def columnCount(self, parent):
|
||||||
"""Count the number of columns."""
|
"""Count the number of columns."""
|
||||||
|
|
@ -220,11 +224,11 @@ class TriTableModel(QAbstractTableModel):
|
||||||
if not index.isValid():
|
if not index.isValid():
|
||||||
return QVariant()
|
return QVariant()
|
||||||
elif role == Qt.DisplayRole:
|
elif role == Qt.DisplayRole:
|
||||||
data = self.imagelist[index.row()][index.column()]
|
data = imagelist[index.row()][index.column()]
|
||||||
return QVariant(data)
|
return QVariant(data)
|
||||||
elif index.column()==0 and role == Qt.DecorationRole:
|
elif index.column()==0 and role == Qt.DecorationRole:
|
||||||
# decorate column 0 with an icon of the image itself
|
# decorate column 0 with an icon of the image itself
|
||||||
f_icon = self.imagelist[index.row()][5]
|
f_icon = imagelist[index.row()][5]
|
||||||
return QVariant(f_icon)
|
return QVariant(f_icon)
|
||||||
else:
|
else:
|
||||||
return QVariant()
|
return QVariant()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue