xref: /haiku/src/preferences/input/Input.h (revision 909af08f4328301fbdef1ffb41f566c3b5bec0c7)
1 /*
2  * Copyright 2019, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Author:
6  *		Preetpal Kaur <preetpalok123@gmail.com>
7  */
8 
9 
10 #ifndef INPUT_H
11 #define INPUT_H
12 
13 
14 #include <Application.h>
15 #include <Catalog.h>
16 #include <Locale.h>
17 
18 #include "InputIcons.h"
19 #include "InputWindow.h"
20 
21 
22 class InputApplication : public BApplication {
23 public:
24 				InputApplication();
25 	void		MessageReceived(BMessage* message);
26 private:
27 	InputIcons	fIcons;
28 	InputWindow*	fWindow;
29 };
30 
31 #endif	/* INPUT_H */
32