xref: /haiku/src/apps/terminal/TermScrollView.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef TERM_SCROLL_VIEW_H
6 #define TERM_SCROLL_VIEW_H
7 
8 #include <ScrollView.h>
9 
10 
11 class TermScrollView : public BScrollView {
12 public:
13 								TermScrollView(const char* name, BView* child,
14 									BView* target, bool overlapTop,
15 									uint32 resizingMode = B_FOLLOW_ALL);
16 	virtual						~TermScrollView();
17 };
18 
19 
20 #endif	// TERM_SCROLL_VIEW_H
21