Files
haiku-beta6/src/preferences/mouse/MouseWindow.h
T
Fredrik Modeen e8f87bad4c Code style changes and License/Copyright fixes.
I hope I found most of them.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32832 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-08-30 14:03:37 +00:00

39 lines
695 B
C++

/*
* Copyright 2003-2009 Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Jérôme Duval,
* Axel Dörfler ([email protected])
* Andrew McCall ([email protected])
*/
#ifndef MOUSE_WINDOW_H
#define MOUSE_WINDOW_H
#include <Window.h>
#include <Button.h>
#include "MouseSettings.h"
class SettingsView;
class MouseWindow : public BWindow {
public:
MouseWindow(BRect rect);
virtual bool QuitRequested();
virtual void MessageReceived(BMessage *message);
private:
MouseSettings fSettings;
BButton *fDefaultsButton;
BButton *fRevertButton;
SettingsView *fSettingsView;
};
#endif /* MOUSE_WINDOW_H */