Next Page > Hide TOC

NSRulerView Class Reference

Inherits from
Conforms to
Framework
/System/Library/Frameworks/AppKit.framework
Availability
Available in Mac OS X v10.0 and later.
Companion guide
Declared in
NSRulerView.h
Related sample code

Class at a Glance

An NSRulerView displays a ruler and markers above or to the side of an NSScrollView’s document view. Views within the NSScrollView can become clients of the ruler view, having it display markers for their elements, and receiving messages from the ruler view when the user manipulates the markers.

Principal Attributes

Creation

Commonly Used Methods

setClientView:

Changes the ruler’s client view.

setMarkers:

Sets the markers displayed by the ruler view.

setAccessoryView:

Sets the accessory view.

trackMarker:withMouseEvent:

Allows the user to add a new marker.

Overview

An NSRulerView resides in an NSScrollView, displaying a labeled ruler and markers for its client, the document view of the NSScrollView, or a subview of the document view.

Tasks

Creating Instances

Altering Measurement Units

Setting the Client View

Setting an Accessory View

Setting the Zero Mark Position

Adding and Removing Markers

Drawing Temporary Ruler Lines

Drawing

Ruler Layout

Adding markers

Moving markers

Removing markers

Handling mouse events

Changing client view

Class Methods

registerUnitWithName:abbreviation:unitToPointsConversionFactor:stepUpCycle:stepDownCycle:

Registers a new unit of measurement with the NSRulerView class, making it available to all instances of NSRulerView.

+ (void)registerUnitWithName:(NSString *)unitName abbreviation:(NSString *)abbreviation unitToPointsConversionFactor:(CGFloat)conversionFactor stepUpCycle:(NSArray *)stepUpCycle stepDownCycle:(NSArray *)stepDownCycle

Discussion

unitName is the name of the unit in English, in plural form and capitalized by convention—“Inches”, for example. The unit name is used as a key to identify the measurement units and so shouldn’t be localized. abbreviation is a localized short form of the unit name, such as “in” for Inches. conversionFactor is the number of PostScript points in the specified unit; there are 72.0 points per inch, for example. stepUpCycle and stepDownCycle are arrays of NSNumbers that specify how hash marks are calculated, as explained in “Setting Up a Ruler View”. All numbers in stepUpCycle should be greater than 1.0, those in stepDownCycle should be less than 1.0.

NSRulerView supports these units by default:

Unit Name

Abbreviation

Points/Unit

Step-Up Cycle

Step-Down Cycle

Inches

in

72.0

2.0

0.5

Centimeters

cm

28.35

2.0

0.5, 0.2

Points

pt

1.0

10.0

0.5

Picas

pc

12.0

10.0

0.5

Availability
See Also
Declared In
NSRulerView.h

Instance Methods

accessoryView

Returns the receiver’s accessory view, if it has one.

- (NSView *)accessoryView

Availability
See Also
Declared In
NSRulerView.h

addMarker:

Adds aMarker to the receiver, without consulting the client view for approval.

- (void)addMarker:(NSRulerMarker *)aMarker

Discussion

Raises an NSInternalInconsistencyException if the receiver has no client view.

Availability
See Also
Declared In
NSRulerView.h

baselineLocation

Returns the location of the receiver’s baseline, in its own coordinate system.

- (CGFloat)baselineLocation

Discussion

This is a y position for horizontal rulers and an x position for vertical ones.

Availability
See Also
Declared In
NSRulerView.h

clientView

Returns the receiver’s client view, if it has one.

- (NSView *)clientView

Availability
See Also
Declared In
NSRulerView.h

drawHashMarksAndLabelsInRect:

Draws the receiver’s hash marks and labels in aRect, which is expressed in the receiver’s coordinate system.

- (void)drawHashMarksAndLabelsInRect:(NSRect)aRect

Discussion

This method is invoked by drawRect:—you should never need to invoke it directly. You can define custom measurement units using the class method registerUnitWithName:abbreviation:unitToPointsConversionFactor:stepUpCycle:stepDownCycle:. Override this method if you want to customize the appearance of the hash marks themselves.

Availability
See Also
Declared In
NSRulerView.h

drawMarkersInRect:

Draws the receiver’s markers in aRect, which is expressed in the receiver’s coordinate system.

- (void)drawMarkersInRect:(NSRect)aRect

Discussion

This method is invoked by drawRect:; you should never need to invoke it directly, but you might want to override it if you want to do something different when drawing markers.

Availability
See Also
Declared In
NSRulerView.h

initWithScrollView:orientation:

Initializes a newly allocated NSRulerView to have orientation (NSHorizontalRuler or NSVerticalRuler) within aScrollView.

- (id)initWithScrollView:(NSScrollView *)aScrollView orientation:(NSRulerOrientation)orientation

Discussion

The new ruler view displays the user’s preferred measurement units and has no client, markers, or accessory view. Unlike most subclasses of NSView, no initial frame rectangle is given for NSRulerView; its containing NSScrollView adjusts its frame rectangle as needed.

This method is the designated initializer for the NSRulerView class. Returns an initialized object.

Availability
Declared In
NSRulerView.h

invalidateHashMarks

Forces recalculation of the hash mark spacing for the next time the receiver is displayed.

- (void)invalidateHashMarks

Discussion

You should never need to invoke this method directly, but might need to override it if you override drawHashMarksAndLabelsInRect:.

Availability
See Also
Declared In
NSRulerView.h

isFlipped

Returns YES if the NSRulerView’s coordinate system is flipped, NO otherwise.

- (BOOL)isFlipped

Discussion

A vertical ruler takes into account whether the coordinate system of the NSScrollView’s document view—not the receiver’s client view—is flipped. A horizontal ruler is always flipped.

Availability
Related Sample Code
Declared In
NSRulerView.h

markers

Returns the receiver’s NSRulerMarkers.

- (NSArray *)markers

Discussion

The markers aren’t guaranteed to be sorted in any particular order.

Availability
See Also
Declared In
NSRulerView.h

measurementUnits

Returns the full name of the measurement units in effect for the receiver.

- (NSString *)measurementUnits

Availability
See Also
Declared In
NSRulerView.h

moveRulerlineFromLocation:toLocation:

Draws temporary lines in the ruler area.

- (void)moveRulerlineFromLocation:(CGFloat)oldLoc toLocation:(CGFloat)newLoc

Discussion

If oldLoc is 0 or greater, erases the ruler line at that location; if newLoc is 0 or greater, draws a new rulerline at that location. oldLoc and newLoc are expressed in the coordinate system of the NSRulerView, not the client or document view, and are x coordinates for horizontal rulers and y coordinates for vertical rulers. Use NSView’s convert... methods to convert coordinates from the client or document view’s coordinate system to that of the NSRulerView.

This method is useful for drawing highlight lines in the ruler to show the position or extent of an object while it’s being dragged in the client view. The sender is responsible for keeping track of the number and positions of temporary lines—the NSRulerView only does the drawing.

Availability
Related Sample Code
Declared In
NSRulerView.h

orientation

Returns the orientation of the receiver.

- (NSRulerOrientation)orientation

Discussion

Possible values are described in “Constants.”

Availability
See Also
Declared In
NSRulerView.h

originOffset

Returns the distance from the receiver’s zero hash mark to the bounds origin of the NSScrollView’s document view (not the receiver’s client view), in the document view’s coordinate system.

- (CGFloat)originOffset

Availability
See Also
Declared In
NSRulerView.h

removeMarker:

Removes aMarker from the receiver, without consulting the client view for approval.

- (void)removeMarker:(NSRulerMarker *)aMarker

Availability
See Also
Declared In
NSRulerView.h

requiredThickness

Returns the thickness needed for proper tiling of the receiver within an NSScrollView.

- (CGFloat)requiredThickness

Discussion

This thickness is the height of a horizontal ruler and the width of a vertical ruler. The required thickness is the sum of the thicknesses of the ruler area, the marker area, and the accessory view.

Availability
See Also
Declared In
NSRulerView.h

reservedThicknessForAccessoryView

Returns the thickness reserved to contain the receiver’s accessory view, its height or width depending on the receiver’s orientation.

- (CGFloat)reservedThicknessForAccessoryView

Discussion

This thickness is automatically enlarged as necessary to the accessory view’s thickness (but never automatically reduced). To prevent retiling of a ruler view’s scroll view, you should set its maximal thickness upon creating using setReservedThicknessForAccessoryView:.

Availability
Declared In
NSRulerView.h

reservedThicknessForMarkers

Returns the thickness reserved to contain the images of the receiver’s ruler markers, the height or width depending on the receiver’s orientation.

- (CGFloat)reservedThicknessForMarkers

Discussion

This thickness is automatically enlarged as necessary to accommodate the thickest ruler marker image (but never automatically reduced). To prevent retiling of a ruler view’s scroll view, you should set its maximal thickness upon creating using setReservedThicknessForMarkers:.

Availability
See Also
Declared In
NSRulerView.h

ruleThickness

Returns the thickness of the receiver’s ruler area (the area where hash marks and labels are drawn), its height or width depending on the receiver’s orientation.

- (CGFloat)ruleThickness

Availability
See Also
Declared In
NSRulerView.h

scrollView

Returns the NSScrollView object that contains the receiver.

- (NSScrollView *)scrollView

Availability
See Also
Declared In
NSRulerView.h

setAccessoryView:

Sets the receiver’s accessory view to aView.

- (void)setAccessoryView:(NSView *)aView

Discussion

Raises an NSInternalInconsistencyException if aView is not nil and the receiver has no client view.

Availability
See Also
Declared In
NSRulerView.h

setClientView:

Sets the receiver’s client view to aView, without retaining it, and removes its ruler markers, after informing the prior client of the change using rulerView:willSetClientView:.

- (void)setClientView:(NSView *)aView

Discussion

aView must be either the document view of the NSScrollView that contains the receiver or a subview of the document view.

Availability
See Also
Declared In
NSRulerView.h

setMarkers:

Sets the receiver’s ruler markers to markers, removing any existing ruler markers and not consulting with the client view about the new markers.

- (void)setMarkers:(NSArray *)markers

Discussion

markers can be nil or empty to remove all ruler markers. Raises an NSInternalInconsistencyException if markers is not nil and the receiver has no client view.

Availability
See Also
Related Sample Code
Declared In
NSRulerView.h

setMeasurementUnits:

Sets the measurement units used by the ruler to unitName.

- (void)setMeasurementUnits:(NSString *)unitName

Discussion

unitName must have been registered with the NSRulerView class object prior to invoking this method. See the description of the class method registerUnitWithName:abbreviation:unitToPointsConversionFactor:stepUpCycle:stepDownCycle: for a list of predefined units.

Availability
See Also
Declared In
NSRulerView.h

setOrientation:

Sets the orientation of the receiver to orientation.

- (void)setOrientation:(NSRulerOrientation)orientation

Discussion

Possible values for orientation are described in “Constants.” You should never need to invoke this method directly—it’s automatically invoked by the containing NSScrollView.

Availability
See Also
Declared In
NSRulerView.h

setOriginOffset:

Sets the distance to the zero hash mark from the bounds origin of the NSScrollView’s document view (not of the receiver’s client view), in the document view’s coordinate system.

- (void)setOriginOffset:(CGFloat)offset

Discussion

The default offset is 0.0, meaning that the ruler origin coincides with the bounds origin of the document view.

Availability
See Also
Declared In
NSRulerView.h

setReservedThicknessForAccessoryView:

Sets the room available for the receiver’s accessory view to thickness.

- (void)setReservedThicknessForAccessoryView:(CGFloat)thickness

Discussion

If the ruler is horizontal, thickness is the height of the accessory view; otherwise, it’s the width. NSRulerViews by default reserve no space for an accessory view.

An NSRulerView automatically increases the reserved thickness as necessary to that of the accessory view. When the accessory view is thinner than the reserved space, it’s centered in that space. If you plan to use several accessory views of different sizes, you should set the reserved thickness beforehand to that of the thickest accessory view, in order to avoid retiling of the NSScrollView.

Availability
See Also
Related Sample Code
Declared In
NSRulerView.h

setReservedThicknessForMarkers:

Sets the room available for ruler markers to thickness.

- (void)setReservedThicknessForMarkers:(CGFloat)thickness

Discussion

The default thickness reserved for markers is 15.0 PostScript units for a horizontal ruler and 0.0 PostScript units for a vertical ruler (under the assumption that vertical rulers rarely contain markers). If you don’t expect to have any markers on the ruler, you can set the reserved thickness to 0.0.

An NSRulerView automatically increases the reserved thickness as necessary to that of its thickest marker. If you plan to use markers of varying sizes, you should set the reserved thickness beforehand to that of the thickest one in order to avoid retiling of the NSScrollView.

Availability
See Also
Related Sample Code
Declared In
NSRulerView.h

setRuleThickness:

Sets to thickness the thickness of the area where ruler hash marks and labels are drawn.

- (void)setRuleThickness:(CGFloat)thickness

Discussion

This value is the height of the ruler area for a horizontal ruler or the width of the ruler area for a vertical ruler. Rulers are by default 16.0 PostScript units thick. You should rarely need to change this layout attribute, but subclasses might do so to accommodate custom drawing.

Availability
See Also
Declared In
NSRulerView.h

setScrollView:

Sets the NSScrollView that owns the receiver to scrollView, without retaining it.

- (void)setScrollView:(NSScrollView *)scrollView

Discussion

This method is generally invoked only by the ruler’s scroll view; you should rarely need to invoke it directly.

Availability
See Also
Declared In
NSRulerView.h

trackMarker:withMouseEvent:

Tracks the mouse to add aMarker based on the initial mouse-down or mouse-dragged event theEvent.

- (BOOL)trackMarker:(NSRulerMarker *)aMarker withMouseEvent:(NSEvent *)theEvent

Discussion

Returns YES if the receiver adds aMarker, NO if it doesn’t. This method works by sending trackMouse:adding: to aMarker with theEvent and YES as arguments.

An application typically invokes this method in one of two cases. In the simpler case, the client view can implement rulerView:handleMouseDown: to invoke this method when the user presses the mouse button while the cursor is in the NSRulerView’s ruler area. This technique is appropriate when it’s clear what kind of marker will be added by clicking the ruler area. The second, more general, case involves the application providing a palette of different kinds of markers that can be dragged onto the ruler, from the ruler’s accessory view or from some other place. With this technique the palette tracks the cursor until it enters the ruler view, at which time it hands over control to the ruler view by invoking trackMarker:withMouseEvent:.

Availability
See Also
Declared In
NSRulerView.h

Delegate Methods

rulerView:didAddMarker:

Informs the client that aRulerView allowed the user to add aMarker.

- (void)rulerView:(NSRulerView *)aRulerView didAddMarker:(NSRulerMarker *)aMarker

Discussion

The client can take whatever action it needs based on this message, such as adding a new tab stop to the selected paragraph or creating a layout guideline.

Availability
See Also
Declared In
NSRulerView.h

rulerView:didMoveMarker:

Informs the client that aRulerView allowed the user to move aMarker.

- (void)rulerView:(NSRulerView *)aRulerView didMoveMarker:(NSRulerMarker *)aMarker

Discussion

The client can take whatever action it needs based on this message, such as updating the location of a tab stop in the selected paragraph, moving a layout guideline, or resizing a graphics element.

Availability
See Also
Declared In
NSRulerView.h

rulerView:didRemoveMarker:

Informs the client that aRulerView allowed the user to remove aMarker.

- (void)rulerView:(NSRulerView *)aRulerView didRemoveMarker:(NSRulerMarker *)aMarker

Discussion

The client can take whatever action it needs based on this message, such as deleting a tab stop from the paragraph style or removing a layout guideline.

Availability
See Also
Declared In
NSRulerView.h

rulerView:handleMouseDown:

Informs the client that the user has pressed the mouse button while the cursor is in the ruler area of aRulerView.

- (void)rulerView:(NSRulerView *)aRulerView handleMouseDown:(NSEvent *)theEvent

Discussion

theEvent is the mouse-down event that triggered the message. The client view can implement this method to perform an action such as adding a new marker using trackMarker:withMouseEvent: or adding layout guidelines.

Availability
Declared In
NSRulerView.h

rulerView:shouldAddMarker:

Requests permission for aRulerView to add aMarker, an NSRulerMarker being dragged onto the ruler by the user.

- (BOOL)rulerView:(NSRulerView *)aRulerView shouldAddMarker:(NSRulerMarker *)aMarker

Discussion

If the client returns YES the ruler view accepts the new marker and begins tracking its movement; if the client returns NO the ruler view refuses the new marker.

Availability
See Also
Declared In
NSRulerView.h

rulerView:shouldMoveMarker:

Requests permission for aRulerView to move aMarker.

- (BOOL)rulerView:(NSRulerView *)aRulerView shouldMoveMarker:(NSRulerMarker *)aMarker

Discussion

If the client returns YES the ruler view allows the user to move the marker; if the client returns NO the marker doesn’t move.

The user’s ability to move a marker is typically set on the marker itself, using NSRulerMarker’s setMovable: method. You should use this client view method only when the marker’s movability can vary depending on a variable condition (for example, if graphic items can be locked down to prevent them from being inadvertently moved).

Availability
See Also
Declared In
NSRulerView.h

rulerView:shouldRemoveMarker:

Requests permission for aRulerView to remove aMarker.

- (BOOL)rulerView:(NSRulerView *)aRulerView shouldRemoveMarker:(NSRulerMarker *)aMarker

Discussion

If the client returns YES the ruler view allows the user to remove the marker; if the client returns NO the marker is kept pinned to the ruler’s baseline. This message is sent as many times as needed while the user drags the marker.

The user’s ability to remove a marker is typically set on the marker itself, using NSRulerMarker’s setRemovable: method. You should use this client view method only when the marker’s removability can vary while the user drags it (for example, if the user must press the Shift key to remove a marker).

Availability
Declared In
NSRulerView.h

rulerView:willAddMarker:atLocation:

Informs the client that aRulerView will add the new NSRulerMarker, aMarker.

- (CGFloat)rulerView:(NSRulerView *)aRulerView willAddMarker:(NSRulerMarker *)aMarker atLocation:(CGFloat)location

Discussion

location is the marker’s tentative new location, expressed in the client view’s coordinate system. The value returned by the client view is actually used; the client can simply return location unchanged or adjust it as needed. For example, it may snap the location to a grid. This message is sent repeatedly to the client as the user drags the marker.

Availability
See Also
Declared In
NSRulerView.h

rulerView:willMoveMarker:toLocation:

Informs the client that aRulerView will move aMarker, an NSRulerMarker already on the ruler view.

- (CGFloat)rulerView:(NSRulerView *)aRulerView willMoveMarker:(NSRulerMarker *)aMarker toLocation:(CGFloat)location

Discussion

location is the marker’s tentative new location, expressed in the client view’s coordinate system. The value returned by the client view is actually used; the client can simply return location unchanged or adjust it as needed. For example, it may snap the location to a grid. This message is sent repeatedly to the client as the user drags the marker.

Availability
See Also
Declared In
NSRulerView.h

rulerView:willSetClientView:

Informs the client view that aRulerView is about to be appropriated by newClient.

- (void)rulerView:(NSRulerView *)aRulerView willSetClientView:(NSView *)newClient

Discussion

The client view can use this opportunity to clear any cached information related to the ruler.

Availability
Declared In
NSRulerView.h

Constants

NSRulerOrientation

These constants are defined to specify a ruler’s orientation and are used by orientation and setOrientation:.

typedef enum {
   NSHorizontalRuler,
   NSVerticalRuler
} NSRulerOrientation;

Constants
NSHorizontalRuler

Ruler is oriented horizontally.

Available in Mac OS X v10.0 and later.

Declared in NSRulerView.h.

NSVerticalRuler

Ruler is oriented vertically.

Available in Mac OS X v10.0 and later.

Declared in NSRulerView.h.

Availability
Declared In
NSRulerView.h

Next Page > Hide TOC


© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-05-23)


Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.