File: fscrollview.h

package info (click to toggle)
finalcut 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,832 kB
  • sloc: cpp: 90,264; makefile: 546; sh: 412
file content (304 lines) | stat: -rw-r--r-- 11,304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/***********************************************************************
* fscrollview.h - Widget FScrollView (a scrolling area with on-demand  *
*                 scroll bars)                                         *
*                                                                      *
* This file is part of the FINAL CUT widget toolkit                    *
*                                                                      *
* Copyright 2017-2023 Markus Gans                                      *
*                                                                      *
* 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.                  *
*                                                                      *
* 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
 *  ═══════════════════
 *
 * ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
 * ▕ 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

#include <memory>
#include <unordered_map>

#include "final/fwidget.h"
#include "final/widget/fscrollbar.h"

namespace finalcut
{

// FVTerm friend function forward declaration
void setPrintArea (FWidget&, FVTerm::FTermArea*);

//----------------------------------------------------------------------
// class FScrollView
//----------------------------------------------------------------------

class FScrollView : public FWidget
{
  public:
    // Using-declaration
    using FWidget::setGeometry;
    using FWidget::print;

    // Constructor
    explicit FScrollView (FWidget* = nullptr);

    // Disable copy constructor
    FScrollView (const FScrollView&) = delete;

    // Disable move constructor
    FScrollView (FScrollView&&) noexcept = delete;

    // Destructor
    ~FScrollView() override;

    // Disable copy assignment operator (=)
    auto operator = (const FScrollView&) -> FScrollView& = delete;

    // Disable move assignment operator (=)
    auto operator = (FScrollView&&) noexcept -> FScrollView& = delete;

    // Accessors
    auto getClassName() const -> FString override;
    auto getText() & -> FString&;
    auto getViewportWidth() const -> std::size_t;
    auto getViewportHeight() const -> std::size_t;
    auto getViewportSize() const -> FSize;
    auto getScrollWidth() const -> std::size_t;
    auto getScrollHeight() const -> std::size_t;
    auto getScrollSize() const -> FSize;
    auto getScrollPos() const -> FPoint;
    auto getScrollX() const -> int;
    auto getScrollY() const -> int;

    // Mutator
    virtual void setScrollWidth (std::size_t);
    virtual void setScrollHeight (std::size_t);
    virtual void setScrollSize (const FSize&);
    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&
                     , bool = true ) override;
    auto setCursorPos (const FPoint&) -> bool override;
    void setPrintPos (const FPoint&) override;
    void setText (const FString&);
    auto setViewportPrint (bool = true) -> bool;
    auto unsetViewportPrint() -> bool;
    void resetColors() override;
    auto setBorder (bool = true) -> bool;
    auto unsetBorder() -> bool;
    void setHorizontalScrollBarMode (ScrollBarMode);
    void setVerticalScrollBarMode (ScrollBarMode);

    // Inquiries
    auto hasBorder() const -> bool;
    auto isViewportPrint() const -> bool;

    // Methods
    void clearArea (wchar_t = L' ') override;
    void scrollToX (int);
    void scrollToY (int);
    void scrollTo (const FPoint&);
    void scrollTo (int, int);
    void scrollBy (int, int);
    void print (const FPoint&) override;
    void draw() override;
    void drawBorder() override;
    void drawLabel();

    // Event handlers
    void onKeyPress (FKeyEvent*) override;
    void onMouseDown (FMouseEvent*) override;
    void onMouseUp (FMouseEvent*) override;
    void onMouseMove (FMouseEvent*) override;
    void onWheel (FWheelEvent*) override;
    void onAccel (FAccelEvent*) override;
    void onFocusIn (FFocusEvent*) override;
    void onChildFocusIn (FFocusEvent*) override;
    void onChildFocusOut (FFocusEvent*) override;
    void onFailAtChildFocus (FFocusEvent*) override;

  protected:
    // Using-declaration
    using FVTerm::clearArea;

    // Accessor
    auto getPrintArea() -> FTermArea* override;

    // Methods
    void setHotkeyAccelerator();
    void initLayout() override;
    void adjustSize() override;
    void copy2area();

  private:
    // Using-declaration
    using KeyMap = std::unordered_map<FKey, std::function<void()>, EnumHash<FKey>>;

    // Constants
    static constexpr std::size_t vertical_border_spacing = 2;
    static constexpr std::size_t horizontal_border_spacing = 2;

    // Accessors
    auto getViewportCursorPos() -> FPoint;

    // Methods
    void init();
    void createViewport (const FSize&) noexcept;
    void drawText (const FString&, std::size_t);
    void directFocus();
    void mapKeyFunctions();
    void changeSize (const FSize&, bool);
    void calculateScrollbarPos() const;
    template <typename Callback>
    void initScrollbar (FScrollbarPtr&, Orientation, Callback);
    void setHorizontalScrollBarVisibility() const;
    void setVerticalScrollBarVisibility() const;
    void setViewportCursor();

    // Callback methods
    void cb_vbarChange (const FWidget*);
    void cb_hbarChange (const FWidget*);

    // Data members
    FRect                      scroll_geometry{1, 1, 1, 1};
    FRect                      viewport_geometry{};
    std::unique_ptr<FTermArea> viewport{};  // virtual scroll content
    FString                    text{};
    FScrollbarPtr              vbar{nullptr};
    FScrollbarPtr              hbar{nullptr};
    KeyMap                     key_map{};
    uInt8                      nf_offset{0};
    bool                       use_own_print_area{false};
    bool                       update_scrollbar{true};
    ScrollBarMode              v_mode{ScrollBarMode::Auto};  // fc:Auto, fc::Hidden or fc::Scroll
    ScrollBarMode              h_mode{ScrollBarMode::Auto};
};

// FScrollView inline functions
//----------------------------------------------------------------------
inline auto FScrollView::getText() & -> FString&
{ return text; }

//----------------------------------------------------------------------
inline auto FScrollView::getClassName() const -> FString
{ return "FScrollView"; }

//----------------------------------------------------------------------
inline auto FScrollView::getViewportWidth() const -> std::size_t
{
  return ( getScrollHeight() > getViewportHeight() )
       ? getWidth() - vertical_border_spacing - std::size_t(nf_offset)
       : getWidth() - vertical_border_spacing;
}

//----------------------------------------------------------------------
inline auto FScrollView::getViewportHeight() const -> std::size_t
{ return getHeight() - horizontal_border_spacing; }

//----------------------------------------------------------------------
inline auto FScrollView::getViewportSize() const -> FSize
{ return {getViewportWidth(), getViewportHeight()}; }

//----------------------------------------------------------------------
inline auto FScrollView::getScrollWidth() const -> std::size_t
{ return scroll_geometry.getWidth(); }

//----------------------------------------------------------------------
inline auto FScrollView::getScrollHeight() const -> std::size_t
{ return scroll_geometry.getHeight(); }

//----------------------------------------------------------------------
inline auto FScrollView::getScrollSize() const -> FSize
{ return scroll_geometry.getSize(); }

//----------------------------------------------------------------------
inline auto FScrollView::getScrollPos() const -> FPoint
{ return viewport_geometry.getPos(); }

//----------------------------------------------------------------------
inline auto FScrollView::getScrollX() const -> int
{ return viewport_geometry.getX(); }

//----------------------------------------------------------------------
inline auto FScrollView::getScrollY() const -> int
{ return viewport_geometry.getY(); }

//----------------------------------------------------------------------
inline auto FScrollView::unsetViewportPrint() -> bool
{ return setViewportPrint(false); }

//----------------------------------------------------------------------
inline auto FScrollView::unsetBorder() -> bool
{ return setBorder(false); }

//----------------------------------------------------------------------
inline auto FScrollView::hasBorder() const -> bool
{ return ! getFlags().feature.no_border; }

//----------------------------------------------------------------------
inline auto FScrollView::isViewportPrint() const -> bool
{ return ! use_own_print_area; }

//----------------------------------------------------------------------
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
                                       , Orientation o
                                       , Callback cb_handler )
{
  finalcut::initScrollbar (bar, o, this, cb_handler);
  FTermArea* area = getPrintArea();
  finalcut::setPrintArea (*bar, area);
}

}  // namespace finalcut

#endif  // FSCROLLVIEW_H