xref: /haiku/src/preferences/input/Input.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
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 
19 #include "MouseSettings.h"
20 #include "InputMouse.h"
21 #include "InputWindow.h"
22 
23 
24 class SettingsView;
25 class MouseSettings;
26 
27 class InputApplication : public BApplication {
28 public:
29 				InputApplication();
30 	void		MessageReceived(BMessage* message);
31 private:
32 	InputIcons	fIcons;
33 	InputWindow*	fWindow;
34 };
35 
36 #endif	/* INPUT_H */
37