00001 00005 class BtGuiOptionMenu : public virtual BtGuiWidget 00006 00007 { 00008 BtGuiLabel label_widget_; 00009 Handle(BtGuiVariable) variable_; 00010 public: 00011 BtGuiOptionMenu(const BtGuiTkInterpreter& interf, const String& name=""); 00012 BtGuiOptionMenu(const BtGuiTkInterpreter& interf, const BtGuiWidget& parent, 00013 const String& name=""); 00014 ~BtGuiOptionMenu(); 00015 00016 const BtGuiLabel& getLabelWidget() const; 00017 BtGuiLabel& getLabelWidget(); 00018 00019 virtual bool create(); 00020 00021 void setVariable (const BtGuiVariable& var); 00022 00023 String subwidget(const String& name); 00024 }; 00025 00026