NSMatrix is a class used for creating groups of NSCell objects that work together in various ways.
2
votes
2answers
76 views
NSMatrix hidden on 10.7 Lion
I have two NSMatrix radio controls in different places in my app. I am developing on 10.8, using the 10.8 SDK and targeting 10.7. The matrixes work perfectly on my development computer, but when I ...
0
votes
0answers
37 views
Mouse cursor tracking sliding button highlight similar to when highlighting a file in stacks
I am writing an application that will have several NSButtonCells in a row and would like to animate a rectangle outline sliding between the buttons depending on the position of the mouse cursor ...
0
votes
0answers
34 views
How to implement a scrollable view with many scrollable subviews in it?
As part of a calandar view that I'd like to put together in OSX cocoa, I am looking for the best way to implement the following:
One scrollable area contains a monthly view. This view can be scrolled ...
2
votes
0answers
194 views
Setting NSMatrix selection programmatically causing mutex lock when trying to later get selected cell
Overview
I'm seeing a strange issue in a Mac OS X Cocoa app I'm developing w/Xcode 4.3.2 and testing on Mac OS X 10.7.5 (targeting Mac OS X 10.6): I have a basic NSMatrix radio group in my main NIB ...
1
vote
1answer
110 views
How to change selection of NSMatrix in IBAction?
I have NSRadioModeMatrix with 3 cells. - (IBAction) EnableProxy:(id)inSender is connected to NSRadioModeMatrix
- (IBAction) EnableProxy:(id)sender
{
if ([[sender selectedCell] tag]==2)
{
...
0
votes
0answers
58 views
NSMatrix oddity
It seems that calling selectCellAtRow:column right after the user has selected something in a radio button NSMatrix doesn't work. For example, the following code:
- (void)adjust
{
NSLog(@"adjust ...
0
votes
0answers
36 views
Querying Button Matrices: action vs. outlet
I've solved the problem of how to get radio button status two different ways, (1) with an action (similar to the Apple docs "Intro to Buttons: Using Radio Buttons"); and the other (2) with an outlet:
...
3
votes
0answers
123 views
Deselecting cells programmatically in NSMatrix does not work
I want to be able to deselect all the cells in an NSMatrix from my program.
I am using deSelectAllCells but it does not work correctly.
It always leaves at least one cell selected.
More specifically ...
0
votes
1answer
154 views
Selecting Item of NSMatrix programatically
How can I programmatically select one of the items in an NSMatrix? I believe it is an NSControl so I was looking in that particular documentation, however I could not find any information on the ...
0
votes
1answer
459 views
NSMatrix delegate
I have an NSMatrix in my code, specifically radio buttons. I would like to create a delegate to post a message when the radio button selection is changed.
Which delegate do I have to use? I have ...
0
votes
1answer
80 views
NSMatrix with Shadowed buttons on sides
I have an NSMatrix with a bunch of NSButtonCells as its content. I want to create an effect similar to the Xcode4 navigator area (image from Apple website), where the selected button has a recessed ...
0
votes
1answer
517 views
NSMatrix with multiple toggle buttons?
I am trying to create an NSMatrix of NSButtonCells where between zero and four buttons can be selected (toggled on). I have tried the following (test) code, but am not sure how I can provide the ...
0
votes
1answer
43 views
ObjC: Accessing code-created object in multiple functions?
Hi Community
I'm generally new to Objective-C, so I'm going to apologize in advance for my ignorance or slow understanding of any of your answers. I'm working on a project where I create a large ...
1
vote
1answer
121 views
Rotating an NSImageCell
I'm working on a project where I have a large NSMatrix of NSImageCells. I need to rotate specific individual Images in their cells (or even just rotate the cells themselves since it will look the same ...
0
votes
1answer
109 views
NSMatrix in ScrollView; origin settings are locked. Why?
I have an NSMatrix, embedded within a scroll view (using IB). It works great, using the -sizeToCells method after changing the number of rows/columns. But I would like to move the initial matrix ...
0
votes
1answer
84 views
NSMatrix access from code; initial layout done in IB
I am trying to access an NSMatrix object called "matrix" from my code. The object is generated in a NIB, but I keep having problems to access the object that was generated in the interface builder.
...
0
votes
1answer
90 views
NSMatrix, NSForm - addRow - why above and not below?
I'm running into a strange behavior with NSForm (and also NSMatrix).
(1) Using interface builder (in Xcode 4.3.1) I place an NSForm in a window. I add a NSButton and wire it to an IBAction that ...
0
votes
1answer
202 views
Using “Tab” key to move from NSTextField to NSMatrix
I have a Cocoa Form (xib) which contains some NSTextFields and an NSMatrix of NSButtonCells. I can use the "Tab" key to tab though the NSTextFields, but the NSMatrix gets skipped over.
I want to be ...
1
vote
1answer
114 views
How can I change individual cell background colors in an NSForm?
I would like to individually set cell background colors in an NSForm. I thought it would be a matter of subclassing NSForm and overriding -drawCellAtRow:column:. But -drawCellAtRow:column: only gets ...
0
votes
0answers
96 views
How can I create and display an NSMatrix using MacRuby?
From a new Xcode project, using MacRuby, what code needs to be added to applicationDidFinishLaunching to draw an NSMatrix in the main window?
I've been trying to do this using various methods ...
0
votes
2answers
278 views
Getting the column and row of an NSCell in an NSMatrix in Cocoa
Given an NSMatrix and an NSCell is there a quick way to query the matrix to know at which row and column in the matrix the cell is placed. I would like to know this upon receiving action messages from ...
0
votes
1answer
120 views
Which control can be used in order to display a dynamic form (with various types of data)?
I'm facing the following problems:
We have meta data for items, each item can be a different type of NSControl, currently NSTokenField and NSTextField, but we might need NSCombo or other types.
I ...
1
vote
1answer
175 views
setAction: Always Called with mouseUp
I have in my mac app an NSMatrix made up of NSButtonCells. I do this:
[matrix setAction:@selector(matrixbutton:)];
However this is always called when the user releases the mouse click. Is it ...
1
vote
1answer
445 views
Assigning a delegate programmatically
I am attempting to assign my view controller as the delegate to a NSTextField I created from within the application:
replaceCell = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 60, 60)];
...
0
votes
1answer
198 views
NSMatrix on NSTableColumn
Is it possible to set an NSMatrix as the cell of a NSTableColumn?. If possible, how should I do it?
Thanks in advance.
0
votes
0answers
331 views
Create and display NSMatrix in xcode 4 cocoa
I want to create NSMatrix (3x3) object and I display this matrix with for loop.but ı don't have any idea about NSmatrix.Can anyone help me on this topic ??
(if it is told understandable step by ...
0
votes
1answer
512 views
NSMatrix simple binding question
I am trying a sample application in which I have taken following controls:
i. NSMatrix (with 2 elements, serving as radio button)
ii. Button (which when clicked generates action based on radio ...
1
vote
1answer
184 views
How to know how many rows and columns are selected in a NSMatrix?
How to know how many rows and columns are selected in a NSMatrix ? I tried many things but it does not work.
I thought about first getting the selected cells by calling selectedCells method of ...
0
votes
1answer
435 views
disabling radiobutton in Cocoa
I have 2 radio buttons ( NSMatrix with 2 rows and 1 column) and have defined them in the header file as
IBOutlet NSMatrix *temp;
Now when I pick a certain option, I want to disable both these ...
3
votes
2answers
776 views
Binding to NSMatrix for BOOL attributes
I have a simple core-data entity that has a Boolean attribute called subscribedToNewsletter. I have designed my UI to represent this field as a radio button group with Yes/No as the text values (and ...
0
votes
1answer
417 views
How to track mouseover in a cell of NSMatrix?
I would like to track a mouseover event of a NSCell in a NSMatrix. The documents say I can set the NSMatrix mode to NSTrackModeMatrix and the cell will be sent the message ...
1
vote
1answer
298 views
Resize NSBrowser column to fit the width of the content
I'm using an NSBrowser (10.6SDK/Cocoa app) and I want to send a message to a browser column that will make it resize its width to match the width of the largest cell within that column.
Seems ...
0
votes
1answer
609 views
Showing image before text in NSButtonCell in NSMatrix
I am displaying buttons in NSMatrix.
My requirement is:
to change color of button title and
place an image at beginning of title, when certain condition is satisfied.
To do so, I used ...
0
votes
1answer
490 views
Passing array of custom objects to NSCell in NSMatrix programatically
I have an NSArray of custom NSObjects. Each object has some properties and an image that I would like to display in a grid view. NSMatrix appears to be a good solution to my problem, but I am having ...
0
votes
1answer
143 views
Hillegass: Cocoa Prog 3rd Ed: Ch. 33 on OpenGL: Where's the Matrix?
I'm using XCode 3.1.4, on OSX 10.5, targeting same. In Ch. 33 we're asked to drag an NSOpenGLView and an NSSlider onto the IB library, and then do Layout -> Embed Objects in ->
Matrix. Except the ...
0
votes
1answer
130 views
Interface Builder Bug?
I have a cocoa program that I have I am writing on a 10.6 system, but targeting to 10.5.
On the 10.6 system, it works fine. However, when I run it on the 10.5 machine, I get:
The sender of menu ...
1
vote
2answers
498 views
UIKit controls for a sudoku grid?
I've recently completed an algorithmic sudoku solver in C, one in which three different approaches are taken to solve the puzzle. It was a piece of code I wrote for a Project Euler solution. Quite a ...
2
votes
2answers
390 views
How can I convert this C Calendaer Code into a Objective-C syntax and have it work with matrixes
#define TRUE 1
#define FALSE 0
int days_in_month[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
char *months[]=
{
" ",
"\n\n\nJanuary",
"\n\n\nFebruary",
"\n\n\nMarch",
...
0
votes
3answers
1k views
Getting the current state of NSButtonCell in an NSMatrix
I'm using an NSMatrix as a keypad and calling:
[selectedCell setEnabled:NO];
[selectedCell setTransparent:YES];
when a key is selected (to prevent the same operation being performed again). ...
2
votes
1answer
2k views
Creating an NSMatrix programmatically, Snow Leopard
I'm trying to create an NSMatrix of an NSImageCell prototype programmatically (if you can help me doing it via Interface Builder, be my guest at answering me here)
I created a new, empty project. In ...
0
votes
1answer
622 views
Creating NSMatrix of NSImageCells
I need to create an NSMatrix with NSImageCells bound to an array controller. So the content of the NSMatrix is bound to an NSArray (so there are as many NSImageCells in the matrix as there are objects ...
