design.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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. # @Filename: design.py
  7. # @Last modified by: bach
  8. # @Last modified time: 03-06-2017
  9. # @License: GPL-V3
  10. import os, re
  11. # sys,
  12. from PyQt5 import QtCore
  13. from PyQt5.QtCore import QUrl, QSettings, QSizeF
  14. from PyQt5.QtGui import QKeySequence, QFont
  15. from PyQt5.QtWidgets import QWidget, QTabWidget, QVBoxLayout, QHBoxLayout, QSplitter, QPlainTextEdit, QShortcut, QPushButton, QCheckBox, QSpinBox, QLabel
  16. from PyQt5.QtWebKit import QWebSettings
  17. from PyQt5.QtWebKitWidgets import QWebView, QWebInspector
  18. from PyQt5.QtPrintSupport import QPrintPreviewDialog, QPrinter
  19. from classes import highlighter
  20. # _ __ __ _ ___
  21. # | | / /__ / /_| | / (_)__ _ __
  22. # | | /| / / _ \/ __ \ | / / / _ \ | /| / /
  23. # | |/ |/ / __/ /_/ / |/ / / __/ |/ |/ /
  24. # |__/|__/\___/_.___/|___/_/\___/|__/|__/
  25. class WebkitView(QWebView):
  26. def __init__(self, parent, core):
  27. self.parent = parent
  28. self.core = core
  29. self.port = core.server.port
  30. self.view = QWebView.__init__(self, parent)
  31. self.setZoomFactor(1)
  32. self.load(QUrl('http://localhost:'+str(self.port)))
  33. self.settings().setAttribute(QWebSettings.DeveloperExtrasEnabled, True)
  34. # self.settings().setAttribute(QWebSettings.PluginsEnabled, True)
  35. self.initPDF()
  36. # self.mainframe = self.page.mainFrame()
  37. # print(self.mainframe)
  38. def initPDF(self):
  39. self.printer = QPrinter(QPrinter.HighResolution)
  40. self.printer.setFullPage(True)
  41. # self.printer.setPageMargins(0,0,0,0,QPrinter.Millimeter)
  42. self.printer.setFontEmbeddingEnabled(True)
  43. self.printer.setColorMode(QPrinter.Color)
  44. # TODO: set the page size and orientation from doc settings
  45. # (need to do doc settings before that)
  46. # self.printer.setPageSize(QPrinter.A4)
  47. self.printer.setPaperSize(QSizeF(210, 300), QPrinter.Millimeter)
  48. # self.printer.setOrientation(QPrinter.Portrait)
  49. self.printer.setOutputFormat(QPrinter.PdfFormat)
  50. self.printer.setCreator('Cascade')
  51. self.printer.setDocName(self.core.projectname)
  52. self.printer.setOutputFileName(self.core.projectname+".pdf")
  53. # self.setFixedWidth(1000)
  54. def ongenPDF(self):
  55. # QPrinter::Custom
  56. # dialog = QPrintPreviewDialog(self.printer)
  57. # dialog.setWindowState(Qt.WindowMaximized)
  58. # dialog.paintRequested.connect(self.print_)
  59. # dialog.setWindowFlags(Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowMinMaxButtonsHint | Qt.WindowCloseButtonHint | Qt.WindowContextHelpButtonHint)
  60. # dialog.exec()
  61. # TODO: open a dialogue to ask where to save the pdf
  62. # TODO: reload webview and wait for it before printing
  63. # TODO: addd a progress bar
  64. # self.webview.
  65. self.print_(self.printer)
  66. def refresh(self):
  67. self.initPDF()
  68. self.reload()
  69. def toggleDocClass(self, c="",a=True):
  70. if a :
  71. togg = "add"
  72. else :
  73. togg = "remove"
  74. command = """document.documentElement.classList."""+togg+"""('"""+c+"""')"""
  75. self.evaluateJS(command)
  76. def evaluateJS(self, command):
  77. self.page().mainFrame().evaluateJavaScript(command)
  78. # ____ __
  79. # / _/___ _________ ___ _____/ /_____ _____
  80. # / // __ \/ ___/ __ \/ _ \/ ___/ __/ __ \/ ___/
  81. # _/ // / / (__ ) /_/ / __/ /__/ /_/ /_/ / /
  82. # /___/_/ /_/____/ .___/\___/\___/\__/\____/_/
  83. # /_/
  84. class WebkitInspector(QWebInspector):
  85. def __init__(self, parent, webkitview):
  86. super(WebkitInspector, self).__init__(parent)
  87. self.webkitview = webkitview
  88. self.setPage(self.webkitview.page())
  89. self.showMaximized()
  90. # TODO: webkitinspector is disappearing when chaging tabs
  91. # ______ ______
  92. # /_ __/___ ____ / / __ )____ ______
  93. # / / / __ \/ __ \/ / __ / __ `/ ___/
  94. # / / / /_/ / /_/ / / /_/ / /_/ / /
  95. # /_/ \____/\____/_/_____/\__,_/_/
  96. class WebViewToolBar(QWidget):
  97. def __init__(self, parent):
  98. super(WebViewToolBar, self).__init__(parent)
  99. self.parent = parent
  100. font = QFont()
  101. # font.setFamily("Droid Sans Mono")
  102. # font.setFixedPitch(True)
  103. font.setPointSize(8)
  104. self.setFont(font)
  105. self.hbox = QHBoxLayout()
  106. self.hbox.setContentsMargins(0,0,0,0)
  107. self.preview = QCheckBox('Prev&iew', self)
  108. # self.preview.setShortcut('Ctrl+Shift+p')
  109. self.preview.clicked.connect(self.onPreview)
  110. self.hbox.addWidget(self.preview)
  111. self.debug = QCheckBox('Deb&ug', self)
  112. # self.debug.setShortcut('Ctrl+Shift+u')
  113. self.debug.clicked.connect(self.onDebug)
  114. self.hbox.addWidget(self.debug)
  115. self.grid = QCheckBox('&Grid', self)
  116. # self.grid.setShortcut('Ctrl+Shift+g')
  117. self.grid.clicked.connect(self.onGrid)
  118. self.hbox.addWidget(self.grid)
  119. # spread
  120. self.spread = QCheckBox('&Spread', self)
  121. # self.spread.setShortcut('Ctrl+Shift+g')
  122. self.spread.clicked.connect(self.onSpread)
  123. self.hbox.addWidget(self.spread)
  124. self.hbox.addStretch()
  125. # zoom
  126. self.hbox.addWidget(QLabel("Zoom:"))
  127. self.zoom = QSpinBox(self)
  128. # TODO: action
  129. self.hbox.addWidget(self.zoom)
  130. # page
  131. self.hbox.addWidget(QLabel("Page:"))
  132. self.page = QSpinBox(self)
  133. # TODO: action
  134. self.hbox.addWidget(self.page)
  135. self.addpage = QPushButton("&Add Page", self)
  136. # self.addpage.setShortcut('Ctrl+Shift+r')
  137. # TODO: how to define same shortcut in different places
  138. # self.addpage.setIcon(Icon(ico)))
  139. # self.addpage.clicked.connect(self.onAddPage)
  140. self.hbox.addWidget(self.addpage)
  141. self.hbox.addStretch()
  142. self.reload = QPushButton("&Reload", self)
  143. # self.reload.setShortcut('Ctrl+Shift+r')
  144. # TODO: how to define same shortcut in different places
  145. # self.reload.setIcon(Icon(ico)))
  146. self.reload.clicked.connect(self.onReload)
  147. self.hbox.addWidget(self.reload)
  148. self.genpdf = QPushButton("&PDF", self)
  149. # self.genpdf.setShortcut('Ctrl+Shift+r')
  150. # TODO: how to define same shortcut in different places
  151. # self.genpdf.setIcon(Icon(ico)))
  152. self.genpdf.clicked.connect(self.onGenPDF)
  153. self.hbox.addWidget(self.genpdf)
  154. self.setLayout(self.hbox)
  155. def onPreview(self):
  156. self.parent.webkitview.toggleDocClass('preview', self.preview.isChecked())
  157. def onDebug(self):
  158. self.parent.webkitview.toggleDocClass('debug', self.debug.isChecked())
  159. def onGrid(self):
  160. self.parent.webkitview.toggleDocClass('grid', self.grid.isChecked())
  161. def onSpread(self):
  162. self.parent.webkitview.toggleDocClass('spread', self.spread.isChecked())
  163. def onReload(self):
  164. print("onReload")
  165. # self.parent.webkitview.
  166. def onGenPDF(self):
  167. print("onGenPDF")
  168. self.parent.webkitview.ongenPDF()
  169. # ______ ___ __
  170. # / ____/___/ (_) /_____ _____
  171. # / __/ / __ / / __/ __ \/ ___/
  172. # / /___/ /_/ / / /_/ /_/ / /
  173. # /_____/\__,_/_/\__/\____/_/
  174. class CodeEditor(QPlainTextEdit):
  175. def __init__(self, core, tabs, file, mode):
  176. super(CodeEditor, self).__init__()
  177. self.core = core
  178. self.tabs = tabs
  179. self.file = file
  180. self.setText()
  181. self.setTabStopWidth(15)
  182. self.hl= highlighter.Highlighter(self.document(),mode)
  183. self.shortcut = QShortcut(QKeySequence("Ctrl+s"), self)
  184. self.shortcut.activated.connect(self.save)
  185. def setText(self):
  186. try:
  187. self.textChanged.disconnect(self.onTextChanged)
  188. except Exception as e:
  189. print(e)
  190. self.filepath = os.path.join(self.core.cwd,self.file)
  191. self.clear()
  192. self.insertPlainText(open(self.filepath, 'r').read())
  193. self.changed = False
  194. self.textChanged.connect(self.onTextChanged)
  195. font = QFont()
  196. font.setFamily("Droid Sans Mono")
  197. font.setFixedPitch(True)
  198. font.setPointSize(12)
  199. self.setFont(font)
  200. # self.highlighter = Highlighter(self.document())
  201. # https://pypi.python.org/pypi/QScintilla/2.9.2
  202. def onTextChanged(self):
  203. # print('textChanged')
  204. # print(self.toPlainText())
  205. # open(self.filepath, 'w').write(self.toPlainText())
  206. if not self.changed:
  207. self.changed = True
  208. i = self.tabs.currentIndex()
  209. self.tabs.setTabText(i, "* "+self.tabs.tabText(i))
  210. # TODO: indicate that webview needs to be reloaded
  211. def save(self):
  212. if self.changed:
  213. open(self.filepath, 'w').write(self.toPlainText())
  214. i = self.tabs.currentIndex()
  215. self.tabs.setTabText(i, re.sub(r'^\*\s', '', self.tabs.tabText(i)))
  216. self.changed = False
  217. # TODO: how to combine file save and project save
  218. class Editor(QWidget):
  219. def __init__(self, parent, core):
  220. super(Editor, self).__init__()
  221. self.core = core
  222. self.layout = QVBoxLayout(self)
  223. self.layout.setContentsMargins(0,0,0,0)
  224. # Initialize tab screen
  225. self.tabs = QTabWidget()
  226. self.scsstab = CodeEditor(core, self.tabs, 'assets/css/styles.scss', "scss")
  227. self.jstab = CodeEditor(core, self.tabs, 'assets/js/script.js', 'js')
  228. # Add tabs
  229. self.tabs.addTab(self.scsstab,"scss")
  230. self.tabs.addTab(self.jstab,"js")
  231. # Add tabs to widget
  232. self.layout.addWidget(self.tabs)
  233. self.setLayout(self.layout)
  234. def refresh(self):
  235. self.scsstab.setText()
  236. self.jstab.setText()
  237. # _____ __ __
  238. # / ___// /_____ ______/ /__
  239. # \__ \/ __/ __ `/ ___/ //_/
  240. # ___/ / /_/ /_/ / /__/ ,<
  241. # /____/\__/\__,_/\___/_/|_|
  242. class DesignStack(QWidget):
  243. def __init__(self, core):
  244. super(DesignStack, self).__init__()
  245. # self.grid = QGridLayout()
  246. self.hbox = QHBoxLayout()
  247. self.hbox.setContentsMargins(0,0,0,0)
  248. self.setLayout(self.hbox)
  249. self.webview = QWidget()
  250. self.webview.vbox = QVBoxLayout()
  251. self.webview.setLayout(self.webview.vbox)
  252. self.webview.vbox.setContentsMargins(0,0,0,0)
  253. self.webkitview = WebkitView(self, core)
  254. self.webkitinspector = WebkitInspector(self, self.webkitview)
  255. shortcut = QShortcut(self)
  256. shortcut.setKey("F12")
  257. shortcut.activated.connect(self.toggleInspector)
  258. self.webkitinspector.setVisible(False)
  259. self.webviewtoolbar = WebViewToolBar(self)
  260. self.webview.vbox.addWidget(self.webviewtoolbar)
  261. self.vsplitter = QSplitter(QtCore.Qt.Vertical)
  262. self.vsplitter.addWidget(self.webkitview)
  263. self.vsplitter.addWidget(self.webkitinspector)
  264. self.vsplitter.splitterMoved.connect(self.movedSplitter)
  265. self.webview.vbox.addWidget(self.vsplitter)
  266. self.hsplitter = QSplitter(QtCore.Qt.Horizontal)
  267. self.hsplitter.addWidget(self.webview)
  268. self.editor = Editor(self, core)
  269. self.hsplitter.addWidget(self.editor)
  270. self.hsplitter.splitterMoved.connect(self.movedSplitter)
  271. self.hbox.addWidget(self.hsplitter)
  272. self.restorePrefs()
  273. def toggleInspector(self):
  274. self.webkitinspector.setVisible(not self.webkitinspector.isVisible())
  275. def restorePrefs(self):
  276. settings = QSettings('FiguresLibres', 'Cascade')
  277. print(settings.value('design/vsplitter/sizes', self.vsplitter.sizes()))
  278. vals = settings.value('design/vsplitter/sizes', None)
  279. if vals:
  280. sizes = []
  281. for size in vals: sizes.append(int(size))
  282. self.vsplitter.setSizes(sizes)
  283. vals = settings.value('design/hsplitter/sizes', None)
  284. if vals:
  285. sizes = []
  286. for size in vals: sizes.append(int(size))
  287. self.hsplitter.setSizes(sizes)
  288. def movedSplitter(self):
  289. settings = QSettings('FiguresLibres', 'Cascade')
  290. # print(self.vsplitter.sizes())
  291. settings.setValue('design/vsplitter/sizes', self.vsplitter.sizes())
  292. settings.setValue('design/hsplitter/sizes', self.hsplitter.sizes())
  293. def refresh(self):
  294. self.editor.refresh()
  295. self.webkitview.refresh()