]> git.saurik.com Git - wxWidgets.git/blame - include/wx/vscroll.h
added missing wxUniChar::operator=(wxUniCharRef)
[wxWidgets.git] / include / wx / vscroll.h
CommitLineData
cf7d6329
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: include/wx/vscroll.h
f18eaf26 3// Purpose: Variable scrolled windows (wx[V/H/HV]ScrolledWindow)
cf7d6329 4// Author: Vadim Zeitlin
f18eaf26 5// Modified by: Brad Anderson, Bryan Petty
cf7d6329
VZ
6// Created: 30.05.03
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
cf7d6329
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_VSCROLL_H_
13#define _WX_VSCROLL_H_
14
f18eaf26
VZ
15#include "wx/panel.h"
16#include "wx/position.h"
17
18class WXDLLEXPORT wxVarScrollHelperEvtHandler;
19
20
21// Using the same techniques as the wxScrolledWindow class |
22// hierarchy, the wx[V/H/HV]ScrolledWindow classes are slightly |
23// more complex (compare with the diagram outlined in |
24// scrolwin.h) for the purpose of reducing code duplication |
25// through the use of mix-in classes. |
26// |
27// wxVarScrollHelperBase |
28// / \ |
29// / \ |
30// V V |
31// wxVarHScrollHelper wxVarVScrollHelper |
32// | \ / | |
33// | \ / | |
34// | V V | |
35// | wxVarHVScrollHelper | |
36// | | | |
37// | | V |
38// | wxPanel | wxVarVScrollLegacyAdaptor |
39// | / \ \ | | |
40// | / \ `-----|----------. | |
41// | / \ | \ | |
42// | / \ | \ | |
43// V V \ | V V |
44// wxHScrolledWindow \ | wxVScrolledWindow |
45// V V |
46// wxHVScrolledWindow |
47// |
48// |
49// Border added to suppress GCC multi-line comment warnings ->|
50
51
52// ===========================================================================
53// wxVarScrollHelperBase
54// ===========================================================================
55
56// Provides all base common scroll calculations needed for either orientation,
57// automatic scrollbar functionality, saved scroll positions, functionality
58// for changing the target window to be scrolled, as well as defining all
59// required virtual functions that need to be implemented for any orientation
60// specific work.
61
62class WXDLLEXPORT wxVarScrollHelperBase
cf7d6329
VZ
63{
64public:
65 // constructors and such
66 // ---------------------
67
f18eaf26
VZ
68 wxVarScrollHelperBase(wxWindow *winToScroll);
69 virtual ~wxVarScrollHelperBase();
cf7d6329 70
f18eaf26
VZ
71 // operations
72 // ----------
73
74 // with physical scrolling on, the device origin is changed properly when
75 // a wxPaintDC is prepared, children are actually moved and laid out
76 // properly, and the contents of the window (pixels) are actually moved
77 void EnablePhysicalScrolling(bool scrolling = true)
78 { m_physicalScrolling = scrolling; }
79
80 // wxNOT_FOUND if none, i.e. if it is below the last item
1c6c52fd 81 int VirtualHitTest(wxCoord coord) const;
f18eaf26
VZ
82
83 // recalculate all our parameters and redisplay all units
84 virtual void RefreshAll();
85
86 // accessors
87 // ---------
88
89 // get the first currently visible unit
90 size_t GetVisibleBegin() const { return m_unitFirst; }
91
92 // get the last currently visible unit
93 size_t GetVisibleEnd() const
94 { return m_unitFirst + m_nUnitsVisible; }
95
96 // is this unit currently visible?
97 bool IsVisible(size_t unit) const
98 { return unit >= m_unitFirst && unit < GetVisibleEnd(); }
99
100 // translate between scrolled and unscrolled coordinates
101 int CalcScrolledPosition(int coord) const
102 { return DoCalcScrolledPosition(coord); }
103 int CalcUnscrolledPosition(int coord) const
104 { return DoCalcUnscrolledPosition(coord); }
105
106 virtual int DoCalcScrolledPosition(int coord) const;
107 virtual int DoCalcUnscrolledPosition(int coord) const;
108
109 // update the thumb size shown by the scrollbar
110 virtual void UpdateScrollbar();
111 void RemoveScrollbar();
112
113 // Normally the wxScrolledWindow will scroll itself, but in some rare
114 // occasions you might want it to scroll [part of] another window (e.g. a
115 // child of it in order to scroll only a portion the area between the
116 // scrollbars (spreadsheet: only cell area will move).
117 virtual void SetTargetWindow(wxWindow *target);
118 virtual wxWindow *GetTargetWindow() const { return m_targetWindow; }
119
120 // Override this function to draw the graphic (or just process EVT_PAINT)
121 //virtual void OnDraw(wxDC& WXUNUSED(dc)) { }
122
123 // change the DC origin according to the scroll position. To properly
124 // forward calls to wxWindow::Layout use WX_FORWARD_TO_SCROLL_HELPER()
125 // derived class
126 virtual void DoPrepareDC(wxDC& dc);
127
128 // the methods to be called from the window event handlers
129 void HandleOnScroll(wxScrollWinEvent& event);
130 void HandleOnSize(wxSizeEvent& event);
131#if wxUSE_MOUSEWHEEL
132 void HandleOnMouseWheel(wxMouseEvent& event);
133#endif // wxUSE_MOUSEWHEEL
134
135 // these functions must be overidden in the derived class to return
136 // orientation specific data (e.g. the width for vertically scrolling
137 // derivatives in the case of GetOrientationTargetSize())
138 virtual int GetOrientationTargetSize() const = 0;
139 virtual int GetNonOrientationTargetSize() const = 0;
140 virtual wxOrientation GetOrientation() const = 0;
141
142protected:
143 // all *Unit* functions are protected to be exposed by
144 // wxVarScrollHelperBase implementations (with appropriate names)
145
146 // get the number of units this window contains (previously set by
147 // SetUnitCount())
148 size_t GetUnitCount() const { return m_unitMax; }
149
150 // set the number of units the helper contains: the derived class must
151 // provide the sizes for all units with indices up to the one given here
152 // in its OnGetUnitSize()
153 void SetUnitCount(size_t count);
154
155 // redraw the specified unit
156 virtual void RefreshUnit(size_t unit);
157
158 // redraw all units in the specified range (inclusive)
159 virtual void RefreshUnits(size_t from, size_t to);
160
161 // scroll to the specified unit: it will become the first visible unit in
162 // the window
cf7d6329 163 //
f18eaf26
VZ
164 // return true if we scrolled the window, false if nothing was done
165 bool DoScrollToUnit(size_t unit);
166
167 // scroll by the specified number of units/pages
168 virtual bool DoScrollUnits(int units);
169 virtual bool DoScrollPages(int pages);
170
171 // this function must be overridden in the derived class and it should
172 // return the size of the given unit in pixels
173 virtual wxCoord OnGetUnitSize(size_t n) const = 0;
174
175 // this function doesn't have to be overridden but it may be useful to do
176 // it if calculating the units' sizes is a relatively expensive operation
177 // as it gives the user code a possibility to calculate several of them at
178 // once
179 //
180 // OnGetUnitsSizeHint() is normally called just before OnGetUnitSize() but
181 // you shouldn't rely on the latter being called for all units in the
182 // interval specified here. It is also possible that OnGetUnitHeight() will
183 // be called for the units outside of this interval, so this is really just
184 // a hint, not a promise.
185 //
186 // finally note that unitMin is inclusive, while unitMax is exclusive, as
187 // usual
188 virtual void OnGetUnitsSizeHint(size_t WXUNUSED(unitMin),
189 size_t WXUNUSED(unitMax)) const
190 { }
191
192 // when the number of units changes, we try to estimate the total size
193 // of all units which is a rather expensive operation in terms of unit
194 // access, so if the user code may estimate the average size
195 // better/faster than we do, it should override this function to implement
196 // its own logic
197 //
198 // this function should return the best guess for the total size it may
199 // make
200 virtual wxCoord EstimateTotalSize() const { return DoEstimateTotalSize(); }
201
202 wxCoord DoEstimateTotalSize() const;
203
204 // find the index of the unit we need to show to fit the specified unit on
205 // the opposite side either fully or partially (depending on fullyVisible)
206 size_t FindFirstVisibleFromLast(size_t last,
207 bool fullyVisible = false) const;
208
209 // get the total size of the units between unitMin (inclusive) and
210 // unitMax (exclusive)
211 wxCoord GetUnitsSize(size_t unitMin, size_t unitMax) const;
212
213 // get the offset of the first visible unit
214 wxCoord GetScrollOffset() const
215 { return GetUnitsSize(0, GetVisibleBegin()); }
216
217 // get the size of the target window
218 wxSize GetTargetSize() const { return m_targetWindow->GetClientSize(); }
219
220 void GetTargetSize(int *w, int *h)
cf7d6329 221 {
f18eaf26
VZ
222 wxSize size = GetTargetSize();
223 if ( w )
224 *w = size.x;
225 if ( h )
226 *h = size.y;
227 }
cf7d6329 228
f18eaf26
VZ
229 // calculate the new scroll position based on scroll event type
230 size_t GetNewScrollPosition(wxScrollWinEvent& event) const;
231
232 // replacement implementation of wxWindow::Layout virtual method. To
233 // properly forward calls to wxWindow::Layout use
234 // WX_FORWARD_TO_SCROLL_HELPER() derived class
235 bool ScrollLayout();
236
237#ifdef __WXMAC__
238 // queue mac window update after handling scroll event
239 virtual void UpdateMacScrollWindow() = 0;
240#endif // __WXMAC__
241
242 // change the target window
243 void DoSetTargetWindow(wxWindow *target);
244
245 // delete the event handler we installed
246 void DeleteEvtHandler();
247
248 // helper function abstracting the orientation test: with vertical
249 // orientation, it assigns the first value to x and the second one to y,
250 // with horizontal orientation it reverses them, i.e. the first value is
251 // assigned to y and the second one to x
252 void AssignOrient(wxCoord& x, wxCoord& y, wxCoord first, wxCoord second);
253
254 // similar to "oriented assignment" above but does "oriented increment":
255 // for vertical orientation, y is incremented by the given value and x if
256 // left unchanged, for horizontal orientation x is incremented
257 void IncOrient(wxCoord& x, wxCoord& y, wxCoord inc);
258
259private:
260
261 // the window that receives the scroll events and the window to actually
262 // scroll, respectively
263 wxWindow *m_win,
264 *m_targetWindow;
265
266 // the total number of (logical) units
267 size_t m_unitMax;
268
269 // the total (estimated) size
270 wxCoord m_sizeTotal;
271
272 // the first currently visible unit
273 size_t m_unitFirst;
274
275 // the number of currently visible units (including the last, possibly only
276 // partly, visible one)
277 size_t m_nUnitsVisible;
278
279 // accumulated mouse wheel rotation
280#if wxUSE_MOUSEWHEEL
281 int m_sumWheelRotation;
282#endif
283
284 // do child scrolling (used in DoPrepareDC())
285 bool m_physicalScrolling;
286
287 // handler injected into target window to forward some useful events to us
288 wxVarScrollHelperEvtHandler *m_handler;
289};
290
291
292
293// ===========================================================================
294// wxVarVScrollHelper
295// ===========================================================================
296
297// Provides public API functions targeted for vertical-specific scrolling,
298// wrapping the functionality of wxVarScrollHelperBase.
299
300class WXDLLEXPORT wxVarVScrollHelper : public wxVarScrollHelperBase
301{
302public:
303 // constructors and such
304 // ---------------------
305
306 // ctor must be given the associated window
307 wxVarVScrollHelper(wxWindow *winToScroll)
308 : wxVarScrollHelperBase(winToScroll)
309 {
cf7d6329
VZ
310 }
311
f18eaf26
VZ
312 // operators
313
314 void SetRowCount(size_t rowCount) { SetUnitCount(rowCount); }
315 bool ScrollToRow(size_t row) { return DoScrollToUnit(row); }
316
317 virtual bool ScrollRows(int rows)
318 { return DoScrollUnits(rows); }
319 virtual bool ScrollRowPages(int pages)
320 { return DoScrollPages(pages); }
321
322 virtual void RefreshRow(size_t row)
323 { RefreshUnit(row); }
324 virtual void RefreshRows(size_t from, size_t to)
325 { RefreshUnits(from, to); }
326
f18eaf26
VZ
327 // accessors
328
329 size_t GetRowCount() const { return GetUnitCount(); }
330 size_t GetVisibleRowsBegin() const { return GetVisibleBegin(); }
331 size_t GetVisibleRowsEnd() const { return GetVisibleEnd(); }
332 bool IsRowVisible(size_t row) const { return IsVisible(row); }
333
334 virtual int GetOrientationTargetSize() const
335 { return GetTargetWindow()->GetClientSize().y; }
336 virtual int GetNonOrientationTargetSize() const
337 { return GetTargetWindow()->GetClientSize().x; }
338 virtual wxOrientation GetOrientation() const { return wxVERTICAL; }
339
340protected:
341 // this function must be overridden in the derived class and it should
342 // return the size of the given row in pixels
343 virtual wxCoord OnGetRowHeight(size_t n) const = 0;
344 wxCoord OnGetUnitSize(size_t n) const { return OnGetRowHeight(n); }
345
346 virtual void OnGetRowsHeightHint(size_t WXUNUSED(rowMin),
347 size_t WXUNUSED(rowMax)) const { }
348
349 // forward calls to OnGetRowsHeightHint()
350 virtual void OnGetUnitsSizeHint(size_t unitMin, size_t unitMax) const
a81a4db3 351 { OnGetRowsHeightHint(unitMin, unitMax); }
f18eaf26
VZ
352
353 // again, if not overridden, it will fall back on default method
354 virtual wxCoord EstimateTotalHeight() const
355 { return DoEstimateTotalSize(); }
356
357 // forward calls to EstimateTotalHeight()
358 virtual wxCoord EstimateTotalSize() const { return EstimateTotalHeight(); }
359
360 wxCoord GetRowsHeight(size_t rowMin, size_t rowMax) const
361 { return GetUnitsSize(rowMin, rowMax); }
362};
363
364
365
366// ===========================================================================
367// wxVarHScrollHelper
368// ===========================================================================
369
370// Provides public API functions targeted for horizontal-specific scrolling,
371// wrapping the functionality of wxVarScrollHelperBase.
372
373class WXDLLEXPORT wxVarHScrollHelper : public wxVarScrollHelperBase
374{
375public:
376 // constructors and such
377 // ---------------------
378
379 // ctor must be given the associated window
380 wxVarHScrollHelper(wxWindow *winToScroll)
381 : wxVarScrollHelperBase(winToScroll)
cf7d6329 382 {
cf7d6329
VZ
383 }
384
f18eaf26 385 // operators
cf7d6329 386
f18eaf26
VZ
387 void SetColumnCount(size_t columnCount)
388 { SetUnitCount(columnCount); }
cf7d6329 389
f18eaf26
VZ
390 bool ScrollToColumn(size_t column)
391 { return DoScrollToUnit(column); }
392 virtual bool ScrollColumns(int columns)
393 { return DoScrollUnits(columns); }
394 virtual bool ScrollColumnPages(int pages)
395 { return DoScrollPages(pages); }
cf7d6329 396
f18eaf26
VZ
397 virtual void RefreshColumn(size_t column)
398 { RefreshUnit(column); }
399 virtual void RefreshColumns(size_t from, size_t to)
400 { RefreshUnits(from, to); }
cf7d6329 401
f18eaf26 402 // accessors
cf7d6329 403
f18eaf26
VZ
404 size_t GetColumnCount() const
405 { return GetUnitCount(); }
406 size_t GetVisibleColumnsBegin() const
407 { return GetVisibleBegin(); }
408 size_t GetVisibleColumnsEnd() const
409 { return GetVisibleEnd(); }
410 bool IsColumnVisible(size_t column) const
411 { return IsVisible(column); }
e0c6027b 412
ae0f0223 413
f18eaf26
VZ
414 virtual int GetOrientationTargetSize() const
415 { return GetTargetWindow()->GetClientSize().x; }
416 virtual int GetNonOrientationTargetSize() const
417 { return GetTargetWindow()->GetClientSize().y; }
418 virtual wxOrientation GetOrientation() const { return wxHORIZONTAL; }
ceb71775 419
f18eaf26
VZ
420protected:
421 // this function must be overridden in the derived class and it should
422 // return the size of the given column in pixels
423 virtual wxCoord OnGetColumnWidth(size_t n) const = 0;
424 wxCoord OnGetUnitSize(size_t n) const { return OnGetColumnWidth(n); }
e0c6027b 425
f18eaf26
VZ
426 virtual void OnGetColumnsWidthHint(size_t WXUNUSED(columnMin),
427 size_t WXUNUSED(columnMax)) const
428 { }
8b053348 429
f18eaf26
VZ
430 // forward calls to OnGetColumnsWidthHint()
431 virtual void OnGetUnitsSizeHint(size_t unitMin, size_t unitMax) const
21e3e3bc 432 { OnGetColumnsWidthHint(unitMin, unitMax); }
f18eaf26
VZ
433
434 // again, if not overridden, it will fall back on default method
435 virtual wxCoord EstimateTotalWidth() const { return DoEstimateTotalSize(); }
436
437 // forward calls to EstimateTotalWidth()
438 virtual wxCoord EstimateTotalSize() const { return EstimateTotalWidth(); }
439
440 wxCoord GetColumnsWidth(size_t columnMin, size_t columnMax) const
441 { return GetUnitsSize(columnMin, columnMax); }
442};
443
444
445
446// ===========================================================================
447// wxVarHVScrollHelper
448// ===========================================================================
449
450// Provides public API functions targeted at functions with similar names in
451// both wxVScrollHelper and wxHScrollHelper so class scope doesn't need to be
452// specified (since we are using multiple inheritance). It also provides
453// functions to make changing values for both orientations at the same time
454// easier.
455
456class WXDLLEXPORT wxVarHVScrollHelper : public wxVarVScrollHelper,
457 public wxVarHScrollHelper
458{
459public:
460 // constructors and such
461 // ---------------------
462
463 // ctor must be given the associated window
464 wxVarHVScrollHelper(wxWindow *winToScroll)
465 : wxVarVScrollHelper(winToScroll), wxVarHScrollHelper(winToScroll) { }
466
467 // operators
468 // ---------
469
470 // set the number of units the window contains for each axis: the derived
471 // class must provide the widths and heights for all units with indices up
472 // to each of the one given here in its OnGetColumnWidth() and
473 // OnGetRowHeight()
474 void SetRowColumnCount(size_t rowCount, size_t columnCount);
475
476
477 // with physical scrolling on, the device origin is changed properly when
478 // a wxPaintDC is prepared, children are actually moved and laid out
479 // properly, and the contents of the window (pixels) are actually moved
480 void EnablePhysicalScrolling(bool vscrolling = true, bool hscrolling = true)
481 {
482 wxVarVScrollHelper::EnablePhysicalScrolling(vscrolling);
483 wxVarHScrollHelper::EnablePhysicalScrolling(hscrolling);
484 }
485
486 // scroll to the specified row/column: it will become the first visible
487 // cell in the window
488 //
489 // return true if we scrolled the window, false if nothing was done
490 bool ScrollToRowColumn(size_t row, size_t column);
491 bool ScrollToRowColumn(const wxPosition &pos)
492 { return ScrollToRowColumn(pos.GetRow(), pos.GetColumn()); }
493
494 // redraw the specified cell
495 virtual void RefreshRowColumn(size_t row, size_t column);
496 virtual void RefreshRowColumn(const wxPosition &pos)
497 { RefreshRowColumn(pos.GetRow(), pos.GetColumn()); }
498
499 // redraw the specified regions (inclusive). If the target window for
500 // both orientations is the same the rectangle of cells is refreshed; if
501 // the target windows differ the entire client size opposite the
502 // orientation direction is refreshed between the specified limits
503 virtual void RefreshRowsColumns(size_t fromRow, size_t toRow,
504 size_t fromColumn, size_t toColumn);
505 virtual void RefreshRowsColumns(const wxPosition& from,
506 const wxPosition& to)
507 {
508 RefreshRowsColumns(from.GetRow(), to.GetRow(),
509 from.GetColumn(), to.GetColumn());
510 }
511
1c6c52fd
CE
512 // locate the virtual position from the given device coordinates
513 wxPosition VirtualHitTest(wxCoord x, wxCoord y) const;
514 wxPosition VirtualHitTest(const wxPoint &pos) const
515 { return VirtualHitTest(pos.x, pos.y); }
f18eaf26
VZ
516
517 // change the DC origin according to the scroll position. To properly
518 // forward calls to wxWindow::Layout use WX_FORWARD_TO_SCROLL_HELPER()
519 // derived class. We use this version to call both base classes'
520 // DoPrepareDC()
521 virtual void DoPrepareDC(wxDC& dc);
522
523 // replacement implementation of wxWindow::Layout virtual method. To
524 // properly forward calls to wxWindow::Layout use
525 // WX_FORWARD_TO_SCROLL_HELPER() derived class. We use this version to
526 // call both base classes' ScrollLayout()
527 bool ScrollLayout();
cf7d6329
VZ
528
529 // accessors
530 // ---------
531
f18eaf26
VZ
532 // get the number of units this window contains (previously set by
533 // Set[Column/Row/RowColumn/Unit]Count())
534 wxSize GetRowColumnCount() const;
535
536 // get the first currently visible units
537 wxPosition GetVisibleBegin() const;
538 wxPosition GetVisibleEnd() const;
539
540 // is this cell currently visible?
541 bool IsVisible(size_t row, size_t column) const;
542 bool IsVisible(const wxPosition &pos) const
543 { return IsVisible(pos.GetRow(), pos.GetColumn()); }
544};
545
546
cf7d6329 547
f18eaf26 548#if WXWIN_COMPATIBILITY_2_8
cf7d6329 549
f18eaf26
VZ
550// ===========================================================================
551// wxVarVScrollLegacyAdaptor
552// ===========================================================================
cf7d6329 553
f18eaf26
VZ
554// Provides backwards compatible API for applications originally built using
555// wxVScrolledWindow in 2.6 or 2.8. Originally, wxVScrolledWindow referred
556// to scrolling "lines". We use "units" in wxVarScrollHelperBase to avoid
557// implying any orientation (since the functions are used for both horizontal
558// and vertical scrolling in derived classes). And in the new
559// wxVScrolledWindow and wxHScrolledWindow classes, we refer to them as
560// "rows" and "columns", respectively. This is to help clear some confusion
561// in not only those classes, but also in wxHVScrolledWindow where functions
562// are inherited from both.
dd932cbe 563
f18eaf26
VZ
564class WXDLLEXPORT wxVarVScrollLegacyAdaptor : public wxVarVScrollHelper
565{
566public:
567 // constructors and such
568 // ---------------------
569 wxVarVScrollLegacyAdaptor(wxWindow *winToScroll)
570 : wxVarVScrollHelper(winToScroll)
571 {
572 }
573
574 // accessors
575 // ---------
dd932cbe 576
f18eaf26 577 // this is the same as GetVisibleRowsBegin(), exists to match
dd932cbe 578 // GetLastVisibleLine() and for backwards compatibility only
5a0ed193
BP
579 wxDEPRECATED( size_t GetFirstVisibleLine() const )
580 { return GetVisibleRowsBegin(); }
dd932cbe
VZ
581
582 // get the last currently visible line
583 //
584 // this function is unsafe as it returns (size_t)-1 (i.e. a huge positive
f18eaf26
VZ
585 // number) if the control is empty, use GetVisibleRowsEnd() instead, this
586 // one is kept for backwards compatibility
5a0ed193
BP
587 wxDEPRECATED( size_t GetLastVisibleLine() const )
588 { return GetVisibleRowsEnd() - 1; }
e0c6027b 589
f18eaf26
VZ
590 // "line" to "unit" compatibility functions
591 // ----------------------------------------
592
593 // get the number of lines this window contains (set by SetLineCount())
5a0ed193
BP
594 wxDEPRECATED( size_t GetLineCount() const )
595 { return GetRowCount(); }
f18eaf26
VZ
596
597 // set the number of lines the helper contains: the derived class must
598 // provide the sizes for all lines with indices up to the one given here
599 // in its OnGetLineHeight()
5a0ed193
BP
600 wxDEPRECATED( void SetLineCount(size_t count) )
601 { SetRowCount(count); }
f18eaf26
VZ
602
603 // redraw the specified line
5a0ed193
BP
604 wxDEPRECATED( virtual void RefreshLine(size_t line) )
605 { RefreshRow(line); }
f18eaf26
VZ
606
607 // redraw all lines in the specified range (inclusive)
5a0ed193
BP
608 wxDEPRECATED( virtual void RefreshLines(size_t from, size_t to) )
609 { RefreshRows(from, to); }
f18eaf26
VZ
610
611 // scroll to the specified line: it will become the first visible line in
612 // the window
613 //
614 // return true if we scrolled the window, false if nothing was done
5a0ed193
BP
615 wxDEPRECATED( bool ScrollToLine(size_t line) )
616 { return ScrollToRow(line); }
f18eaf26
VZ
617
618 // scroll by the specified number of lines/pages
5a0ed193
BP
619 wxDEPRECATED( virtual bool ScrollLines(int lines) )
620 { return ScrollRows(lines); }
621 wxDEPRECATED( virtual bool ScrollPages(int pages) )
622 { return ScrollRowPages(pages); }
cf7d6329 623
e0c6027b 624protected:
79b83ef0 625 // unless the code has been updated to override OnGetRowHeight() instead,
cf7d6329 626 // this function must be overridden in the derived class and it should
f18eaf26 627 // return the height of the given row in pixels
5a0ed193
BP
628 wxDEPRECATED_BUT_USED_INTERNALLY(
629 virtual wxCoord OnGetLineHeight(size_t WXUNUSED(n)) const )
79b83ef0 630 {
5a0ed193 631 wxFAIL_MSG( _T("OnGetLineHeight() must be overridden if OnGetRowHeight() isn't!") );
79b83ef0
VZ
632 return -1;
633 }
cf7d6329 634
f18eaf26
VZ
635 // forwards the calls from base class pure virtual function to pure virtual
636 // OnGetLineHeight instead (backwards compatible name)
637 // note that we don't need to forward OnGetUnitSize() as it is already
638 // forwarded to OnGetRowHeight() in wxVarVScrollHelper
639 virtual wxCoord OnGetRowHeight(size_t n) const
640 { return OnGetLineHeight(n); }
641
cf7d6329
VZ
642 // this function doesn't have to be overridden but it may be useful to do
643 // it if calculating the lines heights is a relatively expensive operation
644 // as it gives the user code a possibility to calculate several of them at
645 // once
646 //
647 // OnGetLinesHint() is normally called just before OnGetLineHeight() but you
648 // shouldn't rely on the latter being called for all lines in the interval
649 // specified here. It is also possible that OnGetLineHeight() will be
650 // called for the lines outside of this interval, so this is really just a
651 // hint, not a promise.
652 //
653 // finally note that lineMin is inclusive, while lineMax is exclusive, as
654 // usual
5a0ed193
BP
655 wxDEPRECATED_BUT_USED_INTERNALLY( virtual void OnGetLinesHint(
656 size_t WXUNUSED(lineMin), size_t WXUNUSED(lineMax)) const ) { }
cf7d6329 657
f18eaf26
VZ
658 // forwards the calls from base class pure virtual function to pure virtual
659 // OnGetLinesHint instead (backwards compatible name)
660 void OnGetRowsHeightHint(size_t rowMin, size_t rowMax) const
21e3e3bc 661 { OnGetLinesHint(rowMin, rowMax); }
f18eaf26 662};
cf7d6329 663
f18eaf26 664#else // !WXWIN_COMPATIBILITY_2_8
cf7d6329 665
f18eaf26 666// shortcut to avoid checking compatibility modes later
e02c72fa 667// remove this and all references to wxVarVScrollLegacyAdaptor once
f18eaf26 668// wxWidgets 2.6 and 2.8 compatibility is removed
e02c72fa 669typedef wxVarVScrollHelper wxVarVScrollLegacyAdaptor;
c1aa5517 670
f18eaf26 671#endif // WXWIN_COMPATIBILITY_2_8/!WXWIN_COMPATIBILITY_2_8
cf7d6329
VZ
672
673
f18eaf26
VZ
674// this macro must be used in declaration of wxVarScrollHelperBase-derived
675// classes
676#define WX_FORWARD_TO_VAR_SCROLL_HELPER() \
677public: \
678 virtual void PrepareDC(wxDC& dc) { DoPrepareDC(dc); } \
679 virtual bool Layout() { return ScrollLayout(); }
cf7d6329 680
cf7d6329 681
cf7d6329 682
f18eaf26
VZ
683// ===========================================================================
684// wxVScrolledWindow
685// ===========================================================================
cf7d6329 686
f18eaf26
VZ
687// In the name of this class, "V" may stand for "variable" because it can be
688// used for scrolling rows of variable heights; "virtual", because it is not
689// necessary to know the heights of all rows in advance -- only those which
690// are shown on the screen need to be measured; or even "vertical", because
691// this class only supports scrolling vertically.
692
693// In any case, this is a generalization of the wxScrolledWindow class which
694// can be only used when all rows have the same heights. It lacks some other
695// wxScrolledWindow features however, notably it can't scroll only a rectangle
696// of the window and not its entire client area.
697
698class WXDLLEXPORT wxVScrolledWindow : public wxPanel,
699 public wxVarVScrollLegacyAdaptor
700{
701public:
702 // constructors and such
703 // ---------------------
704
705 // default ctor, you must call Create() later
706 wxVScrolledWindow() : wxVarVScrollLegacyAdaptor(this) { }
707
708 // normal ctor, no need to call Create() after this one
709 //
710 // note that wxVSCROLL is always automatically added to our style, there is
711 // no need to specify it explicitly
712 wxVScrolledWindow(wxWindow *parent,
713 wxWindowID id = wxID_ANY,
714 const wxPoint& pos = wxDefaultPosition,
715 const wxSize& size = wxDefaultSize,
716 long style = 0,
717 const wxString& name = wxPanelNameStr)
718 : wxVarVScrollLegacyAdaptor(this)
719 {
720 (void)Create(parent, id, pos, size, style, name);
721 }
722
723 // same as the previous ctor but returns status code: true if ok
724 //
725 // just as with the ctor above, wxVSCROLL style is always used, there is no
726 // need to specify it
727 bool Create(wxWindow *parent,
728 wxWindowID id = wxID_ANY,
729 const wxPoint& pos = wxDefaultPosition,
730 const wxSize& size = wxDefaultSize,
731 long style = 0,
732 const wxString& name = wxPanelNameStr)
733 {
734 return wxPanel::Create(parent, id, pos, size, style | wxVSCROLL, name);
735 }
736
1c6c52fd 737#if WXWIN_COMPATIBILITY_2_8
f18eaf26 738 // Make sure we prefer our version of HitTest rather than wxWindow's
1c6c52fd 739 // These functions should no longer be masked in favor of VirtualHitTest()
f18eaf26 740 int HitTest(wxCoord WXUNUSED(x), wxCoord y) const
1c6c52fd 741 { return wxVarVScrollHelper::VirtualHitTest(y); }
f18eaf26
VZ
742 int HitTest(const wxPoint& pt) const
743 { return HitTest(pt.x, pt.y); }
1c6c52fd 744#endif // WXWIN_COMPATIBILITY_2_8
f18eaf26
VZ
745
746 WX_FORWARD_TO_VAR_SCROLL_HELPER()
cf7d6329 747
f18eaf26
VZ
748#ifdef __WXMAC__
749protected:
750 virtual void UpdateMacScrollWindow() { Update(); }
751#endif // __WXMAC__
752
753private:
27d0dcd0 754 DECLARE_NO_COPY_CLASS(wxVScrolledWindow)
0c8392ca 755 DECLARE_ABSTRACT_CLASS(wxVScrolledWindow)
cf7d6329
VZ
756};
757
f18eaf26
VZ
758
759
760// ===========================================================================
761// wxHScrolledWindow
762// ===========================================================================
763
764// In the name of this class, "H" stands for "horizontal" because it can be
765// used for scrolling columns of variable widths. It is not necessary to know
766// the widths of all columns in advance -- only those which are shown on the
767// screen need to be measured.
768
769// This is a generalization of the wxScrolledWindow class which can be only
770// used when all columns have the same width. It lacks some other
771// wxScrolledWindow features however, notably it can't scroll only a rectangle
772// of the window and not its entire client area.
773
774class WXDLLEXPORT wxHScrolledWindow : public wxPanel,
775 public wxVarHScrollHelper
776{
777public:
778 // constructors and such
779 // ---------------------
780
781 // default ctor, you must call Create() later
782 wxHScrolledWindow() : wxVarHScrollHelper(this) { }
783
784 // normal ctor, no need to call Create() after this one
785 //
786 // note that wxHSCROLL is always automatically added to our style, there is
787 // no need to specify it explicitly
788 wxHScrolledWindow(wxWindow *parent,
789 wxWindowID id = wxID_ANY,
790 const wxPoint& pos = wxDefaultPosition,
791 const wxSize& size = wxDefaultSize,
792 long style = 0,
793 const wxString& name = wxPanelNameStr)
794 : wxVarHScrollHelper(this)
795 {
796 (void)Create(parent, id, pos, size, style, name);
797 }
798
799 // same as the previous ctor but returns status code: true if ok
800 //
801 // just as with the ctor above, wxHSCROLL style is always used, there is no
802 // need to specify it
803 bool Create(wxWindow *parent,
804 wxWindowID id = wxID_ANY,
805 const wxPoint& pos = wxDefaultPosition,
806 const wxSize& size = wxDefaultSize,
807 long style = 0,
808 const wxString& name = wxPanelNameStr)
809 {
810 return wxPanel::Create(parent, id, pos, size, style | wxHSCROLL, name);
811 }
812
f18eaf26
VZ
813 WX_FORWARD_TO_VAR_SCROLL_HELPER()
814
815#ifdef __WXMAC__
816protected:
817 virtual void UpdateMacScrollWindow() { Update(); }
818#endif // __WXMAC__
819
820private:
821 DECLARE_NO_COPY_CLASS(wxHScrolledWindow)
822 DECLARE_ABSTRACT_CLASS(wxHScrolledWindow)
823};
824
825
826
827// ===========================================================================
828// wxHVScrolledWindow
829// ===========================================================================
830
831// This window inherits all functionality of both vertical and horizontal
832// scrolled windows automatically handling everything needed to scroll both
833// axis simultaneously.
834
835class WXDLLEXPORT wxHVScrolledWindow : public wxPanel,
836 public wxVarHVScrollHelper
837{
838public:
839 // constructors and such
840 // ---------------------
841
842 // default ctor, you must call Create() later
843 wxHVScrolledWindow()
844 : wxPanel(),
845 wxVarHVScrollHelper(this) { }
846
847 // normal ctor, no need to call Create() after this one
848 //
849 // note that wxVSCROLL and wxHSCROLL are always automatically added to our
850 // style, there is no need to specify them explicitly
851 wxHVScrolledWindow(wxWindow *parent,
852 wxWindowID id = wxID_ANY,
853 const wxPoint& pos = wxDefaultPosition,
854 const wxSize& size = wxDefaultSize,
855 long style = 0,
856 const wxString& name = wxPanelNameStr)
857 : wxPanel(),
858 wxVarHVScrollHelper(this)
859 {
860 (void)Create(parent, id, pos, size, style, name);
861 }
862
863 // same as the previous ctor but returns status code: true if ok
864 //
865 // just as with the ctor above, wxVSCROLL and wxHSCROLL styles are always
866 // used, there is no need to specify them
867 bool Create(wxWindow *parent,
868 wxWindowID id = wxID_ANY,
869 const wxPoint& pos = wxDefaultPosition,
870 const wxSize& size = wxDefaultSize,
871 long style = 0,
872 const wxString& name = wxPanelNameStr)
873 {
874 return wxPanel::Create(parent, id, pos, size,
875 style | wxVSCROLL | wxHSCROLL, name);
876 }
877
f18eaf26
VZ
878 WX_FORWARD_TO_VAR_SCROLL_HELPER()
879
880#ifdef __WXMAC__
881protected:
882 virtual void UpdateMacScrollWindow() { Update(); }
883#endif // __WXMAC__
884
885private:
886 DECLARE_NO_COPY_CLASS(wxHVScrolledWindow)
887 DECLARE_ABSTRACT_CLASS(wxHVScrolledWindow)
888};
889
cf7d6329
VZ
890#endif // _WX_VSCROLL_H_
891