#include <wx/statusbr.h>
A status bar pane data container used by wxStatusBar. 
- See also
 - wxStatusBar 
 
 
      
        
          | wxStatusBarPane::wxStatusBarPane  | 
          ( | 
          int  | 
          style = wxSB_NORMAL,  | 
        
        
           | 
           | 
          int  | 
          width = 0  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Constructs the pane with the given style and width. 
 
 
      
        
          | int wxStatusBarPane::GetStyle  | 
          ( | 
           | ) | 
           const | 
        
      
 
 
      
        
          | wxString wxStatusBarPane::GetText  | 
          ( | 
           | ) | 
           const | 
        
      
 
Returns the text currently shown in this pane. 
 
 
      
        
          | int wxStatusBarPane::GetWidth  | 
          ( | 
           | ) | 
           const | 
        
      
 
Returns the pane width; it maybe negative, indicating a variable-width field. 
 
 
      
        
          | bool wxStatusBarPane::IsEllipsized  | 
          ( | 
           | ) | 
           const | 
        
      
 
 
      
        
          | bool wxStatusBarPane::PopText  | 
          ( | 
           | ) | 
           | 
        
      
 
Restore the message saved by the last call to Push() (unless it was changed by an intervening call to SetText()) and return true if we really restored anything. 
 
 
      
        
          | bool wxStatusBarPane::PushText  | 
          ( | 
          const wxString &  | 
          text | ) | 
           | 
        
      
 
Save the existing text on top of a stack and make the new text current. 
Returns true if the text really changed. 
 
 
      
        
          | void wxStatusBarPane::SetIsEllipsized  | 
          ( | 
          bool  | 
          isEllipsized | ) | 
           | 
        
      
 
 
      
        
          | void wxStatusBarPane::SetStyle  | 
          ( | 
          int  | 
          style | ) | 
           | 
        
      
 
 
      
        
          | bool wxStatusBarPane::SetText  | 
          ( | 
          const wxString &  | 
          text | ) | 
           | 
        
      
 
Set text. 
Returns true if it changed or false if it was already set to this value. 
 
 
      
        
          | void wxStatusBarPane::SetWidth  | 
          ( | 
          int  | 
          width | ) | 
           |