Difference between revisions of "Cocoa Internals/Scroll"

From Free Pascal wiki
Jump to navigationJump to search
m (Rationalised macOS categories)
Line 21: Line 21:
  
 
No other view or control are capable of drawing the border. '''NSBox''' control can draw the border (and it's used for TGroupBox), but BorderType property has been deprecated since macOS 10.14. So far NSScrollView is the only option.
 
No other view or control are capable of drawing the border. '''NSBox''' control can draw the border (and it's used for TGroupBox), but BorderType property has been deprecated since macOS 10.14. So far NSScrollView is the only option.
 +
 +
==Mouse Wheel==
 +
NSScrollView suppresses mouse wheel (scrollWheel) event at all times. No matter, if there are any scrollers visible or not.
 +
For this particular reason
  
 
==See Also==
 
==See Also==

Revision as of 05:51, 13 January 2020

NSScrollView

Cocoa provides a native control, named NSSrollView to implement scrolling. Cocoa-WS sub-classes the with TCocoaScrollView class.

However, NSScrollView is designed to work strictly of the child control (documentView) size. (similar to TScrollBox)

Thus NSScrollView cannot be used to implement scrolling for CustomControls, where custom scroll settings could be used. (For example SynEdit is using lines for vertical scrolls, not pixels)

Instead, NSScrollView is used for standard controls, such as TListBox and TMemo to implement scrolling. For those controls, direct control of the scrolling Range via SetScrollInfo() might not work all. Though setting a scroller position would still work.

TCocoaManualScrollView

This is an additional view that was introduced to satisfy LCL requirements. (depsite of it's name, there's no NSManualScrollView in Cocoa).

The view provides a basic API to add scrollbars for a view. Showing or hiding scroll bars would adjust the content of the view accordingly (by resizing/redrawing its client rectangle)

Changing the position of the scroll bar doesn't affect the contents of the view directly (unlike with NSScrollView). Instead a notification is sent to the LCL control and it should properly respond to it (by redrawing its contents).

TCocoaManualScrollHost

The is a descendant from TCocoaScrollView. The intent of control is to embed TCocoaManualScrollView (only) and be able to provide a system-native border Issue #34761.

No other view or control are capable of drawing the border. NSBox control can draw the border (and it's used for TGroupBox), but BorderType property has been deprecated since macOS 10.14. So far NSScrollView is the only option.

Mouse Wheel

NSScrollView suppresses mouse wheel (scrollWheel) event at all times. No matter, if there are any scrollers visible or not. For this particular reason

See Also