]> git.tdb.fi Git - libs/gltk.git/blob - source/inputmethod.h
Add an input method subsystem
[libs/gltk.git] / source / inputmethod.h
1 #ifndef INPUTMETHOD_H_
2 #define INPUTMETHOD_H_
3
4 namespace Msp {
5 namespace GLtk {
6
7 class Root;
8
9 enum InputType
10 {
11         INPUT_NONE,
12         INPUT_TEXT
13 };
14
15 class InputMethod
16 {
17 protected:
18         Root &root;
19
20         InputMethod(Root &);
21 public:
22         virtual ~InputMethod() { }
23 };
24
25 } // namespace GLtk
26 } // namespace Msp
27
28 #endif