vfs: check userland buffers before reading them.
[haiku.git] / src / servers / input / BottomlineWindow.h
blobef6093fc34eb03e2c417944c2b5aa92cda659ae6
1 /*
2 * Copyright 2004-2005, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Jérôme Duval
7 */
8 #ifndef BOTTOMLINE_WINDOW_H
9 #define BOTTOMLINE_WINDOW_H
12 #include "InputServer.h"
14 #include <Message.h>
15 #include <Window.h>
17 class BTextView;
20 class BottomlineWindow : public BWindow {
21 public:
22 BottomlineWindow();
23 virtual ~BottomlineWindow();
25 virtual void MessageReceived(BMessage* message);
26 virtual bool QuitRequested();
28 void HandleInputMethodEvent(BMessage* event, EventList& newEvents);
30 private:
31 BTextView *fTextView;
34 #endif // BOTTOMLINE_WINDOW_H