xref: /haiku/src/servers/input/BottomlineWindow.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /*
2  * Copyright 2004-2005, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jérôme Duval
7  */
8 #ifndef BOTTOMLINE_WINDOW_H
9 #define BOTTOMLINE_WINDOW_H
10 
11 
12 #include "InputServer.h"
13 
14 #include <Message.h>
15 #include <Window.h>
16 
17 class BTextView;
18 
19 
20 class BottomlineWindow : public BWindow {
21 	public:
22 		BottomlineWindow();
23 		virtual ~BottomlineWindow();
24 
25 		virtual void MessageReceived(BMessage* message);
26 		virtual bool QuitRequested();
27 
28 		void HandleInputMethodEvent(BMessage* event, EventList& newEvents);
29 
30 	private:
31 		BTextView *fTextView;
32 };
33 
34 #endif	// BOTTOMLINE_WINDOW_H
35