Chatterino
HotkeyCategory.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QString>
4 
5 namespace chatterino {
6 
7 // HotkeyCategory describes where the hotkeys action takes place.
8 // Each HotkeyCategory represents a widget that has customizable hotkeys. This
9 // is needed because more than one widget can have the same or similar action.
10 enum class HotkeyCategory {
12  Split,
13  SplitInput,
14  Window,
15 };
16 
18  QString name;
19  QString displayName;
20 };
21 
22 } // namespace chatterino
Definition: Application.cpp:48
Definition: HotkeyCategory.hpp:17
QString displayName
Definition: HotkeyCategory.hpp:19
QString name
Definition: HotkeyCategory.hpp:18
HotkeyCategory
Definition: HotkeyCategory.hpp:10