1/*
2 * Copyright 2004-2006, the Haiku project. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors in chronological order:
6 *  mccall@digitalparadise.co.uk
7 *  J��r��me Duval
8 *  Marcus Overhagen
9 */
10
11
12#ifndef KEYBOARD_VIEW_H
13#define KEYBOARD_VIEW_H
14
15
16#include <Application.h>
17#include <GroupView.h>
18#include <InterfaceDefs.h>
19#include <Slider.h>
20#include <SupportDefs.h>
21
22
23class KeyboardView : public BGroupView
24{
25public:
26	KeyboardView();
27	virtual ~KeyboardView();
28	void	Draw(BRect frame);
29
30private:
31	BBitmap		*fIconBitmap;
32	BBitmap		*fClockBitmap;
33	BSlider		*fDelaySlider;
34	BSlider		*fRepeatSlider;
35};
36
37#endif
38