highlighter.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # -*- coding: utf-8 -*-
  2. import sys
  3. import re
  4. from PyQt5 import QtCore, QtGui
  5. from pygments import highlight
  6. from pygments.lexers import *
  7. from pygments.formatter import Formatter
  8. from pygments.styles import get_all_styles, get_style_by_name
  9. import time
  10. # Copyright (C) 2008 Christophe Kibleur <kib2@free.fr>
  11. #
  12. # This file is part of WikiParser (http://thewikiblog.appspot.com/).
  13. #
  14. def hex2QColor(c):
  15. r=int(c[0:2],16)
  16. g=int(c[2:4],16)
  17. b=int(c[4:6],16)
  18. return QtGui.QColor(r,g,b)
  19. class QFormatter(Formatter):
  20. def __init__(self, linenos=True, style="default"): #, style
  21. Formatter.__init__(self)
  22. self.data=[]
  23. self.style = get_style_by_name(style)
  24. self.linenos = linenos
  25. # styles = list(get_all_styles())
  26. # print(styles)
  27. # Create a dictionary of text styles, indexed
  28. # by pygments token names, containing QTextCharFormat
  29. # instances according to pygments' description
  30. # of each style
  31. self.styles={}
  32. for token, style in self.style:
  33. qtf=QtGui.QTextCharFormat()
  34. if style['color']:
  35. qtf.setForeground(hex2QColor(style['color']))
  36. if style['bgcolor']:
  37. qtf.setBackground(hex2QColor(style['bgcolor']))
  38. if style['bold']:
  39. qtf.setFontWeight(QtGui.QFont.Bold)
  40. if style['italic']:
  41. qtf.setFontItalic(True)
  42. if style['underline']:
  43. qtf.setFontUnderline(True)
  44. self.styles[str(token)]=qtf
  45. def format(self, tokensource, outfile):
  46. global styles
  47. # We ignore outfile, keep output in a buffer
  48. self.data=[]
  49. # Just store a list of styles, one for each character
  50. # in the input. Obviously a smarter thing with
  51. # offsets and lengths is a good idea!
  52. print(tokensource)
  53. for ttype, value in tokensource:
  54. l=len(value)
  55. t=str(ttype)
  56. self.data.extend([self.styles[t],]*l)
  57. class Highlighter(QtGui.QSyntaxHighlighter):
  58. def __init__(self, parent, mode):
  59. QtGui.QSyntaxHighlighter.__init__(self, parent)
  60. self.tstamp=time.time()
  61. # Keep the formatter and lexer, initializing them
  62. # may be costly.
  63. if not mode == "md":
  64. self.formatter=QFormatter(linenos=True, style="monokai-hcb")
  65. else:
  66. self.formatter=QFormatter(linenos=False, style="github")
  67. self.lexer=get_lexer_by_name(mode)
  68. def highlightBlock(self, text):
  69. """Takes a block, applies format to the document.
  70. according to what's in it.
  71. """
  72. # I need to know where in the document we are,
  73. # because our formatting info is global to
  74. # the document
  75. cb = self.currentBlock()
  76. p = cb.position()
  77. # The \n is not really needed, but sometimes
  78. # you are in an empty last block, so your position is
  79. # **after** the end of the document.
  80. text=str(self.document().toPlainText())+'\n'
  81. # Yes, re-highlight the whole document.
  82. # There **must** be some optimizacion possibilities
  83. # but it seems fast enough.
  84. highlight(text,self.lexer,self.formatter)
  85. # Just apply the formatting to this block.
  86. # For titles, it may be necessary to backtrack
  87. # and format a couple of blocks **earlier**.
  88. for i in range(len(str(text))):
  89. try:
  90. self.setFormat(i,1,self.formatter.data[p+i])
  91. except IndexError:
  92. pass
  93. # I may need to do something about this being called
  94. # too quickly.
  95. self.tstamp=time.time()
  96. # if __name__ == "__main__":
  97. # app = QtGui.QApplication(sys.argv)
  98. #
  99. # rst = QtGui.QPlainTextEdit()
  100. # rst.setWindowTitle('reSt')
  101. # hl=Highlighter(rst.document(),"rest")
  102. # rst.show()
  103. #
  104. # python = QtGui.QPlainTextEdit()
  105. # python.setWindowTitle('python')
  106. # hl=Highlighter(python.document(),"python")
  107. # python.show()
  108. #
  109. # sys.exit(app.exec_())