BPS C++ API  2.24.4
bpskeyboard.h
Go to the documentation of this file.
1 
4 #ifndef BPSKEYBOARD_H
5 #define BPSKEYBOARD_H
6 
7 #include "bpsgui_global.h"
8 #include <QObject>
9 
16 {
17  Q_OBJECT
19 
20 public:
24  enum Type {
26  TypeAlphanumeric
27  };
28 
34  BpsKeyboard(Type aType, QObject* aParent = nullptr);
35 
36  virtual ~BpsKeyboard();
37 
38 }; // BpsKeyboard
39 
40 #endif // BPSKEYBOARD_H
#define BPS_PRIVATE(Class)
Declare pointer to private object in a public class.
Definition: bpsglobals.h:102
Public include file for BPS GUI library macros.
#define BPSGUI_EXPORT
Declare class an import from the shared library.
Definition: bpsgui_global.h:22
Base class for all virtual keyboards.
Definition: bpskeyboard.h:16
BpsKeyboard(Type aType, QObject *aParent=nullptr)
BpsKeyboard constructor.
Type
Keyboard type.
Definition: bpskeyboard.h:24
@ TypeNumeric
Numeric keyboard.
Definition: bpskeyboard.h:25