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