CFormHotkeyList



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;

    void ActivateFirstEnabledInput() override;

    CFormHotkeyList(IWindow *window, IRenderer *renderer);
};
Namespace: nitisa::standard
Include: Standard/Forms/HotkeyList/FormHotkeyList.h