def refreshLine(self, lineNum, display = True):
if(self.currentMode == self.PS_MODE_TERMINAL):
self.drawAutoText(self.terminalBuffer[lineNum], 10, lineNum*20 + 40, (255,255,255), display = display)
## Draw a labeled button on the screen (INTERNAL USE ONLY)
# @param self The object pointer.
# @param x The upper left x coordinate of the rectangle.
# @param y The upper left y coordinate of the rectangle.
# @param width The width of the button.
# @param height The height of the button.
# @param prefix The button images filename prefix. Optional, defaults to "btns_"
# @param text The button label. Defaults to "OK"
# @param display Choose to immediately push the drawing to the screen. Optional, defaults to True.
# @param align The alignment for the button's text label.
# @param image An optional image to be included on the button, should be 32x32.
# @param imageX The x-coordinate of the optional image icon.
# @param imageY The y-coordinate of the optional image icon.
评论列表
文章目录