docsetdialog.py 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # @Author: Bachir Soussi Chiadmi <bach>
  4. # @Date: 23-05-2017
  5. # @Email: bachir@figureslibres.io
  6. # @Last modified by: bach
  7. # @Last modified time: 21-04-2017
  8. # @License: GPL-V3
  9. import os
  10. # from PyQt5.QtCore import QLine
  11. from PyQt5.QtGui import QIcon, QIntValidator
  12. from PyQt5.QtWidgets import QWidget, QLabel, QDialog, QGroupBox, QDialogButtonBox, QVBoxLayout, QFormLayout, QLineEdit, QComboBox, QSpinBox, QFrame
  13. class DocsetDialog(QDialog):
  14. def __init__(self, parent):
  15. super(DocsetDialog, self).__init__(parent)
  16. self.parent = parent
  17. self.createFormGroupBox()
  18. buttonBox = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel)
  19. buttonBox.accepted.connect(self.accept)
  20. buttonBox.rejected.connect(self.reject)
  21. mainLayout = QVBoxLayout()
  22. mainLayout.addWidget(self.formGroupBox)
  23. mainLayout.addWidget(buttonBox)
  24. self.setLayout(mainLayout)
  25. self.setWindowTitle("Doc settings")
  26. def createFormGroupBox(self):
  27. ds = self.parent.core.docsettings
  28. self.formGroupBox = QGroupBox()
  29. layout = QFormLayout()
  30. self.pw = FormLineEdit(str(ds['pw']))
  31. layout.addRow(QLabel("Page Width (mm):"), self.pw)
  32. self.ph = FormLineEdit(str(ds['ph']))
  33. layout.addRow(QLabel("Page Height (mm):"), self.ph)
  34. #
  35. layout.addRow(Line(self))
  36. #
  37. self.mt = FormLineEdit(str(ds['mt']),3)
  38. layout.addRow(QLabel("Margin Top (mm):"), self.mt)
  39. self.mb = FormLineEdit(str(ds['mb']),3)
  40. layout.addRow(QLabel("Margin Bottom (mm):"), self.mb)
  41. self.mi = FormLineEdit(str(ds['mi']),3)
  42. layout.addRow(QLabel("Margin inner (mm):"), self.mi)
  43. self.me = FormLineEdit(str(ds['me']),3)
  44. layout.addRow(QLabel("Margin external (mm):"), self.me)
  45. #
  46. layout.addRow(Line(self))
  47. #
  48. self.cs = FormLineEdit(str(ds['cs']),3)
  49. layout.addRow(QLabel("Crop size (mm):"), self.cs)
  50. self.bs = FormLineEdit(str(ds['bs']),3)
  51. layout.addRow(QLabel("Bleed size (mm):"), self.bs)
  52. #
  53. layout.addRow(Line(self))
  54. #
  55. self.cn = FormLineEdit(str(ds['cn']),2,True)
  56. layout.addRow(QLabel("Columns number:"), self.cn)
  57. self.cg = FormLineEdit(str(ds['cg']),2)
  58. layout.addRow(QLabel("Columns gutters:"), self.cg)
  59. #
  60. self.rn = FormLineEdit(str(ds['rn']),2,True)
  61. layout.addRow(QLabel("Rows number:"), self.rn)
  62. self.rg = FormLineEdit(str(ds['rg']),2)
  63. layout.addRow(QLabel("Rows gutters:"), self.rg)
  64. #
  65. layout.addRow(Line(self))
  66. #
  67. self.lh = FormLineEdit(str(ds['lh']),2,True)
  68. layout.addRow(QLabel("Line height:"), self.lh)
  69. self.formGroupBox.setLayout(layout)
  70. class FormLineEdit(QLineEdit):
  71. def __init__(self, parent, ml=5, int=False, mw=60):
  72. super(FormLineEdit, self).__init__(parent)
  73. self.setFixedWidth(mw)
  74. self.setMaxLength(ml)
  75. if int:
  76. self.setValidator(QIntValidator())
  77. else:
  78. # TODO: set float validator
  79. self.setValidator(QIntValidator())
  80. class Line(QFrame):
  81. def __init__(self, parent):
  82. super(Line, self).__init__(parent)
  83. self.setFrameShape(QFrame.HLine)
  84. self.setFrameShadow(QFrame.Sunken)