Describes minimum required functionality from HotKey control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IHotKey :public virtual IControl
{
public:
virtual Hotkey getHotKey() = 0; // Return hotkey
virtual bool setHotKey(const Hotkey &value) = 0; // Set hotkey. Hotkey.Down isn't used
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IHotKey.h |