44    void hideTab( QWidget *tab );
 
   50    void showTab( QWidget *tab );
 
   56    void setTabVisible( QWidget *tab, 
bool visible );
 
   64    int realTabIndex( QWidget *widget );
 
   72    void tabInserted( 
int index ) 
override;
 
   80    void tabRemoved( 
int index ) 
override;
 
   89    void synchronizeIndexes();
 
   93        TabInformation( QWidget *wdg, 
const QString &lbl )
 
   98        TabInformation() = 
default;
 
  100        bool operator==( 
const TabInformation &other ) 
const;
 
  101        bool operator!=( 
const TabInformation &other ) 
const;
 
  103        int sourceIndex = -1;
 
  104        QWidget *widget = 
nullptr;
 
  109    TabInformation tabInfo( QWidget *widget );
 
  111    QList<TabInformation> mTabs;
 
  112    bool mSetTabVisibleFlag = 
false;
 
  113    QgsTabBarProxyStyle *mTabBarStyle = 
nullptr;