◆ QStatusBar() [1/2]
◆ QStatusBar() [2/2]
      
        
          | QStatusBar | ( | long | handle | ) |  | 
      
 
 
◆ addPermanentWidget()
      
        
          | void addPermanentWidget | ( | @NotNilptr QWidget | widget, | 
        
          |  |  | int | stretch | 
        
          |  | ) |  |  | 
      
 
在文件 QStatusBar.xcs 第 34 行定义.
   34                                                                              {
   35            QtXnl.widget_set_intlongint_value(nativehandle, Constant.ADDPERWIDGET, widget.nativehandle, stretch, 0);
   36        }
 
 
◆ addWidget()
      
        
          | void addWidget | ( | @NotNilptr QWidget | widget, | 
        
          |  |  | int | stretch | 
        
          |  | ) |  |  | 
      
 
在文件 QStatusBar.xcs 第 28 行定义.
   28                                                                      {
   29            QtXnl.widget_set_intlongint_value(nativehandle, Constant.ADDWIDGET, widget.nativehandle, stretch, 0);
   30        }
 
 
◆ create() [1/2]
重载 QWidget .
在文件 QStatusBar.xcs 第 13 行定义.
   13                                     {
   14            nativehandle = QtXnl.createQObject(QType.qtStatusBar, 
this, 0);
 
   15            if (nativehandle == 0){
   16                return false;
   17            }
   18            return true;
   19        }
 
 
◆ create() [2/2]
  
  | 
        
          | bool create | ( | @NotNilptr QWidget | parent | ) |  |  | override | 
 
重载 QWidget .
在文件 QStatusBar.xcs 第 21 行定义.
   21                                                              {
   22            nativehandle = QtXnl.createQObject(QType.qtStatusBar, 
this, parent.nativehandle);
 
   23            if (nativehandle == 0){
   24                return false;
   25            }
   26            return true;
   27        }    
 
 
◆ currentMessage()
在文件 QStatusBar.xcs 第 49 行定义.
   49                                       {
   50            return (
String)QtXnl.core_getString(nativehandle, Constant.CURRENTMESSAGE);
 
   51        }
 
 
◆ insertPermanentWidget()
      
        
          | int insertPermanentWidget | ( | int | index, | 
        
          |  |  | @NotNilptr QWidget | widget, | 
        
          |  |  | int | stretch | 
        
          |  | ) |  |  | 
      
 
在文件 QStatusBar.xcs 第 37 行定义.
   37                                                                                           {
   38            return QtXnl.int_long_int_long_int_int(nativehandle, Constant.INSERTPERWIDGET, widget.nativehandle, stretch, index);
   39        }
 
 
◆ insertWidget()
      
        
          | int insertWidget | ( | int | index, | 
        
          |  |  | @NotNilptr QWidget | widget, | 
        
          |  |  | int | stretch | 
        
          |  | ) |  |  | 
      
 
在文件 QStatusBar.xcs 第 31 行定义.
   31                                                                                  {
   32            return QtXnl.int_long_int_long_int_int(nativehandle, Constant.INSERTWIDGET, widget.nativehandle, stretch, index);
   33        }
 
 
◆ isSizeGripEnabled()
      
        
          | bool isSizeGripEnabled | ( |  | ) |  | 
      
 
在文件 QStatusBar.xcs 第 46 行定义.
   46                                        {
   47            return QtXnl.widget_get_bool_value(nativehandle, Constant.SIZEGRIPENABLED);
   48        }
 
 
◆ removeWidget()
      
        
          | void removeWidget | ( | @NotNilptr QWidget | widget | ) |  | 
      
 
重载 QWidget .
在文件 QStatusBar.xcs 第 40 行定义.
   40                                                           {
   41            QtXnl.widget_set_native_value(nativehandle, Constant.REMOVEWIDGET, widget.nativehandle);
   42        }
 
 
◆ setSizeGripEnabled()
      
        
          | void setSizeGripEnabled | ( | bool | b | ) |  | 
      
 
在文件 QStatusBar.xcs 第 43 行定义.
   43                                             {
   44            QtXnl.widget_set_bool_value(nativehandle, Constant.SIZEGRIPENABLED, b);
   45        }
 
 
◆ showMessage()
      
        
          | void showMessage | ( | String | text | ) |  | 
      
 
在文件 QStatusBar.xcs 第 52 行定义.
   52                                            {
   53            QtXnl.widget_slot_string(nativehandle,Constant. SHOWMESSAGE, text);
   54        }