Implements Hotkey list form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormHotkeyList :public virtual IFormHotkeyList, public CForm
{
public:
static const String ClassName; // Class name
int getHotkeyCount() override;
HOTKEY getHotkey(const int index) override;
bool AddHotkey(const HOTKEY &value) override;
bool DeleteHotkey(const int index) override;
bool DeleteHotkeys() override;
// Since 9.0.0
void ActivateFirstEnabledInput() override;
CFormHotkeyList(IWindow *window, IRenderer *renderer);
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/HotkeyList/FormHotkeyList.h |