git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
416 B
C++
33 lines
416 B
C++
/*
|
|
|
|
KeyboardView.h
|
|
|
|
*/
|
|
|
|
#ifndef KEYBOARD_VIEW_H
|
|
#define KEYBOARD_VIEW_H
|
|
|
|
|
|
#include <Box.h>
|
|
#include <Slider.h>
|
|
#include <SupportDefs.h>
|
|
#include <InterfaceDefs.h>
|
|
#include <Application.h>
|
|
|
|
class KeyboardView : public BBox
|
|
{
|
|
public:
|
|
typedef BBox inherited;
|
|
|
|
KeyboardView(BRect frame);
|
|
virtual void Draw(BRect frame);
|
|
|
|
private:
|
|
BBitmap *fIconBitmap;
|
|
BBitmap *fClockBitmap;
|
|
BBox *fBox;
|
|
|
|
};
|
|
|
|
#endif
|