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 *
|
|
|
|
* *
|
2019-01-03 07:36:18 +01:00
|
|
|
* 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/>. *
|
|
|
|
***********************************************************************/
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2017-10-02 07:32:33 +02:00
|
|
|
/* Inheritance diagram
|
|
|
|
* ═══════════════════
|
|
|
|
*
|
2017-10-29 14:27:50 +01:00
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FTerm ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲
|
|
|
|
* │
|
2017-10-02 07:32:33 +02:00
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
|
2017-10-29 14:27:50 +01:00
|
|
|
* ▕ FVTerm ▏ ▕ FObject ▏
|
2017-10-02 07:32:33 +02:00
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲ ▲
|
|
|
|
* │ │
|
|
|
|
* └─────┬─────┘
|
|
|
|
* │
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FWidget ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲
|
|
|
|
* │
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FScrollView ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▏
|
|
|
|
*/
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#ifndef FSCROLLVIEW_H
|
|
|
|
#define FSCROLLVIEW_H
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2017-10-31 00:41:59 +01:00
|
|
|
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
|
|
|
|
#error "Only <final/final.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2018-12-28 22:57:43 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/fscrollbar.h"
|
|
|
|
#include "final/fwidget.h"
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
namespace finalcut
|
|
|
|
{
|
2017-01-02 08:07:46 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FScrollView
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class FScrollView : public FWidget
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Using-declaration
|
|
|
|
using FWidget::setGeometry;
|
2019-08-18 21:36:10 +02:00
|
|
|
using FWidget::print;
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Constructor
|
2018-12-10 01:48:26 +01:00
|
|
|
explicit FScrollView (FWidget* = nullptr);
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
// Disable copy constructor
|
|
|
|
FScrollView (const FScrollView&) = delete;
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Destructor
|
|
|
|
virtual ~FScrollView();
|
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
// Disable assignment operator (=)
|
|
|
|
FScrollView& operator = (const FScrollView&) = delete;
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Accessors
|
2019-08-06 23:45:28 +02:00
|
|
|
const char* getClassName() const override;
|
2018-12-31 06:18:39 +01:00
|
|
|
std::size_t getViewportWidth() const;
|
|
|
|
std::size_t getViewportHeight() const;
|
2019-01-21 03:42:18 +01:00
|
|
|
const FSize getViewportSize();
|
2018-12-31 06:18:39 +01:00
|
|
|
std::size_t getScrollWidth() const;
|
|
|
|
std::size_t getScrollHeight() const;
|
2019-01-21 03:42:18 +01:00
|
|
|
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);
|
2019-01-21 03:42:18 +01:00
|
|
|
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;
|
2019-01-21 03:42:18 +01:00
|
|
|
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
|
|
|
|
|
|
|
// Method
|
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);
|
2019-08-18 21:36:10 +02:00
|
|
|
void print (const FPoint&) override;
|
2019-08-06 23:45:28 +02:00
|
|
|
void draw() override;
|
2019-08-11 20:07:39 +02:00
|
|
|
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-08-06 23:45:28 +02:00
|
|
|
term_area* getPrintArea() override;
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Method
|
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:
|
2018-12-20 01:41:04 +01:00
|
|
|
// Typedef
|
|
|
|
typedef std::shared_ptr<FScrollbar> FScrollbarPtr;
|
2019-01-16 16:00:15 +01:00
|
|
|
typedef void (FScrollView::*FScrollViewCallback)(FWidget*, FDataPtr);
|
2018-12-20 01:41:04 +01:00
|
|
|
|
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-01-16 16:00:15 +01:00
|
|
|
void initScrollbar ( FScrollbarPtr&
|
|
|
|
, fc::orientation
|
|
|
|
, FScrollViewCallback );
|
2018-12-31 06:18:39 +01:00
|
|
|
void calculateScrollbarPos();
|
|
|
|
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
|
|
|
|
2019-09-04 23:57:31 +02:00
|
|
|
// Data members
|
2018-12-03 03:22:36 +01:00
|
|
|
FRect scroll_geometry{1, 1, 1, 1};
|
|
|
|
FRect viewport_geometry{};
|
2018-12-10 01:48:26 +01:00
|
|
|
term_area* viewport{nullptr}; // virtual scroll content
|
2018-12-20 01:41:04 +01:00
|
|
|
FScrollbarPtr vbar{nullptr};
|
|
|
|
FScrollbarPtr hbar{nullptr};
|
2018-12-03 03:22:36 +01:00
|
|
|
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};
|
2017-01-02 08:07:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// FScrollView inline functions
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FScrollView::getClassName() const
|
|
|
|
{ return "FScrollView"; }
|
|
|
|
|
2017-01-22 23:04:40 +01:00
|
|
|
//----------------------------------------------------------------------
|
2018-10-14 06:25:33 +02: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
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-10-14 06:25:33 +02:00
|
|
|
inline std::size_t FScrollView::getViewportHeight() const
|
2017-01-22 23:04:40 +01:00
|
|
|
{ return getHeight() - horizontal_border_spacing; }
|
|
|
|
|
2019-01-21 03:42:18 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const FSize FScrollView::getViewportSize()
|
|
|
|
{ return FSize(getViewportWidth(), getViewportHeight()); }
|
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
//----------------------------------------------------------------------
|
2018-10-14 06:25:33 +02:00
|
|
|
inline std::size_t FScrollView::getScrollWidth() const
|
2017-01-26 00:31:07 +01:00
|
|
|
{ return scroll_geometry.getWidth(); }
|
2017-01-02 08:07:46 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-10-14 06:25:33 +02:00
|
|
|
inline std::size_t FScrollView::getScrollHeight() const
|
2017-01-26 00:31:07 +01:00
|
|
|
{ return scroll_geometry.getHeight(); }
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2019-01-21 03:42:18 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const FSize FScrollView::getScrollSize() const
|
|
|
|
{ return scroll_geometry.getSize(); }
|
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-01-07 22:09:09 +01:00
|
|
|
inline const FPoint FScrollView::getScrollPos() const
|
2017-01-26 00:31:07 +01:00
|
|
|
{ return viewport_geometry.getPos(); }
|
2017-01-02 08:07:46 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-01-07 22:09:09 +01:00
|
|
|
inline int FScrollView::getScrollX() const
|
2017-01-26 00:31:07 +01:00
|
|
|
{ return viewport_geometry.getX(); }
|
2017-01-07 22:09:09 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline int FScrollView::getScrollY() const
|
2017-01-26 00:31:07 +01:00
|
|
|
{ return viewport_geometry.getY(); }
|
2017-01-07 22:09:09 +01:00
|
|
|
|
2017-02-18 23:37:10 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
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-01-07 22:09:09 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-08-12 20:10:27 +02:00
|
|
|
inline void FScrollView::scrollTo (const FPoint& pos)
|
2017-01-07 22:09:09 +01:00
|
|
|
{ scrollTo(pos.getX(), pos.getY()); }
|
|
|
|
|
2019-08-18 21:36:10 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FScrollView::print (const FPoint& pos)
|
|
|
|
{
|
|
|
|
if ( use_own_print_area )
|
|
|
|
FWidget::setPrintPos(pos);
|
|
|
|
else
|
|
|
|
setPrintPos(pos);
|
|
|
|
}
|
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
} // namespace finalcut
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#endif // FSCROLLVIEW_H
|