2005-11-16 20:25:58 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2004-2005, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Jérôme Duval
|
|
|
|
*/
|
|
|
|
#ifndef BOTTOMLINE_WINDOW_H
|
|
|
|
#define BOTTOMLINE_WINDOW_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "InputServer.h"
|
2005-01-26 02:42:59 +03:00
|
|
|
|
|
|
|
#include <Message.h>
|
|
|
|
#include <Window.h>
|
|
|
|
|
2005-11-16 20:25:58 +03:00
|
|
|
class BTextView;
|
|
|
|
|
2005-01-26 02:42:59 +03:00
|
|
|
|
2005-11-16 20:25:58 +03:00
|
|
|
class BottomlineWindow : public BWindow {
|
|
|
|
public:
|
|
|
|
BottomlineWindow();
|
|
|
|
virtual ~BottomlineWindow();
|
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
|
|
|
virtual bool QuitRequested();
|
|
|
|
|
|
|
|
void HandleInputMethodEvent(BMessage* event, EventList& newEvents);
|
|
|
|
|
|
|
|
private:
|
|
|
|
BTextView *fTextView;
|
|
|
|
};
|
2005-01-26 02:42:59 +03:00
|
|
|
|
2005-11-16 20:25:58 +03:00
|
|
|
#endif // BOTTOMLINE_WINDOW_H
|