74    QAction* actionByTitle(
const QString& text, 
const QMenu* parentMenu);
 
   75    void setCurrentText(
const QString& newCurrentText);
 
   76    QString currentText()
const;
 
   78    void setCurrentIcon(
const QIcon& newCurrentIcon);
 
   79    QIcon currentIcon()
const;
 
   81    void addAction(QAction* action);
 
   82    void addMenuToCompleter(QMenu* menu);
 
   83    void addActionToCompleter(QAction* action);
 
   85    void removeAction(QAction* action);
 
   86    void removeMenuFromCompleter(QMenu* menu);
 
   87    void removeActionFromCompleter(QAction* action);
 
   90    void setComboBoxEditable(
bool editable = 
true);
 
   91    void onCompletion(
const QString& text);
 
   96    bool          IsDefaultTextCurrent;
 
   97    bool          IsDefaultIconCurrent;
 
   99    MenuComboBox::EditableBehavior EditBehavior;
 
  103    QPointer<QMenu>          CompleterMenu;
 
  104    QToolButton*             SearchButton;