finalcut/src/include/final/fscrollview.h

289 lines
11 KiB
C
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* fscrollview.h - Widget FScrollView (a scrolling area with on-demand *
* scroll bars) *
* *
* This file is part of the Final Cut widget toolkit *
* *
* Copyright 2017-2019 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
/* Inheritance diagram
*
*
*
* FTerm
*
*
*
*
* FVTerm FObject
*
*
*
*
*
*
* FWidget
*
*
*
*
* FScrollView
*
*/
#ifndef FSCROLLVIEW_H
#define FSCROLLVIEW_H
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
#error "Only <final/final.h> can be included directly."
#endif
2019-10-05 23:20:07 +02:00
#include <unordered_map>
2018-12-28 22:57:43 +01:00
#include "final/fscrollbar.h"
#include "final/fwidget.h"
namespace finalcut
{
//----------------------------------------------------------------------
// class FScrollView
//----------------------------------------------------------------------
class FScrollView : public FWidget
{
2017-09-11 03:06:02 +02:00
public:
// Using-declaration
using FWidget::setGeometry;
using FWidget::print;
2017-09-11 03:06:02 +02:00
// Constructor
explicit FScrollView (FWidget* = nullptr);
// Disable copy constructor
FScrollView (const FScrollView&) = delete;
2017-09-11 03:06:02 +02:00
// Destructor
virtual ~FScrollView();
// Disable assignment operator (=)
FScrollView& operator = (const FScrollView&) = delete;
2017-09-11 03:06:02 +02:00
// Accessors
2019-10-05 23:20:07 +02:00
const FString getClassName() const override;
2018-12-31 06:18:39 +01:00
std::size_t getViewportWidth() const;
std::size_t getViewportHeight() const;
const FSize getViewportSize();
2018-12-31 06:18:39 +01:00
std::size_t getScrollWidth() const;
std::size_t getScrollHeight() const;
const FSize getScrollSize() const;
2018-12-31 06:18:39 +01:00
const FPoint getScrollPos() const;
int getScrollX() const;
int getScrollY() const;
2017-09-11 03:06:02 +02:00
// Mutator
2018-12-31 06:18:39 +01:00
virtual void setScrollWidth (std::size_t);
virtual void setScrollHeight (std::size_t);
virtual void setScrollSize (const FSize&);
2019-08-06 23:45:28 +02:00
void setX (int, bool = true) override;
void setY (int, bool = true) override;
void setPos (const FPoint&, bool = true) override;
void setWidth (std::size_t, bool = true) override;
void setHeight (std::size_t, bool = true) override;
void setSize (const FSize&, bool = true) override;
void setGeometry ( const FPoint&, const FSize&
2018-12-31 06:18:39 +01:00
, bool = true ) override;
void setCursorPos (const FPoint&);
void setPrintPos (const FPoint&);
2018-12-31 06:18:39 +01:00
bool setViewportPrint (bool);
bool setViewportPrint();
bool unsetViewportPrint();
bool setBorder (bool);
bool setBorder();
bool unsetBorder();
void setHorizontalScrollBarMode (fc::scrollBarMode);
void setVerticalScrollBarMode (fc::scrollBarMode);
2017-09-11 03:06:02 +02:00
// Inquiries
2018-12-31 06:18:39 +01:00
bool hasBorder();
bool isViewportPrint();
2017-09-11 03:06:02 +02:00
2019-10-06 22:35:00 +02:00
// Methods
2019-08-06 23:45:28 +02:00
void clearArea (int = ' ') override;
2018-12-31 06:18:39 +01:00
void scrollToX (int);
void scrollToY (int);
void scrollTo (const FPoint&);
void scrollTo (int, int);
void scrollBy (int, int);
void print (const FPoint&) override;
2019-08-06 23:45:28 +02:00
void draw() override;
void drawBorder() override;
2017-09-11 03:06:02 +02:00
// Event handlers
2019-08-06 23:45:28 +02:00
void onKeyPress (FKeyEvent*) override;
void onWheel (FWheelEvent*) override;
void onFocusIn (FFocusEvent*) override;
void onChildFocusIn (FFocusEvent*) override;
void onChildFocusOut (FFocusEvent*) override;
2017-09-11 03:06:02 +02:00
protected:
// Using-declaration
using FVTerm::clearArea;
// Accessor
2019-10-08 04:37:19 +02:00
FTermArea* getPrintArea() override;
2017-09-11 03:06:02 +02:00
2019-10-06 22:35:00 +02:00
// Methods
2019-08-06 23:45:28 +02:00
void adjustSize() override;
2018-12-31 06:18:39 +01:00
void copy2area();
2017-09-11 03:06:02 +02:00
private:
2019-10-05 23:20:07 +02:00
// Typedefs
typedef std::unordered_map<int, std::function<void()>> keyMap;
2017-09-11 03:06:02 +02:00
// Constants
2018-12-26 23:41:49 +01:00
static constexpr int vertical_border_spacing = 2;
static constexpr int horizontal_border_spacing = 2;
2017-09-11 03:06:02 +02:00
// Accessors
2018-12-31 06:18:39 +01:00
FPoint getViewportCursorPos();
2017-09-11 03:06:02 +02:00
// Methods
2018-12-31 06:18:39 +01:00
void init (FWidget*);
2019-10-05 23:20:07 +02:00
void mapKeyFunctions();
void calculateScrollbarPos();
template<typename Callback>
2019-01-16 16:00:15 +01:00
void initScrollbar ( FScrollbarPtr&
, fc::orientation
, Callback );
2018-12-31 06:18:39 +01:00
void setHorizontalScrollBarVisibility();
void setVerticalScrollBarVisibility();
void setViewportCursor();
2017-09-11 03:06:02 +02:00
// Callback methods
2018-12-31 06:18:39 +01:00
void cb_VBarChange (FWidget*, FDataPtr);
void cb_HBarChange (FWidget*, FDataPtr);
2017-09-11 03:06:02 +02:00
// Data members
2019-10-05 23:20:07 +02:00
FRect scroll_geometry{1, 1, 1, 1};
FRect viewport_geometry{};
2019-10-08 04:37:19 +02:00
FTermArea* viewport{nullptr}; // virtual scroll content
2019-10-05 23:20:07 +02:00
FScrollbarPtr vbar{nullptr};
FScrollbarPtr hbar{nullptr};
keyMap key_map{};
uInt8 nf_offset{0};
bool border{true};
bool use_own_print_area{false};
bool update_scrollbar{true};
fc::scrollBarMode vMode{fc::Auto}; // fc:Auto, fc::Hidden or fc::Scroll
fc::scrollBarMode hMode{fc::Auto};
};
// FScrollView inline functions
//----------------------------------------------------------------------
2019-10-05 23:20:07 +02:00
inline const FString FScrollView::getClassName() const
{ return "FScrollView"; }
2017-01-22 23:04:40 +01:00
//----------------------------------------------------------------------
inline std::size_t FScrollView::getViewportWidth() const
{ return getWidth() - vertical_border_spacing - std::size_t(nf_offset); }
2017-01-22 23:04:40 +01:00
//----------------------------------------------------------------------
inline std::size_t FScrollView::getViewportHeight() const
2017-01-22 23:04:40 +01:00
{ return getHeight() - horizontal_border_spacing; }
//----------------------------------------------------------------------
inline const FSize FScrollView::getViewportSize()
{ return FSize(getViewportWidth(), getViewportHeight()); }
//----------------------------------------------------------------------
inline std::size_t FScrollView::getScrollWidth() const
{ return scroll_geometry.getWidth(); }
//----------------------------------------------------------------------
inline std::size_t FScrollView::getScrollHeight() const
{ return scroll_geometry.getHeight(); }
//----------------------------------------------------------------------
inline const FSize FScrollView::getScrollSize() const
{ return scroll_geometry.getSize(); }
//----------------------------------------------------------------------
inline const FPoint FScrollView::getScrollPos() const
{ return viewport_geometry.getPos(); }
//----------------------------------------------------------------------
inline int FScrollView::getScrollX() const
{ return viewport_geometry.getX(); }
//----------------------------------------------------------------------
inline int FScrollView::getScrollY() const
{ return viewport_geometry.getY(); }
//----------------------------------------------------------------------
inline bool FScrollView::setViewportPrint()
{ return setViewportPrint(true); }
//----------------------------------------------------------------------
inline bool FScrollView::unsetViewportPrint()
{ return setViewportPrint(false); }
//----------------------------------------------------------------------
inline bool FScrollView::setBorder()
{ return setBorder(true); }
//----------------------------------------------------------------------
inline bool FScrollView::unsetBorder()
{ return setBorder(false); }
//----------------------------------------------------------------------
inline bool FScrollView::hasBorder()
{ return border; }
//----------------------------------------------------------------------
inline bool FScrollView::isViewportPrint()
{ return ! use_own_print_area; }
//----------------------------------------------------------------------
2017-08-12 20:10:27 +02:00
inline void FScrollView::scrollTo (const FPoint& pos)
{ scrollTo(pos.getX(), pos.getY()); }
//----------------------------------------------------------------------
inline void FScrollView::print (const FPoint& pos)
{
if ( use_own_print_area )
FWidget::setPrintPos(pos);
else
setPrintPos(pos);
}
//----------------------------------------------------------------------
template<typename Callback>
inline void FScrollView::initScrollbar ( FScrollbarPtr& bar
, fc::orientation o
, Callback cb_handler )
{
finalcut::initScrollbar (bar, o, this, cb_handler);
2019-10-08 04:37:19 +02:00
FTermArea* area = getPrintArea();
bar->setPrintArea(area);
}
} // namespace finalcut
#endif // FSCROLLVIEW_H