xref: /haiku/src/preferences/input/KeyboardView.h (revision caed67a8cba83913b9c21ac2b06ebc6bd1cb3111)
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 <Bitmap.h>
17 #include <GroupView.h>
18 #include <InterfaceDefs.h>
19 #include <Slider.h>
20 #include <SupportDefs.h>
21 
22 
23 class KeyboardView : public BGroupView
24 {
25 public:
26 	KeyboardView();
27 	virtual ~KeyboardView();
28 	void	Draw(BRect frame);
29 
30 private:
31 	BBitmap		*fIconBitmap;
32 	BBitmap		*fClockBitmap;
33 	BSlider		*fDelaySlider;
34 	BSlider		*fRepeatSlider;
35 };
36 
37 #endif
38