mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 16:56:53 +08:00
22 lines
397 B
C++
22 lines
397 B
C++
#ifndef BLACKGUI_KEYBOARDKEYVIEW_H
|
|
#define BLACKGUI_KEYBOARDKEYVIEW_H
|
|
|
|
#include "viewbase.h"
|
|
#include "keyboardkeylistmodel.h"
|
|
|
|
namespace BlackGui
|
|
{
|
|
/*!
|
|
* \brief Keyboard key view
|
|
*/
|
|
class CKeyboardKeyView : public CViewBase<CKeyboardKeyListModel>
|
|
{
|
|
|
|
public:
|
|
|
|
//! Constructor
|
|
explicit CKeyboardKeyView(QWidget *parent = nullptr);
|
|
};
|
|
}
|
|
#endif // guard
|