27 """ |
27 """ |
28 QsciLexerSQL.__init__(self, parent) |
28 QsciLexerSQL.__init__(self, parent) |
29 Lexer.__init__(self) |
29 Lexer.__init__(self) |
30 |
30 |
31 self.commentString = "--" |
31 self.commentString = "--" |
|
32 |
|
33 self.keywordSetDescriptions = [ |
|
34 self.tr("Keywords"), |
|
35 self.tr("Database Objects"), |
|
36 self.tr("PLDoc"), |
|
37 self.tr("SQL*Plus"), |
|
38 self.tr("Standard Packages"), |
|
39 self.tr("User defined 1"), |
|
40 self.tr("User defined 2"), |
|
41 self.tr("User defined 3"), |
|
42 ] |
32 |
43 |
33 def initProperties(self): |
44 def initProperties(self): |
34 """ |
45 """ |
35 Public slot to initialize the properties. |
46 Public slot to initialize the properties. |
36 """ |
47 """ |