git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3095 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
411 B
C++
22 lines
411 B
C++
#ifndef TERMINAL_VIEW_H
|
|
#define TERMINAL_VIEW_H
|
|
|
|
#include <File.h>
|
|
#include <TextView.h>
|
|
#include <DataIO.h>
|
|
|
|
class TerminalView : public BTextView {
|
|
public:
|
|
TerminalView(BRect viewframe, BRect textframe, BHandler *handler);
|
|
~TerminalView();
|
|
|
|
virtual void Select(int32 start, int32 finish);
|
|
|
|
private:
|
|
BHandler *fHandler;
|
|
BMessage *fChangeMessage;
|
|
BMessenger *fMessenger;
|
|
};
|
|
|
|
#endif // TERMINAL_VIEW_H
|