docsetdialog.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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("Form layout")
  29. layout = QFormLayout()
  30. layout.addRow(QLabel("Page"))
  31. self.pw = QLineEdit(str(ds['pw']))
  32. self.pw.setFixedWidth(60)
  33. self.pw.setValidator(QIntValidator())
  34. self.pw.setMaxLength(5)
  35. layout.addRow(QLabel("Page Width (mm):"), self.pw)
  36. self.ph = QLineEdit(str(ds['ph']))
  37. self.ph.setFixedWidth(60)
  38. self.ph.setValidator(QIntValidator())
  39. self.ph.setMaxLength(5)
  40. layout.addRow(QLabel("Page Height (mm):"), self.ph)
  41. #
  42. line1 = QFrame()
  43. line1.setFrameShape(QFrame.HLine)
  44. line1.setFrameShadow(QFrame.Sunken)
  45. layout.addRow(line1)
  46. #
  47. self.mt = QLineEdit(str(ds['mt']))
  48. self.mt.setFixedWidth(60)
  49. self.mt.setValidator(QIntValidator())
  50. self.mt.setMaxLength(3)
  51. layout.addRow(QLabel("Margin Top (mm):"), self.mt)
  52. self.mb = QLineEdit(str(ds['mb']))
  53. self.mb.setFixedWidth(60)
  54. self.mb.setValidator(QIntValidator())
  55. self.mb.setMaxLength(3)
  56. layout.addRow(QLabel("Margin Bottom (mm):"), self.mb)
  57. self.mi = QLineEdit(str(ds['mi']))
  58. self.mi.setFixedWidth(60)
  59. self.mi.setValidator(QIntValidator())
  60. self.mi.setMaxLength(3)
  61. layout.addRow(QLabel("Margin inner (mm):"), self.mi)
  62. self.me = QLineEdit(str(ds['me']))
  63. self.me.setFixedWidth(60)
  64. self.me.setValidator(QIntValidator())
  65. self.me.setMaxLength(3)
  66. layout.addRow(QLabel("Margin external (mm):"), self.me)
  67. #
  68. line2 = QFrame()
  69. line2.setFrameShape(QFrame.HLine)
  70. line2.setFrameShadow(QFrame.Sunken)
  71. layout.addRow(line2)
  72. #
  73. self.cs = QLineEdit(str(ds['cs']))
  74. self.cs.setFixedWidth(60)
  75. self.cs.setValidator(QIntValidator())
  76. self.cs.setMaxLength(3)
  77. layout.addRow(QLabel("Crop size (mm):"), self.cs)
  78. self.bs = QLineEdit(str(ds['bs']))
  79. self.bs.setFixedWidth(60)
  80. self.bs.setValidator(QIntValidator())
  81. self.bs.setMaxLength(3)
  82. layout.addRow(QLabel("Bleed size (mm):"), self.bs)
  83. # # layout.addRow(QLabel("Country:"), QComboBox())
  84. # layout.addRow(QLabel("Age:"), QSpinBox())
  85. self.formGroupBox.setLayout(layout)