tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / keyboard / KeyboardView.h
blob1d0e8b732586cd23eb29e47e3d40f87e2c0ebbb8
1 /*
2 * Copyright 2004-2006, the Haiku project. All rights reserved.
3 * Distributed under the terms of the Haiku License.
5 * Authors in chronological order:
6 * mccall@digitalparadise.co.uk
7 * Jérôme Duval
8 * Marcus Overhagen
9 */
10 #ifndef KEYBOARD_VIEW_H
11 #define KEYBOARD_VIEW_H
14 #include <GroupView.h>
15 #include <Slider.h>
16 #include <SupportDefs.h>
17 #include <InterfaceDefs.h>
18 #include <Application.h>
21 class KeyboardView : public BGroupView
23 public:
24 KeyboardView();
25 virtual ~KeyboardView();
26 void Draw(BRect frame);
28 private:
29 BBitmap *fIconBitmap;
30 BBitmap *fClockBitmap;
31 BSlider *fDelaySlider;
32 BSlider *fRepeatSlider;
35 #endif