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