CDialogBoxHotkeyList



Implements Hotkey list form as dialog box.

You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.

class CDialogBoxHotkeyList :public virtual IFormHotkeyList, public IDialogBoxHotkeyListProto
{
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;

    CDialogBoxHotkeyList();
    CDialogBoxHotkeyList(IForm *parent);
    CDialogBoxHotkeyList(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/HotkeyList/DialogBoxHotkeyList.h