Open In App

wxPython – PopStatusText() function in wx.StatusBar

Improve
Improve
Like Article
Like
Save
Share
Report

In this article we are going to learn about PopStatusText() function associated with wx.StatusBar class of wxPython. PopStatusText() function is simply used to restore the text to the value it had before the last call to PushStatusText .

Notice that if SetStatusText had been called in the meanwhile, PopStatusText will not change the text, i.e. it does not override explicit changes to status text but only restores the saved text if it hadn’t been changed since.

Syntax: wx.StatusBar.PopStatusText(self, field=0)

Parameters:

Parameter Input Type Description
field int Field Position starting from 0.

Coding Example:




import wx
  
  
class Example(wx.Frame):
  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
  
        self.InitUI()
  
    def InitUI(self):
  
        self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
        self.statusbar = wx.StatusBar()
        self.statusbar.Create(self, id = 1, style = wx.STB_DEFAULT_STYLE, 
                                                      name = "Status Bar")
        self.SetStatusBar(self.statusbar)
        self.SetSize((350, 250))
  
        self.statusbar.SetFieldsCount(2)
        self.statusbar.SetStatusWidths([150, 150])
        self.statusbar.SetStatusText("This is text after stack pop in field 1", 0)
        self.statusbar.SetStatusText("This is text after stack pop in field 2", 1)
        self.statusbar.SetStatusStyles(styles =[wx.SB_RAISED, wx.SB_SUNKEN])
          
        # PUSH TEXT IN STATUS TEXT STACK
        self.statusbar.PushStatusText(string ="This is pushed text for field 1", field = 0)
        self.statusbar.PushStatusText(string ="This is pushed text for field 2", field = 1)
          
        # POP TEXT IN STATUS TEXT STACK
        self.statusbar.PopStatusText(field = 0)
          
        self.statusbar.PopStatusText(field = 1)
        self.SetTitle('New Frame Title')
        self.Centre()
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()


Output Window:



Last Updated : 12 Jun, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads