I hope I found most of them. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32832 a95241bf-73f2-0310-859d-f6bbb57e9c96
39 lines
695 B
C++
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 */
|