xref: /haiku/src/apps/haikudepot/ui/GeneralContentScrollView.h (revision 9e25244c5e9051f6cd333820d6332397361abd6c)
1 /*
2  * Copyright 2013, Stephan Aßmus <superstippi@gmx.de>.
3  * Copyright 2019-2022, Andrew Lindesay <apl@lindesay.co.nz>.
4  * All rights reserved. Distributed under the terms of the MIT License.
5  */
6 #ifndef GENERAL_CONTENT_SCROLL_VIEW_H
7 #define GENERAL_CONTENT_SCROLL_VIEW_H
8 
9 #include <ScrollView.h>
10 
11 
12 /*!	Layouts the scrollbar so it looks nice with no border and the
13 	document window look.
14 */
15 
16 class GeneralContentScrollView : public BScrollView {
17 public:
18 	GeneralContentScrollView(const char* name, BView* target);
19 
20 	virtual void DoLayout();
21 };
22 
23 #endif // GENERAL_CONTENT_SCROLL_VIEW_H
24