SettingsView.{cpp|h} - the former will only contain the view that shows
the mouse and its buttons, the latter will contain the rest.
Corrected license text and listed myself as one of the authors.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5952 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
723 B
C++
33 lines
723 B
C++
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
|
|
//
|
|
// Copyright (c) 2003, OpenBeOS
|
|
//
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//
|
|
//
|
|
// File: Mouse.h
|
|
// Authors: Jérôme Duval,
|
|
// Andrew McCall ([email protected])
|
|
// Axel Dörfler ([email protected])
|
|
// Description: Mouse Preferences
|
|
// Created: December 10, 2003
|
|
//
|
|
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
|
|
#ifndef MOUSE_H
|
|
#define MOUSE_H
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
|
|
class MouseApplication : public BApplication
|
|
{
|
|
public:
|
|
MouseApplication();
|
|
|
|
virtual void AboutRequested(void);
|
|
};
|
|
|
|
#endif /* MOUSE_H */
|