Describes minimum required functionality from SpeedButton control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class ISpeedButton :public virtual IControl
{
public:
virtual int getGroupIndex() = 0; // Return group index
virtual bool isDown() = 0; // Whether is down
virtual bool setGroupIndex(const int value) = 0; // Set group index
virtual bool setDown(const bool value) = 0; // Set whether is down
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/ISpeedButton.h |