gigawidgets 0.3.55
A wxWidgets-style UI library for the Arduino Giga Display Shield.
 
Loading...
Searching...
No Matches
keyboard_layout.hpp
Go to the documentation of this file.
1
2#pragma once
3
4namespace ui {
5namespace layout {
6
17 virtual const char *row1(bool upper, bool alt) const = 0;
18
25 virtual const char *row2(bool upper, bool alt) const = 0;
26
33 virtual const char *row3(bool upper, bool alt) const = 0;
34};
35
36} // namespace layout
37} // namespace ui
A generic interface for keyboard layouts.
Definition keyboard_layout.hpp:10
virtual const char * row2(bool upper, bool alt) const =0
Get the second keyboard row.
virtual const char * row3(bool upper, bool alt) const =0
Get the third keyboard row.
virtual const char * row1(bool upper, bool alt) const =0
Get the first keyboard row.