| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/AppKit.framework |
| Availability | Available in Mac OS X v10.0 and later. |
| Companion guide | |
| Declared in | NSMatrix.h |
| Related sample code |
NSMatrix is a class used for creating groups of NSCell objects that work together in various ways.
The cells in an NSMatrix object are numbered by row and column, each starting with 0; for example, the top left NSCell would be at (0, 0), and the NSCell that’s second down and third across would be at (1, 2). The NSMatrix class has the notion of a single selected cell, which is the cell that was most recently clicked or that was so designated by a selectCellAtRow:column: or selectCellWithTag: message. The selected cell is the cell chosen for action messages except for performClick: (NSCell), which is assigned to the key cell. (The key cell is generally identical to the selected cell, but can be given click focus while leaving the selected cell unchanged.) If the user has selected multiple cells, the selected cell is the one lowest and furthest to the right in the matrix of cells.
– initWithFrame:
– initWithFrame:mode:cellClass:numberOfRows:numberOfColumns:
– initWithFrame:mode:prototype:numberOfRows:numberOfColumns:
– setMode:
– mode
– setAllowsEmptySelection:
– allowsEmptySelection
– setSelectionByRect:
– isSelectionByRect
– addColumn
– addColumnWithCells:
– addRow
– addRowWithCells:
– cellFrameAtRow:column:
– cellSize
– getNumberOfRows:columns:
– insertColumn:
– insertColumn:withCells:
– insertRow:
– insertRow:withCells:
– intercellSpacing
– makeCellAtRow:column:
– numberOfColumns
– numberOfRows
– putCell:atRow:column:
– removeColumn:
– removeRow:
– renewRows:columns:
– setCellSize:
– setIntercellSpacing:
– sortUsingFunction:context:
– sortUsingSelector:
– selectCellAtRow:column:
– selectCellWithTag:
– selectAll:
– setKeyCell:
– keyCell
– setSelectionFrom:to:anchor:highlight:
– deselectAllCells
– deselectSelectedCell
– selectedCell
– selectedCells
– selectedColumn
– selectedRow
– cellAtRow:column:
– cellWithTag:
– cells
– backgroundColor
– cellBackgroundColor
– drawsBackground
– drawsCellBackground
– setBackgroundColor:
– setCellBackgroundColor:
– setDrawsBackground:
– setDrawsCellBackground:
– selectText:
– selectTextAtRow:column:
– textShouldBeginEditing:
– textDidBeginEditing:
– textDidChange:
– textShouldEndEditing:
– textDidEndEditing:
Returns a Boolean value indicating whether the receiver accepts the first mouse.
- (BOOL)acceptsFirstMouse:(NSEvent *)theEvent
This parameter is ignored.
NO if the selection mode of the receiver is NSListModeMatrix, YES if the receiver is in any other selection mode. The receiver does not accept first mouse in NSListModeMatrix to prevent the loss of multiple selections.
NSMatrix.hAdds a new column of cells to the right of the last column.
- (void)addColumn
This method raises an NSRangeException if there are 0 rows or 0 columns. This method creates new cells as needed with makeCellAtRow:column:. Use renewRows:columns: to add new cells to an empty matrix.
If the number of rows or columns in the receiver has been changed with renewRows:columns:, new cells are created only if they are needed. This fact allows you to grow and shrink an NSMatrix without repeatedly creating and freeing the cells.
This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
NSMatrix.hAdds a new column of cells to the right of the last column, using the given cells.
- (void)addColumnWithCells:(NSArray *)newCells
An array of objects to use when filling the new column starting with the object at index 0. Each object in should be an instance of NSCell or one of its subclasses (usually NSActionCell). The array should have a sufficient number of cells to fill the entire column. Extra cells are ignored, unless the matrix is empty. In that case, a matrix is created with one column and enough rows for all the elements of newCells.
This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
NSMatrix.hAdds a new row of cells below the last row.
- (void)addRow
New cells are created as needed with makeCellAtRow:column:. This method raises an NSRangeException if there are 0 rows or 0 columns. Use renewRows:columns: to add new cells to an empty matrix.
If the number of rows or columns in the receiver has been changed with renewRows:columns:, then new cells are created only if they are needed. This fact allows you to grow and shrink an NSMatrix without repeatedly creating and freeing the cells.
This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
NSMatrix.hAdds a new row of cells below the last row, using the specified cells.
- (void)addRowWithCells:(NSArray *)newCells
An array of objects to use to fill the new row, starting with the object at index 0. Each object should be an instance of NSCell or one of its subclasses (usually NSActionCell). The array should contain a sufficient number of cells to fill the entire row. Extra cells are ignored, unless the matrix is empty. In that case, a matrix is created with one row and enough columns for all the elements of newCells.
This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
NSMatrix.hReturns a Boolean value indicating whether a radio-mode matrix supports an empty selection.
- (BOOL)allowsEmptySelection
YES if it is possible to have no cells selected in a radio-mode matrix; otherwise NO.
NSMatrix.h
Returns a Boolean value indicating whether the matrix automatically resizes it cells.
- (BOOL)autosizesCells
YES if cells are resized proportionally to the receiver when its size changes (and intercell spacing is kept constant). NO if the cell size and intercell spacing remain constant.
NSMatrix.hReturns the background color of the matrix.
- (NSColor *)backgroundColor
The color used to draw the background of the receiver (the space between the cells).
NSMatrix.hReturns the cell at the specified row and column.
- (id)cellAtRow:(NSInteger)row column:(NSInteger)column
The number of the row containing the cell to return.
The number of the column containing the cell to return.
The NSCell object at the specified row and column location specified, or nil if either row or column is outside the bounds of the receiver.
NSMatrix.hReturns the background color of the matrix's cells.
- (NSColor *)cellBackgroundColor
The color used to fill the background of the receiver's cells.
NSMatrix.hReturns the class that the matrix uses to create new cells.
- (Class)cellClass
The subclass of NSCell that the receiver uses when creating new (empty) cells.
NSMatrix.hReturns the frame rectangle of the cell that would be drawn at the specified location.
- (NSRect)cellFrameAtRow:(NSInteger)row column:(NSInteger)column
The row of the cell.
The column of the cell.
The frame rectangle of the cell (whether or not the specified cell actually exists).
NSMatrix.hReturns the cells of the matrix.
- (NSArray *)cells
An array containing the cells of the receiver.
The cells in the array are row-ordered; that is, the first row of cells appears first in the array, followed by the second row, and so forth.
NSMatrix.hReturns the size of each cell in the matrix.
- (NSSize)cellSize
The width and height of each cell in the receiver (all cells in an NSMatrix are the same size).
NSMatrix.hSearches the receiver and returns the last cell matching the specified tag.
- (id)cellWithTag:(NSInteger)anInt
The tag of the cell to return.
The last (when viewing the matrix as a row-ordered array) NSCell object that has a tag matching anInt, or nil if no such cell exists
– selectCellWithTag:– setTag: (NSActionCell)NSMatrix.hReturns the delegate for messages from the field editor.
- (id)delegate
The delegate.
NSMatrix.h
Deselects all cells in the receiver and, if necessary, redisplays the receiver.
- (void)deselectAllCells
If the selection mode is NSRadioModeMatrix and empty selection is not allowed, this method does nothing.
NSMatrix.h
Deselects the selected cell or cells.
- (void)deselectSelectedCell
If the selection mode is NSRadioModeMatrix and empty selection is not allowed, or if nothing is currently selected, this method does nothing. This method doesn’t redisplay the receiver.
NSMatrix.h
Returns the matrix's double-click action method.
- (SEL)doubleAction
The action method sent by the receiver to its target when the user double-clicks an entry or NULL if there’s no double-click action.
The double-click action of an NSMatrix is sent after the appropriate single-click action (for the NSCell clicked or for the NSMatrix if the NSCell doesn’t have its own action). If there is no double-click action and the NSMatrix doesn’t ignore multiple clicks, the single-click action is sent twice.
– action (NSControl)– target (NSControl)– ignoresMultiClick (NSControl)– sendDoubleAction– setDoubleAction:NSMatrix.h
Displays the cell at the specified row and column.
- (void)drawCellAtRow:(NSInteger)row column:(NSInteger)column
The row containing the cell to draw.
The column containing the cell to draw.
– drawCell: (NSControl)– drawCellInside: (NSControl)NSMatrix.hReturns a Boolean value indicating whether the matrix draws its background.
- (BOOL)drawsBackground
YES if the receiver draws its background (the space between the cells); otherwise NO.
NSMatrix.hReturns whether the matrix draws the background within each of its cells.
- (BOOL)drawsCellBackground
YES if the receiver draws the cell background; otherwise NO.
NSMatrix.hObtains the number of rows and columns in the receiver.
- (void)getNumberOfRows:(NSInteger *)rowCount columns:(NSInteger *)columnCount
On return, the number of rows in the matrix.
On return, the number of columns in the matrix.
NSMatrix.hIndicates whether the specified point lies within one of the cells of the matrix and returns the location of the cell within which the point lies.
- (BOOL)getRow:(NSInteger *)row column:(NSInteger *)column forPoint:(NSPoint)aPoint
On return, the row of the cell containing the specified point.
On return, the column of the cell containing the specified point.
The point to locate; this point should be in the coordinate system of the receiver.
YES if the point lies within one of the cells in the receiver; NO if the point falls outside the bounds of the receiver or lies within an intercell spacing.
NSMatrix.hSearches the receiver for the specified cell and returns the row and column of the cell
- (BOOL)getRow:(NSInteger *)row column:(NSInteger *)column ofCell:(NSCell *)aCell
On return, the row in which the cell is located.
On return, the column in which the cell is located.
The cell to locate within the matrix.
YES if the cell is one of the cells in the receiver, NO otherwise.
.
NSMatrix.hHighlights or unhighlights the cell at the specified row and column location.
- (void)highlightCell:(BOOL)flag atRow:(NSInteger)row column:(NSInteger)column
YES to highlight the cell; NO to unhighlight the cell.
The row containing the cell.
The column containing the cell.
NSMatrix.hInitializes a newly allocated matrix with the specified frame.
- (id)initWithFrame:(NSRect)frameRect
The frame with which to initialize the matrix.
The NSMatrix, initialized with default parameters. The new NSMatrix contains no rows or columns. The default mode is NSRadioModeMatrix. The default cell class is NSActionCell.
.
NSMatrix.hInitializes and returns a newly allocated matrix of the specified size using cells of the given class.
- (id)initWithFrame:(NSRect)frameRect mode:(NSInteger)aMode cellClass:(Class)classId numberOfRows:(NSInteger)numRows numberOfColumns:(NSInteger)numColumns
The matrix's frame.
The tracking mode for the matrix; this can be one of the modes described in NSMatrixMode.
The class to use for any cells that the matrix creates and uses. This can be obtained by sending a class message to the desired subclass of NSCell.
The number of rows in the matrix.
The number of columns in the matrix.
The initialized instance of NSMatrix.
This method is the designated initializer for matrices that add cells by creating instances of an NSCell subclass.
NSMatrix.hInitializes and returns a newly allocated matrix of the specified size using the given cell as a prototype.
- (id)initWithFrame:(NSRect)frameRect mode:(NSInteger)aMode prototype:(NSCell *)aCell numberOfRows:(NSInteger)numRows numberOfColumns:(NSInteger)numColumns
The matrix's frame.
The tracking mode for the matrix; this can be one of the modes described in NSMatrixMode.
An instance of a subclass of NSCell, which the new matrix copies when it creates new cells.
The number of rows in the matrix.
The number of columns in the matrix.
This method is the designated initializer for matrices that add cells by copying an instance of an NSCell subclass.
NSMatrix.hInserts a new column of cells at the specified location. .
- (void)insertColumn:(NSInteger)column
The number of the column before which the new column is inserted. If column is greater than the number of columns in the receiver, enough columns are created to expand the receiver to be column columns wide.
New cells are created if needed with makeCellAtRow:column:. This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
If the number of rows or columns in the receiver has been changed with renewRows:columns:, new cells are created only if they’re needed. This fact allows you to grow and shrink an NSMatrix without repeatedly creating and freeing the cells.
NSMatrix.hInserts a new column of cells before the specified column, using the given cells.
- (void)insertColumn:(NSInteger)column withCells:(NSArray *)newCells
The column at which to insert the new cells.
An array of objects to use to fill the new column, starting with the object at index 0. Each object should be an instance of NSCell or one of its subclasses (usually NSActionCell).
If column is greater than the number of columns in the receiver, enough columns are created to expand the receiver to be column columns wide. newCells should either be empty or contain a sufficient number of cells to fill each new column. If newCells is nil or an array with no elements, the call is equivalent to calling insertColumn:. Extra cells are ignored, unless the matrix is empty. In that case, a matrix is created with one column and enough rows for all the elements of newCells.
This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
NSMatrix.hInserts a new row of cells before the specified row.
- (void)insertRow:(NSInteger)row
The location at which to insert the new row. If this is greater than the number of rows in the receiver, enough rows are created to expand the receiver to be row rows high.
New cells are created if needed with makeCellAtRow:column:. This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
If the number of rows or columns in the receiver has been changed with renewRows:columns:, then new cells are created only if they’re needed. This fact allows you to grow and shrink an NSMatrix without repeatedly creating and freeing the cells.
NSMatrix.hInserts a new row of cells before the specified row, using the given cells.
- (void)insertRow:(NSInteger)row withCells:(NSArray *)newCells
The location at which to insert the new row.
An array of objects to use when filling the new row, starting with the object at index 0. Each object in newCells should be an instance of NSCell or one of its subclasses (usually NSActionCell).
If row is greater than the number of rows in the receiver, enough rows are created to expand the receiver to be row rows high. newCells should either be empty or contain a sufficient number of cells to fill each new row. If newCells is nil or an array with no elements, the call is equivalent to calling insertRow:. Extra cells are ignored, unless the matrix is empty. In that case, a matrix is created with one row and enough columns for all the elements of newCells.
This method redraws the receiver. Your code may need to send sizeToCells after sending this method to resize the receiver to fit the newly added cells.
NSMatrix.hReturns the spacing between cells in the matrix.
- (NSSize)intercellSpacing
The vertical and horizontal spacing between cells in the receiver.
NSMatrix.h
Returns a Boolean value indicating whether the receiver is automatically scrolled.
- (BOOL)isAutoscroll
YES if the receiver will be automatically scrolled whenever the cursor is dragged outside the receiver after a mouse-down event within its bounds; otherwise NO.
NSMatrix.hReturns a Boolean value indicating whether the user can drag the cursor to select a rectangle of cells in the matrix.
- (BOOL)isSelectionByRect
YES if the user can select a rectangle of cells in the receiver by dragging the cursor, NO otherwise.
NSMatrix.hReturns the cell that will be clicked when the user presses the Space bar.
- (id)keyCell
The cell that will be clicked when the user presses the Space bar.
NSMatrix.hCreates a new cell at the location specified by the given row and column in the receiver.
- (NSCell *)makeCellAtRow:(NSInteger)row column:(NSInteger)column
The row in which to create the new cell.
The column in which to create the new cell.
The newly created cell.
If the receiver has a prototype cell, it’s copied to create the new cell. If not, and if the receiver has a cell class set, it allocates and initializes (with init) an instance of that class. If the receiver hasn’t had either a prototype cell or a cell class set, makeCellAtRow:column: creates an NSActionCell.
Your code should never invoke this method directly; it’s used by addRow and other methods when a cell must be created. It may be overridden to provide more specific initialization of cells.
NSMatrix.hReturns the selection mode of the matrix.
- (NSMatrixMode)mode
The selection mode of the receiver. Possible return values are defined in NSMatrixMode.
– initWithFrame:mode:cellClass:numberOfRows:numberOfColumns:– initWithFrame:mode:prototype:numberOfRows:numberOfColumns:– setMode:NSMatrix.hResponds to a mouse-down event.
- (void)mouseDown:(NSEvent *)theEvent
The mouse-down event.
A mouse-down event in a text cell initiates editing mode. A double click in any cell type except a text cell sends the double-click action of the receiver (if there is one) in addition to the single-click action.
Your code should never invoke this method, but you may override it to implement different mouse tracking than NSMatrix does. The response of the receiver depends on its selection mode, as explained in the class description.
NSMatrix.h
Returns the flags in effect at the mouse-down event that started the current tracking session.
- (NSInteger)mouseDownFlags
The flags in effect when the mouse-down event is generated.
The NSMatrix mouseDown: method obtains these flags by sending a modifierFlags message to the event passed into mouseDown:. Use this method if you want to access these flags. This method is valid only during tracking; it isn’t useful if the target of the receiver initiates another tracking loop as part of its action method (as a cell that pops up a pop-up list does, for example).
– sendActionOn: (NSCell)NSMatrix.hReturns the number of columns in the receiver.
- (NSInteger)numberOfColumns
The number of columns in the matrix.
NSMatrix.hReturns the number of rows in the receiver.
- (NSInteger)numberOfRows
The number of rows in the receiver.
NSMatrix.h
Looks for a cell that has the given key equivalent and, if found, makes that cell respond as if clicked.
- (BOOL)performKeyEquivalent:(NSEvent *)theEvent
The event containing the character for which to find a key equivalent.
YES if a cell in the receiver responds to the key equivalent in theEvent, NO if no cell responds.
If there’s a cell in the receiver that has a key equivalent equal to the character in [theEvent charactersIgnoringModifiers] (taking into account any key modifier flags) and that cell is enabled, that cell is made to react as if the user had clicked it: by highlighting, changing its state as appropriate, sending its action if it has one, and then unhighlighting.
Your code should never send this message—it is sent when the receiver or one of its superviews is the first responder and the user presses a key. You may want to override this method to change the way key equivalents are performed or displayed or to disable them in your subclass.
NSMatrix.hReturns the prototype cell that’s copied when a new cell is created.,
- (id)prototype
The cell that the matrix copies whenever it creates a new cell, or nil if there is none.
– initWithFrame:mode:prototype:numberOfRows:numberOfColumns:– makeCellAtRow:column:– setPrototype:NSMatrix.h
Replaces the cell at the specified row and column with the new cell.
- (void)putCell:(NSCell *)newCell atRow:(NSInteger)row column:(NSInteger)column
The cell to insert into the matrix.
The row in which to place the new cell.
The column in which to place the new cell.
NSMatrix.hRemoves the specified column at from the receiver.
- (void)removeColumn:(NSInteger)column
The column to remove.
The column's cells are autoreleased. This method redraws the receiver. Your code should normally send sizeToCells after invoking this method to resize the receiver so it fits the reduced cell count.
NSMatrix.hRemoves the specified row from the receiver.
- (void)removeRow:(NSInteger)row
The row to remove.
The row's cells are autoreleased. This method redraws the receiver. Your code should normally send sizeToCells after invoking this method to resize the receiver so it fits the reduced cell count.
NSMatrix.hChanges the number of rows and columns in the receiver.
- (void)renewRows:(NSInteger)newRows columns:(NSInteger)newCols
The new number of rows in the matrix.
The new number of columns in the matrix.
This method uses the same cells as before, creating new cells only if the new size is larger; it never frees cells. It doesn’t redisplay the receiver. Your code should normally send sizeToCells after invoking this method to resize the receiver so it fits the changed cell arrangement. This method deselects all cells in the receiver.
NSMatrix.h
Resets cursor rectangles so the cursor becomes an I-beam over text cells.
- (void)resetCursorRects
This method resets the cursor rectangles by sending resetCursorRect:inView: to each cell in the receiver. Any cell that has a cursor rectangle to set up should then send addCursorRect:cursor: back to the receiver.
– resetCursorRect:inView: (NSCell)– addCursorRect:cursor: (NSView)NSMatrix.hScrolls the receiver so the specified cell is visible.
- (void)scrollCellToVisibleAtRow:(NSInteger)row column:(NSInteger)column
The row of the cell to make visible.
The column of the cell to make visible.
This method scrolls if the receiver is in a scrolling view and row and column represent a valid cell within the receiver.
– scrollRectToVisible: (NSView)NSMatrix.hSelects and highlights all cells in the receiver.
- (void)selectAll:(id)sender
This argument is ignored.
Editable text cells and disabled cells are not selected. The receiver is redisplayed.
If the selection mode is not NSListModeMatrix, this method does nothing.
– selectCell: (NSControl)NSMatrix.hSelects the cell at the specified row and column within the receiver.
- (void)selectCellAtRow:(NSInteger)row column:(NSInteger)column
The row of the cell to select.
The column of the cell to select.
If the specified cell is an editable text cell, its text is selected. If either row or column is –1, then the current selection is cleared (unless the receiver is an NSRadioModeMatrix and doesn’t allow empty selection). This method redraws the affected cells.
– allowsEmptySelection– mode– selectCell: (NSControl)NSMatrix.hSelects the last cell with the given tag.
- (BOOL)selectCellWithTag:(NSInteger)anInt
The tag of the cell to select.
YES if the receiver contains a cell whose tag matches anInt, or NO if no such cell exists
If the matrix has at least one cell whose tag is equal to anInt, the last cell (when viewing the matrix as a row-ordered array) is selected. If the specified cell is an editable text cell, its text is selected.
– cellWithTag:– selectCell: (NSControl)NSMatrix.hReturns the most recently selected cell.
- (id)selectedCell
The most recently selected cell or nil if no cell is selected. If more than one cell is selected, this method returns the cell that is lowest and farthest to the right in the receiver.
NSMatrix.hReturns the receiver's selected and highlighted cells.
- (NSArray *)selectedCells
An array containing all of the receiver’s highlighted cells plus its selected cell.
See the class description for a discussion of the selected cell.
As an alternative to using setSelectionFrom:to:anchor:highlight: for programmatically making discontiguous selections of cells in a matrix, you could first set the single selected cell and then set subsequent cells to be highlighted; afterwards you can call selectedCells to obtain the selection of cells.
– setHighlighted: (NSCell)– selectedCellNSMatrix.h
Returns the column of the selected cell.
- (NSInteger)selectedColumn
The column number of the selected cell or –1 if no cells are selected. If cells in multiple columns are selected, this method returns the number of the last (rightmost) column containing a selected cell.
NSMatrix.h
Returns the row of the selected cell.
- (NSInteger)selectedRow
the row number of the selected cell, or –1 if no cells are selected. If cells in multiple rows are selected, this method returns the number of the last row containing a selected cell.
NSMatrix.hSelects text in the currently selected cell or in the key cell.
- (void)selectText:(id)sender
If the currently selected cell is editable and enabled, its text is selected. Otherwise, the key cell is selected.
– keyCell– selectText: (NSTextField)NSMatrix.hSelects the text in the cell at the specified location and returns the cell.
- (id)selectTextAtRow:(NSInteger)row column:(NSInteger)column
The row containing the text to select.
The column containing the text to select.
If it is both editable and selectable, the cell at the specified row and column. If the cell at the specified location, is either not editable or not selectable, this method does nothing and returns nil. If row and column indicate a cell that is outside the receiver, this method does nothing and returns the receiver.
NSMatrix.hIf the selected cell has both an action and a target, sends its action to its target.
- (BOOL)sendAction
YES if an action was successfully sent to a target. If the selected cell is disabled, this method does nothing and returns NO.
If the cell has an action but no target, its action is sent to the target of the receiver. If the cell doesn’t have an action, or if there is no selected cell, the receiver sends its own action to its target.
– sendDoubleAction– action (NSCell)– target (NSCell)NSMatrix.hIterates through the cells in the receiver, sending the specified selector to an object for each cell.
- (void)sendAction:(SEL)aSelector to:(id)anObject forAllCells:(BOOL)flag
The selector to send to the object for each cell. This must represent a method that takes a single argument: the id of the current cell in the iteration. aSelector’s return value must be a BOOL. If aSelector returns NO for any cell, sendAction:to:forAllCells: terminates immediately, without sending the message for the remaining cells. If it returns YES, sendAction:to:forAllCells: proceeds to the next cell.
The object that is sent the selector for each cell in the matrix.
YES if the method should iterate through all cells in the matrix; NO if it should iterate through just the selected cells in the matrix.
Iteration begins with the cell in the upper-left corner of the receiver, proceeding through the appropriate entries in the first row, then on to the next.
This method is not invoked to send action messages to target objects in response to mouse-down events in the receiver. Instead, you can invoke it if you want to have multiple cells in an NSMatrix interact with an object. For example, you could use it to verify the titles in a list of items or to enable a series of radio buttons based on their purpose in relation to anObject.
NSMatrix.hSends the double-click action message to the target of the receiver.
- (void)sendDoubleAction
If the receiver doesn't have a double-click action, the double-click action message of the selected cell (as returned by selectedCell) is sent to the selected cell’s target. Finally, if the selected cell also has no action, then the single-click action of the receiver is sent to the target of the receiver.
If the selected cell is disabled, this method does nothing.
Your code shouldn’t invoke this method; it’s sent in response to a double-click event in the NSMatrix. Override it if you need to change the search order for an action to send.
– sendAction– ignoresMultiClick (NSControl)NSMatrix.hSets whether a radio-mode matrix allows an empty selection.
- (void)setAllowsEmptySelection:(BOOL)flag
YES to make the receiver allow one or zero cells to be selected. NO if the receiver should allow one and only one cell (not zero cells) to be selected. This setting has effect only in the NSRadioModeMatrix selection mode.
NSMatrix.h
Sets whether the receiver is automatically scrolled.
- (void)setAutoscroll:(BOOL)flag
YES to indicate that the receiver, if it is in a scrolling view, should be automatically scrolled whenever the cursor is dragged outside the receiver after a mouse-down event within the bounds of the receiver.
NSMatrix.h
Sets whether the cell sizes change when the receiver is resized.
- (void)setAutosizesCells:(BOOL)flag
YES to specify that, whenever the receiver is resized, the sizes of the cells change in proportion, keeping the intercell space constant; further, this method verifies that the cell sizes and intercell spacing add up to the exact size of the receiver, adjusting the size of the cells and updating the receiver if they don’t. If flag is NO, then the intercell spacing and cell size remain constant.
NSMatrix.hSets the background color for the receiver and redraws the receiver.
- (void)setBackgroundColor:(NSColor *)aColor
The background color used to fill the space between cells or the space behind any non-opaque cells. The default background color is the color returned by the NSColor method controlColor.
NSMatrix.hSets the background color for the cells in the receiver
- (void)setCellBackgroundColor:(NSColor *)aColor
The background color used to fill the space behind non-opaque cells. The default cell background color is the color returned by the NSColor method controlColor
.
NSMatrix.hConfigures the receiver to use instances of the specified class when creating new cells.
- (void)setCellClass:(Class)aClass
The class to use when creating new cells. This should be the id of a subclass of NSCell, which can be obtained by sending the class message to either the NSCell subclass object or to an instance of that subclass. The default cell class is that set with the class method setCellClass:, or NSActionCell if no other default cell class has been specified.
You need to use this method only with matrices initialized with initWithFrame:, because the other initializers allow you to specify an instance-specific cell class or cell prototype.
– addColumn– addRow– insertColumn:– insertRow:– makeCellAtRow:column:– setPrototype:– cellClassNSMatrix.h
Sets the width and height of each of the cells in the matrix.
- (void)setCellSize:(NSSize)aSize
The new width and height of cells in the receiver.
This method may change the size of the receiver. It does not redraw the receiver.
– calcSize (NSControl)– cellSizeNSMatrix.h
Sets the delegate for messages from the field editor.
- (void)setDelegate:(id)anObject
The delegate.
NSMatrix.h
Sets the action sent to the target of the receiver when the user double-clicks a cell.
- (void)setDoubleAction:(SEL)aSelector
The selector to make the double-click action of the receiver.
A double-click action is always sent after the appropriate single-click action, which is the cell’s single-click action, if it has one, or the receiver single-click action, otherwise. If aSelector is a non-NULL selector, this method also sets the ignoresMultiClick flag to NO; otherwise, it leaves the flag unchanged.
If an NSMatrix has no double-click action set, then by default a double click is treated as a single click.
For the method to have any effect, the receiver’s action and target must be set to the class in which the selector is declared. See Action Messages for additional information on action messages.
– sendDoubleAction– setAction: (NSControl)– setTarget: (NSControl)– doubleActionNSMatrix.hSets whether the receiver draws its background.
- (void)setDrawsBackground:(BOOL)flag
YES if the receiver should draw its background (the space between the cells); NO if it should not.
NSMatrix.hSets whether the receiver draws the background within each of its cells.
- (void)setDrawsCellBackground:(BOOL)flag
YES if the receiver should draw the background in its cells; NO if it should not.
NSMatrix.h
Sets the spacing between cells in the matrix.
- (void)setIntercellSpacing:(NSSize)aSize
The vertical and horizontal spacing to use between cells in the receiver. By default, both values are 1.0 in the receiver’s coordinate system.
NSMatrix.hSets the cell that will be clicked when the user presses the Space bar.
- (void)setKeyCell:(NSCell *)aCell
The cell to set as the key cell.
NSMatrix.hSets the selection mode of the receiver.
- (void)setMode:(NSMatrixMode)aMode
The selection mode of the matrix. Possible values are listed in NSMatrixMode.
– initWithFrame:mode:cellClass:numberOfRows:numberOfColumns:– initWithFrame:mode:prototype:numberOfRows:numberOfColumns:– modeNSMatrix.hSets the prototype cell that’s copied whenever the matrix creates a new cell.
- (void)setPrototype:(NSCell *)aCell
The cell to copy when creating new cells.
NSMatrix.hSpecifies whether the cells in the matrix are scrollable.
- (void)setScrollable:(BOOL)flag
YES to make all the cells in the receiver scrollable, so the text they contain scrolls to remain in view if the user types past the edge of the cell. If flag is NO, all cells are made nonscrolling. The prototype cell, if there is one, is also set accordingly
– prototype– setScrollable: (NSCell)NSMatrix.h
Sets whether the user can select a rectangle of cells in the receiver by dragging the cursor.
- (void)setSelectionByRect:(BOOL)flag
YES if the matrix should allow the user to select a rectangle of cells by dragging. NO if selection in the matrix should be on a row-by-row basis. The default is YES.
NSMatrix.hProgrammatically selects a range of cells.
- (void)setSelectionFrom:(NSInteger)startPos to:(NSInteger)endPos anchor:(NSInteger)anchorPos highlight:(BOOL)lit
The position of the cell that marks where the user would have pressed the mouse button.
The position of the cell that marks where the user would have released the mouse button.
The position of the cell to treat as the last cell the user would have selected. To simulate Shift-dragging (continuous selection) anchorPos should be the endPos used in the last method call. To simulate Command-dragging (discontinuous selection), anchorPos should be the same as this method call’s startPos.
YES if cells selected by this method should be highlighted.
startPos, endPos, and anchorPos are cell positions, counting from 0 at the upper left cell of the receiver, in row order. For example, the third cell in the top row would be number 2.
To simulate dragging without a modifier key, deselecting anything that was selected before, call deselectAllCells before calling this method.
NSMatrix.h
Sets the state of the cell at specified location.
- (void)setState:(NSInteger)value atRow:(NSInteger)row column:(NSInteger)column
The value to assign to the cell.
The row in which the cell is located.
The column in which the cell is located.
For radio-mode matrices, if value is nonzero the specified cell is selected before its state is set to value. If value is 0 and the receiver is a radio-mode matrix, the currently selected cell is deselected (providing that empty selection is allowed).
This method redraws the affected cell.
NSMatrix.hSets whether pressing the Tab key advances the key cell to the next selectable cell.
- (void)setTabKeyTraversesCells:(BOOL)flag
YES if pressing the Tab key should advance the key cell to the next selectable cell in the receiver. If this is NO or if there aren't any selectable cells after the current one, the next view in the window becomes key when the user presses the Tab key.
Pressing Shift-Tab causes the key cell to advance in the opposite direction (if flag is NO, or if there aren’t any selectable cells before the current one, the previous view in the window becomes key).
– selectKeyViewFollowingView: (NSWindow)– selectNextKeyView: (NSWindow)– setKeyCell:– tabKeyTraversesCellsNSMatrix.hSets the tooltip for the cell.
- (void)setToolTip:(NSString *)toolTipString forCell:(NSCell *)cell
The string to use as the cell's tooltip (or help tag).
The cell to which to assign the tooltip.
NSMatrix.h
Specifies whether the receiver's size information is validated.
- (void)setValidateSize:(BOOL)flag
YES to assume that the size information in the receiver is correct. If flag is NO, the NSControl method calcSize will be invoked before any further drawing is done.
NSMatrix.hChanges the width and the height of the receiver’s frame so it exactly contains the cells.
- (void)sizeToCells
This method does not redraw the receiver.
– setFrameSize: (NSView)– sizeToFit (NSControl)NSMatrix.hSorts the receiver’s cells in ascending order as defined by the specified comparison function.
- (void)sortUsingFunction:(int (*)(id, id, void *))comparator context:(void *)context
The function to use when comparing cells. The comparison function is used to compare two elements at a time and should return NSOrderedAscending if the first element is smaller than the second, NSOrderedDescending if the first element is larger than the second, and NSOrderedSame if the elements are equal.
Context passed to the comparison function as its third argument, each time its called. This allows the comparison to be based on some outside parameter, such as whether character sorting is case-sensitive or case-insensitive.
– sortUsingFunction:context: (NSMutableArray)NSMatrix.h
Sorts the receiver’s cells in ascending order as defined by the comparison method.
- (void)sortUsingSelector:(SEL)comparator
The comparison method.
The comparator message is sent to each object in the matrix and has as its single argument another object in the array. The comparison method is used to compare two elements at a time and should return NSOrderedAscending if the receiver is smaller than the argument, NSOrderedDescending if the receiver is larger than the argument, and NSOrderedSame if they are equal.
– sortUsingSelector: (NSMutableArray)NSMatrix.hReturns a Boolean value indicating whether pressing the Tab key advances the key cell to the next selectable cell.
- (BOOL)tabKeyTraversesCells
YES if pressing the Tab key advances the key cell to the next selectable cell in the receiver; otherwise NO.
NSMatrix.hInvoked when there’s a change in the text after the receiver gains first responder status.
- (void)textDidBeginEditing:(NSNotification *)notification
The NSControlTextDidBeginEditingNotification notification.
This method’s default behavior is to post an NSControlTextDidBeginEditingNotification along with the receiving object to the default notification center. The posted notification’s user info contains the contents of notification’s user info dictionary, plus an additional key-value pair. The additional key is “NSFieldEditor”; the value for this key is the text object that began editing.
NSMatrix.hInvoked when a key-down event or paste operation occurs that changes the receiver’s contents.
- (void)textDidChange:(NSNotification *)notification
The NSControlTextDidChangeNotification notification.
This method’s default behavior is to pass this message on to the selected cell (if the selected cell responds to textDidChange:) and then to post an NSControlTextDidChangeNotification along with the receiving object to the default notification center. The posted notification’s user info contains the contents of notification’s user info dictionary, plus an additional key-value pair. The additional key is “NSFieldEditor”; the value for this key is the text object that changed.
NSMatrix.hInvoked when text editing ends.
- (void)textDidEndEditing:(NSNotification *)notification
The NSControlTextDidEndEditingNotification notification.
This method’s default behavior is to post an NSControlTextDidEndEditingNotification along with the receiving object to the default notification center. The posted notification’s user info contains the contents of notification’s user info dictionary, plus an additional key-value pair. The additional key is “NSFieldEditor”; the value for this key is the text object that began editing. After posting the notification, textDidEndEditing: sends an endEditing: message to the selected cell, draws and makes the selected cell key, and then takes the appropriate action based on which key was used to end editing (Return, Tab, or Back-Tab).
NSMatrix.hRequests permission to begin editing text.
- (BOOL)textShouldBeginEditing:(NSText *)textObject
The text object requesting permission to begin editing.
YES if the text object should proceed to make changes. If the delegate returns NO, the text object abandons the editing operation.
The default behavior of this method is to return the value obtained from control:textShouldBeginEditing:, unless the delegate doesn’t respond to that method, in which case it returns YES, thereby allowing text editing to proceed.
This method is invoked to let the NSTextField respond to impending changes to its text. This method’s default behavior is to send control:textShouldBeginEditing: to the receiver’s delegate (passing the receiver and textObject as parameters).
NSMatrix.hRequests permission to end editing.
- (BOOL)textShouldEndEditing:(NSText *)textObject
The text object requesting permission to end editing.
YES if the text object should proceed to finish editing and resign first responder status. If the delegate returns NO, the text object selects all of its text and remains the first responder.
The textShouldEndEditing: method returns NO if the text field contains invalid contents; otherwise it returns the value passed back from control:textShouldEndEditing:.
This method is invoked to let the NSTextField respond to impending loss of first-responder status. This method’s default behavior checks the text field for validity; providing that the field contents are deemed valid, and providing that the delegate responds, control:textShouldEndEditing: is sent to the receiver’s delegate (passing the receiver and textObject as parameters).
NSMatrix.hReturns the tooltip for the specified cell.
- (NSString *)toolTipForCell:(NSCell *)cell
The cell for which to return the tooltip.
The string used as the cell's tooltip.
NSMatrix.hThese constants determine how NSCell objects behave when an NSMatrix object is tracking the mouse.
typedef enum _NSMatrixMode { NSRadioModeMatrix = 0, NSHighlightModeMatrix = 1, NSListModeMatrix = 2, NSTrackModeMatrix = 3 } NSMatrixMode;
NSTrackModeMatrixThe NSCell objects are asked to track the mouse with trackMouse:inRect:ofView:untilMouseUp: whenever the cursor is inside their bounds. No highlighting is performed.
Available in Mac OS X v10.0 and later.
Declared in NSMatrix.h.
NSHighlightModeMatrixAn NSCell is highlighted before it’s asked to track the mouse, then unhighlighted when it’s done tracking.
Available in Mac OS X v10.0 and later.
Declared in NSMatrix.h.
NSRadioModeMatrixSelects no more than one NSCell at a time.
Any time an NSCell is selected, the previously selected NSCell is unselected.
Available in Mac OS X v10.0 and later.
Declared in NSMatrix.h.
NSListModeMatrixNSCell objects are highlighted, but don’t track the mouse.
Available in Mac OS X v10.0 and later.
Declared in NSMatrix.h.
NSMatrix.h
© 2008 Apple Inc. All Rights Reserved. (Last updated: 2008-10-15)