00001 00005 class BtGuiComboBox : public virtual BtGuiWidget 00006 00007 { 00008 Handle(BtGuiVariable) variable_; 00009 00010 public: 00011 BtGuiComboBox(const BtGuiTkInterpreter& interf, const String& name=""); 00012 BtGuiComboBox(const BtGuiTkInterpreter& interf, const BtGuiWidget& parent, 00013 const String& name=""); 00014 ~BtGuiComboBox(); 00015 00016 virtual bool create(); 00017 00018 void setVariable (const BtGuiVariable& variable); 00019 }; 00020 00021