/* * Copyright 2013, Stephan Aßmus . * Copyright 2019-2022, Andrew Lindesay . * All rights reserved. Distributed under the terms of the MIT License. */ #ifndef GENERAL_CONTENT_SCROLL_VIEW_H #define GENERAL_CONTENT_SCROLL_VIEW_H #include /*! Layouts the scrollbar so it looks nice with no border and the document window look. */ class GeneralContentScrollView : public BScrollView { public: GeneralContentScrollView(const char* name, BView* target); virtual void DoLayout(); }; #endif // GENERAL_CONTENT_SCROLL_VIEW_H