/* * Copyright 2019, Haiku, Inc. * Distributed under the terms of the MIT License. * * Author: * Preetpal Kaur */ #ifndef INPUT_H #define INPUT_H #include #include #include #include "MouseSettings.h" #include "InputMouse.h" #include "InputWindow.h" class SettingsView; class MouseSettings; class InputApplication : public BApplication { public: InputApplication(); void MessageReceived(BMessage* message); private: InputIcons fIcons; InputWindow* fWindow; }; #endif /* INPUT_H */