84 |
84 |
85 @param editor reference to the editor to work on |
85 @param editor reference to the editor to work on |
86 @type Editor |
86 @type Editor |
87 """ |
87 """ |
88 self.__insertMarkup("del", editor) |
88 self.__insertMarkup("del", editor) |
|
89 |
|
90 def hasUnderline(self): |
|
91 """ |
|
92 Public method to indicate the availability of underline markup. |
|
93 |
|
94 @return flag indicating the availability of underline markup |
|
95 @rtype bool |
|
96 """ |
|
97 return True |
|
98 |
|
99 def underline(self, editor): |
|
100 """ |
|
101 Public method to generate underline text. |
|
102 |
|
103 @param editor reference to the editor to work on |
|
104 @type Editor |
|
105 """ |
|
106 self.__insertMarkup("u", editor) |
89 |
107 |
90 def headerLevels(self): |
108 def headerLevels(self): |
91 """ |
109 """ |
92 Public method to determine the available header levels. |
110 Public method to determine the available header levels. |
93 |
111 |