src/eric7/QScintilla/Lexers/LexerPOV.py

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8881
54e42bc2437a
child 9221
bf71ee032bb4
equal deleted inserted replaced
9208:3fc8dfeb6ebe 9209:b99e7fd55fd3
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2007 - 2022 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module implementing a Povray lexer with some additional methods.
8 """
9
10 from PyQt6.Qsci import QsciLexerPOV
11
12 from .Lexer import Lexer
13 import Preferences
14
15
16 class LexerPOV(Lexer, QsciLexerPOV):
17 """
18 Subclass to implement some additional lexer dependant methods.
19 """
20 def __init__(self, parent=None):
21 """
22 Constructor
23
24 @param parent parent widget of this lexer
25 """
26 QsciLexerPOV.__init__(self, parent)
27 Lexer.__init__(self)
28
29 self.commentString = "//"
30 self.streamCommentString = {
31 'start': '/* ',
32 'end': ' */'
33 }
34 self.boxCommentString = {
35 'start': '/* ',
36 'middle': ' * ',
37 'end': ' */'
38 }
39
40 self.keywordSetDescriptions = [
41 self.tr("Language directives"),
42 self.tr("Objects & CSG & Appearance"),
43 self.tr("Types & Modifiers & Items"),
44 self.tr("Predefined Identifiers"),
45 self.tr("Predefined Functions"),
46 self.tr("User defined 1"),
47 self.tr("User defined 2"),
48 self.tr("User defined 3"),
49 ]
50
51 def initProperties(self):
52 """
53 Public slot to initialize the properties.
54 """
55 self.setFoldComments(Preferences.getEditor("PovFoldComment"))
56 self.setFoldDirectives(Preferences.getEditor("PovFoldDirectives"))
57 self.setFoldCompact(Preferences.getEditor("AllFoldCompact"))
58
59 def isCommentStyle(self, style):
60 """
61 Public method to check, if a style is a comment style.
62
63 @param style style to check (integer)
64 @return flag indicating a comment style (boolean)
65 """
66 return style in [QsciLexerPOV.Comment,
67 QsciLexerPOV.CommentLine]
68
69 def isStringStyle(self, style):
70 """
71 Public method to check, if a style is a string style.
72
73 @param style style to check (integer)
74 @return flag indicating a string style (boolean)
75 """
76 return style in [QsciLexerPOV.String,
77 QsciLexerPOV.UnclosedString]
78
79 def defaultKeywords(self, kwSet):
80 """
81 Public method to get the default keywords.
82
83 @param kwSet number of the keyword set (integer)
84 @return string giving the keywords (string) or None
85 """
86 return QsciLexerPOV.keywords(self, kwSet)

eric ide

mercurial