mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
703f3717e2
Co-authored-by: LosFarmosCTL <80157503+LosFarmosCTL@users.noreply.github.com> Co-authored-by: Paweł <zneix@zneix.eu> Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com> Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
21 lines
411 B
C++
21 lines
411 B
C++
#pragma once
|
|
|
|
#include "widgets/helper/EditableModelView.hpp"
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
class HotkeyModel;
|
|
|
|
class KeyboardSettingsPage : public SettingsPage
|
|
{
|
|
public:
|
|
KeyboardSettingsPage();
|
|
|
|
private:
|
|
void tableCellClicked(const QModelIndex &clicked, EditableModelView *view,
|
|
HotkeyModel *model);
|
|
};
|
|
|
|
} // namespace chatterino
|