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;
    // Since 9.0.0 
    void ActivateFirstEnabledInput() override;
    CDialogBoxHotkeyList();
    CDialogBoxHotkeyList(IForm *parent);
    CDialogBoxHotkeyList(IControl *parent);
};
| Namespace: | nitisa::standard | 
| Include: | Standard/Forms/HotkeyList/DialogBoxHotkeyList.h |