1 // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 2 // 3 // Copyright (c) 2005, Haiku 4 // 5 // This software is part of the Haiku distribution and is covered 6 // by the Haiku license. 7 // 8 // 9 // File: TMWindow.h 10 // Author: Jérôme Duval 11 // Description: Input server bottomline window 12 // Created : January 24, 2005 13 // 14 // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 15 16 #ifndef BOTTOMLINEWINDOW_H 17 #define BOTTOMLINEWINDOW_H 18 19 #include <Message.h> 20 #include <TextView.h> 21 #include <Window.h> 22 23 class BottomlineWindow : public BWindow 24 { 25 public: 26 BottomlineWindow(const BFont *font); 27 ~BottomlineWindow(); 28 29 void MessageReceived(BMessage *msg); 30 virtual bool QuitRequested(); 31 32 void HandleInputMethodEvent(BMessage *msg, BList *list); 33 //private: 34 BTextView *fTextView; 35 }; 36 37 38 #endif //BOTTOMLINEWINDOW_H 39