Add: some code styling
This commit is contained in:
parent
1608f10fbd
commit
83251909b3
@ -16,10 +16,10 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
from PyQt4 import QtGui, QtCore
|
from PyQt4 import QtGui, QtCore
|
||||||
from image import ImageFlags
|
|
||||||
|
|
||||||
|
|
||||||
|
from image import ImageFlags
|
||||||
import cbz
|
import cbz
|
||||||
import image
|
import image
|
||||||
import pdfimage
|
import pdfimage
|
||||||
@ -121,7 +121,6 @@ class DialogConvert(QtGui.QProgressDialog):
|
|||||||
archive = self.archive
|
archive = self.archive
|
||||||
pdf = self.pdf
|
pdf = self.pdf
|
||||||
|
|
||||||
|
|
||||||
# Maybe the user ask for a split, but the picture is not a large one, so skip
|
# Maybe the user ask for a split, but the picture is not a large one, so skip
|
||||||
# it but only for this picture
|
# it but only for this picture
|
||||||
if (flags & ImageFlags.Split) or (flags & ImageFlags.SplitInverse):
|
if (flags & ImageFlags.Split) or (flags & ImageFlags.SplitInverse):
|
||||||
|
@ -35,6 +35,7 @@ class DialogOptions(QtGui.QDialog):
|
|||||||
self.moveDialogToOptions()
|
self.moveDialogToOptions()
|
||||||
|
|
||||||
|
|
||||||
|
# Get options from current book (like a loaded one) and set the dialog values
|
||||||
def moveOptionsToDialog(self):
|
def moveOptionsToDialog(self):
|
||||||
self.lineEditTitle.setText(self.book.title or 'Untitled')
|
self.lineEditTitle.setText(self.book.title or 'Untitled')
|
||||||
self.comboBoxDevice.setCurrentIndex(max(self.comboBoxDevice.findText(self.book.device), 0))
|
self.comboBoxDevice.setCurrentIndex(max(self.comboBoxDevice.findText(self.book.device), 0))
|
||||||
@ -47,12 +48,15 @@ class DialogOptions(QtGui.QDialog):
|
|||||||
self.checkboxFrame.setChecked(self.book.imageFlags & ImageFlags.Frame)
|
self.checkboxFrame.setChecked(self.book.imageFlags & ImageFlags.Frame)
|
||||||
|
|
||||||
|
|
||||||
|
# Save parameters set on the dialogs to the book object if need
|
||||||
def moveDialogToOptions(self):
|
def moveDialogToOptions(self):
|
||||||
|
# First get dialog values
|
||||||
title = self.lineEditTitle.text()
|
title = self.lineEditTitle.text()
|
||||||
device = self.comboBoxDevice.currentText()
|
device = self.comboBoxDevice.currentText()
|
||||||
outputFormat = self.comboBoxFormat.currentText()
|
outputFormat = self.comboBoxFormat.currentText()
|
||||||
overwrite = self.checkboxOverwrite.isChecked()
|
overwrite = self.checkboxOverwrite.isChecked()
|
||||||
|
|
||||||
|
# Now compute flags
|
||||||
imageFlags = 0
|
imageFlags = 0
|
||||||
if self.checkboxOrient.isChecked():
|
if self.checkboxOrient.isChecked():
|
||||||
imageFlags |= ImageFlags.Orient
|
imageFlags |= ImageFlags.Orient
|
||||||
@ -69,6 +73,9 @@ class DialogOptions(QtGui.QDialog):
|
|||||||
if self.checkboxSplitInverse.isChecked():
|
if self.checkboxSplitInverse.isChecked():
|
||||||
imageFlags |= ImageFlags.SplitInverse
|
imageFlags |= ImageFlags.SplitInverse
|
||||||
|
|
||||||
|
# If we did modified a value, update the book
|
||||||
|
# and only if we did change something to not
|
||||||
|
# warn for nothing the user
|
||||||
modified = (
|
modified = (
|
||||||
self.book.title != title or
|
self.book.title != title or
|
||||||
self.book.device != device or
|
self.book.device != device or
|
||||||
|
Loading…
Reference in New Issue
Block a user