def CreateOutputWindow(self, st): ''' Create frame and text control. Append st (text) to output. Show the frame and bind the frame OnCloseButtton to the event. ''' # TBD - Under Construction. The class wxTextCtrl is not available. if not (self.ts_Frame is None): return try: self.ts_Frame = wxFrame( self.ts_Parent, id=-1, title=self.ts_Title, pos=wxPoint(self.ts_Rect.x, self.ts_Rect.y), size=wxSize(self.ts_Rect.width, self.ts_Rect.height), style=self.ts_Style, name=self.ts_Name) except Exception as frameError: self.logger.error( ' CreateOutputWindow: frameError. %s' % frameError) msg = 'CreateOutputWindow Frame Error: %s' % str(frameError) raise tse.ProgramException(tse.APPLICATION_TRAP, msg) if self.ts_Frame.display.HasColors: self.ts_Markup = wx.ThemeToUse['Stdio']['Markup']['DEFAULT'] else: self.ts_Markup = None try: self.ts_Text = wxTextCtrl( self.ts_Frame, id=-1, value=wx.EmptyString, pos=wxPoint( self.ts_ClientRect.x + self.ts_Margin.width, self.ts_ClientRect.y + self.ts_Margin.height), size=wxSize( self.ts_ClientRect.width - 2 * self.ts_Margin.width, self.ts_ClientRect.height - 2 * self.ts_Margin.height), style=0, # wx.TE_MULTILINE |wx.TE_READONLY, validator=wx.DefaultValidator, name=wx.TextCtrlNameStr) except Exception as textCtrError: self.logger.error( ' CreateOutputWindow: textCtlError. %s' % textCtrError) msg = 'CreateOutputWindow textCtr Error: %s' % str(textCtrError) raise tse.ProgramException(tse.APPLICATION_TRAP, msg) # Skip this since text has been pre-cached in self.write # before invocation of self.CreateOutputWindow. if False: self.ts_Text.AppendText(st) self.ts_Frame.Show(True)
def CreateOutputWindow(self, st): ''' Create frame and text control. Append st (text) to output. Show the frame and bind the frame OnCloseButtton to the event. ''' # TBD - Under Construction. The class wxTextCtrl is not available. if not (self.ts_Frame is None): return try: self.ts_Frame = wxFrame( self.ts_Parent, id=-1, title=self.ts_Title, pos=wxPoint(self.ts_Rect.x, self.ts_Rect.y), size=wxSize(self.ts_Rect.width, self.ts_Rect.height), style=self.ts_Style, name=self.ts_Name) except Exception, frameError: self.logger.error( ' CreateOutputWindow: frameError. %s' % frameError) msg = 'CreateOutputWindow Frame Error: %s' % str(frameError) raise tse.ProgramException(tse.APPLICATION_TRAP, msg)