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