Class: ewol::key::Special


Constructor and Destructor:

+        Special      (void);

Synopsis:

+  bool  getCapsLock  (void);
+ void setCapsLock (bool _value);
+ bool getShift (void);
+ void setShift (bool _value);
+ bool getCtrl (void);
+ void setCtrl (bool _value);
+ bool getMeta (void);
+ void setMeta (bool _value);
+ bool getAlt (void);
+ void setAlt (bool _value);
+ bool getAltGr (void);
+ void setAltGr (bool _value);
+ bool getNumLock (void);
+ void setNumLock (bool _value);
+ bool getInsert (void);
+ void setInsert (bool _value);

Description:

/** * @brief This class consider generic special keyborad key (insert, control, shift ...) */

Detail:

ewol::key::Special ()

Special(void);

Main constructor


getCapsLock ()

bool getCapsLock(void);

get the current CapLock Status


setCapsLock ()

void setCapsLock(bool _value);

set the current CapLock Status


getShift ()

bool getShift(void);

Get the current Shift key status


setShift ()

void setShift(bool _value);

Set the current Shift key status


getCtrl ()

bool getCtrl(void);

Get the Current Control key status


setCtrl ()

void setCtrl(bool _value);

Set the Current Control key status


getMeta ()

bool getMeta(void);

Get the current Meta key status (also named windows or apple key)


setMeta ()

void setMeta(bool _value);

Set the current Meta key status (also named windows or apple key)


getAlt ()

bool getAlt(void);

Get the current Alt key status


setAlt ()

void setAlt(bool _value);

Set the current Alt key status


getAltGr ()

bool getAltGr(void);

Get the current Alt-Gr key status


setAltGr ()

void setAltGr(bool _value);

Set the current Alt-Gr key status


getNumLock ()

bool getNumLock(void);

Get the current Ver-num key status


setNumLock ()

void setNumLock(bool _value);

Set the current Ver-num key status


getInsert ()

bool getInsert(void);

Get the current Intert key status


setInsert ()

void setInsert(bool _value);

Set the current Intert key status