The NSButtonCell class is a subclass of NSActionCell used to implement the user interfaces of push buttons, checkboxes (switches), and radio buttons. It can also be used for any other region of a view that’s designed to send a message to a target when clicked. The NSButton subclass of NSControl uses ...

learn more… | top users | synonyms

1
vote
1answer
80 views

How to set background color while selecting row of NSOutlineView

I am having a big problem and not able to solve it. I have an NSOutlineView which contains a NSButtonCell which is bound to arrayController from there it is setting its Title and based on some value ...
0
votes
0answers
54 views

How to Get state of NSButton (CheckBox) from NSMatrix

Why my code changes the state of selected NSButtenCell to NSOnState after first run? NSButtonCell *b=[[NSButtonCell alloc] init]; b=[self.myMatrix selectedCell]; [self.myMatrix selectCellAtRow:0 ...
0
votes
0answers
38 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
2answers
86 views

How to programmatically allocate a sublcass of NSButton with a custom NSButtonCell?

I' m trying to create a subclass of NSButton thats use also a subclass of NSButtonCell but I can' t do that in code! This is my NSButonCell subclass that's works well if I create the button in IB ...
0
votes
2answers
27 views

Is an created NSButtonCell unique?

So, is the button identifiable? I need to identify a cell-botton (Button Cell) in aNSTableView in order to detect if it was pressed already. The table can always change by user input. My bright idea ...
1
vote
1answer
172 views

Get hover event over NSButton to show an image

So I am trying to make an application that has a button (doesn't have to be a button) that when you hover over it a pop-up window appears. I have been able to print a message to the log when i hover ...
1
vote
2answers
125 views

Binding BOOL value to NSArrayController

I have a tableview bound with array controller.There are two columns in table view,one is string and another one is BOOL.I am getting string values in tableview.For displaying BOOL values in ...
0
votes
0answers
103 views

Cocoa: Change cursor when over a NSButtonCell

Similar to this question: Cocoa: change cursor when it's over an NSButton, i'm looking to change the cursor when the user mouses over a NSButtonCell. Unlike a NSButton, NSButtonCell does not have ...
1
vote
0answers
41 views

How to create NSbutton insode NStextfield

In my application i need to show one label which showing the content and in the end of the label i need to show one button with close icon that will perform some action. can any one suggest way how to ...
0
votes
0answers
56 views

NSButtonCell.setTilte doesen't work for me

I have an NSTableView with just one column. This coloum contains a Check Box Cell (NSButtonCell). Now I want to set the checkbox's state and the title next to the checkbox. To do so, I have tried: ...
0
votes
1answer
226 views

Programmatically create NSButton and set custom NSButtonCell

Ok, this seems like it should very simple, but I'm coming from iOS and and I must be missing something very obvious. So I have a custom subclass of NSButtonCell. If I create a NSButton in IB and ...
0
votes
2answers
147 views

Programatically created NSButtons won't press

My programmatically created buttons essentially aren't being pushed when I click them. Any idea why? Nothing happens, the action doesn't fire, the image doesn't change to the alternate image, etc. ...
1
vote
0answers
89 views

imageRectForBounds not called in NSButtonCell subclass

I needed to create a NSButton with both image and title but I didn't like any of the standard positioning methods in cocoa. I decided to subclass the button cell and override the ...
1
vote
0answers
130 views

How to get title of NSButtonCell in delegate method of NSOutlineView

I am using NSButtonCell subclass to display checkbox , image and label in same cell. Now i want to edit label in outlineView on double click or on enter key. NSButtonCell subclass: - (void)dealloc { ...
1
vote
0answers
75 views

NSButtonCell when clicked disable other tablecolumn NSButtonCell

I have a NSTableView with two columns; A and B. In column A and B there is a NSButtonCell (checkbox). When I check the NSButtonCell checkbox in column A (value = 1) the NSButtonCell checkbox in ...
1
vote
0answers
106 views

Get highlighted state for NSButtonCell

I have a NSTableView that contains a NSButtonCell in one of the columns. To draw a custom background in neighbor cells (based on NSTextFieldCell) I use isHighlighted method: - ...
1
vote
1answer
318 views

How to deselect NSButtonCell in NSMatrix

I have two radio buttons in my NSMatrix with mode NSRadioModeMatrix. By default the 1st Radio button is clicked. My Problem is when i click on my Second Radio Button "Let me Choose" and click on ...
0
votes
0answers
149 views

why custom NSButtonCell's title is not aliased under Snow Leopard only?

Here is a drawTitle method I use in my custom NSButtonCell class: - (NSRect)drawTitle:(NSAttributedString *)title withFrame:(NSRect)frame inView:(NSView *)controlView { NSGraphicsContext *context ...
0
votes
1answer
81 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
2answers
363 views

NSMattrix IBAction get selected radio

I've put a NSMattrix on a NSWindow. This NSMattrix contains 2 radio buttons. I declared 3 IBOutlets: - One for the NSMattrix - One for each radio button (NSButtonCell). I declared 1 IBAction method: ...
2
votes
0answers
169 views

NSButton loses template image styling

I'm trying to create an NSButton with a transparent background while using template styled images. When turning off the borders the button images lose their template styling. How would I go about ...
0
votes
0answers
177 views

NSButtonCell check box won't change state

I have an NSTableView, where one of the columns ("column2"), contains an NSCheckBoxCell, which is populated for every row in the table. I want to make it so that when a user clicks on the check box, ...
0
votes
1answer
520 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
644 views

NSTableView data source editing

I'm just a beginner in Cocoa developing for Snow Leopard and I have problem with editing values in data array that displayed in NSTableView. I tried to edit some property of my object in ...
2
votes
1answer
2k views

NSButtonCell hover image, transparent background on click?

I've implemented an NSButton with an image in it. When the user hovers it, the image changes to something else, and then back on. Normal Status : On Hover : The code I'm using for the ...
2
votes
3answers
375 views

iPhoto like NSButton

How can I create a iPhoto like button like in the picture I've tried out several things using round textured buttons or setting the button's image as template. But none of these approaches really ...
2
votes
1answer
1k views

NSButtonCell in NSTableView: click handling

I set NSButtonCell as a cell type in a Table Column in my NSTableView. I implemented an IBAction method, but I can't wire it with NSButtonCell in IB - the wire don't want to highlight a button from ...
0
votes
1answer
539 views

Rounded NSImage corners in a NSButtonCell

I have a NSMatrix with a couple of NSButtons in it which have no Text but are only images. One of the images is downloaded from the internet and I would like to have it rounded corners in my OS X ...
3
votes
1answer
401 views

How to show button cell (check box) title in table view, using bindings

I am trying a simple application where I have a mutable array of mutable dictionaries, such as - NSMutableDictionary *sample6 = [[NSMutableDictionary alloc] ...
0
votes
1answer
950 views

NSButtonCell of Check type within NSTableView does not allow to have value changed

I have window with 3 table views (10.7.2, Xcode 4.2). They are all created in IB and NSButtonCells are connected with outlets. I created controller class and I filled all three views with some ...
0
votes
1answer
340 views

NSButton - Gray rectangle whenever the custom button is clicked

Can I just want to replace the appearance by setting a property of NSButton? I am able to change the appearance by using the "image" property of the button but I got an ugly gray rectangle whenever ...
2
votes
2answers
2k views

NSButton white background when clicked

When creating Cocoa bevel button with custom image and alternate image I'm having a strange behavior. In the pressed state the button background becomes white. I'm adding the button as subview of a ...
1
vote
1answer
945 views

How to create a NSTextFieldCell, that in edit mode displays a custom view instead of NSTextField?

I have a tableView, with 3 columns containing NSTextFieldCell. Everything is populated with bindings. The text of the cells of one of the column is computed and is not editable directly. For this ...
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
2answers
1k views

NSButtonCell subclass' button type not working

I subclassed the NSButtonCell class to give a different look to my button. I have the drawing code working fine. It's a rounded button filled with CGGradients to look like the iTunes playback ...
4
votes
2answers
1k views

NSButtonCell vs NSButton

I've been reading through the Apple documentation about NSButtons and cells and I really can't seem to understand the distinction between the two. Adding to this complexity, it looks like both of them ...
2
votes
2answers
2k views

Simple mouseover effect on NSButton

This should be simple but I am on it since yesterday without result. I am creating a custom NSButtonCell for a custom rendering. Now I want to have different aspect depending if the mouse if over the ...
0
votes
1answer
349 views

Prevent NSButtonCell image from drawing outside of its containing NSScrollView

I have asked (and answered) a very similar question before. That question was able to be solved because I knew the dirtyRect, and thus, knew where I should draw the image. Now, I am seeing the same ...
0
votes
1answer
673 views

conditionally adding NSButtonCell to a column of NSTableview and allowing button cell to take action even if row is not allowed to be select

I am developing a desktop application for 10.5, 10.6. My requirements are as follows: I am already displaying a tableview with one column. The tableview is disabled and I do not allow the user to ...
0
votes
1answer
727 views

Getting checkboxes to reflect their state in an NSTableColumn

I'm making this program that has an NSTableView with four columns, two of which are make of checkboxes. I'm only trying to get one working right now and I've gotten stuck. First, here's my relevant ...
1
vote
2answers
1k views

Custom NSButton and NSButtonCell

I'm trying to create a custom button look. From what I've gathered, NSButtonCell does the drawing, so I should actually be overwriting that instead. But the issue is, my CustomButton class has other ...
2
votes
1answer
1k views

NSButtonCell as Checkbox in a NSTableVIew don't get selected

I have a NSTableVIew for multi-selection purposes with two columns, the first one with a NSButtonCell as checkbox and the other one as a title. The idea is to check the items to be added afterwords ...
0
votes
1answer
610 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 ...
1
vote
3answers
2k views

Getting Custom NSCell with NSButtonCell instance to handle mouse click/mouse events

OK I'm really stumped on this one. I want to make a checkbox with a NSTextFieldCell combined together. It's important that the checkbox goes ON if the mouse hits the box, NOT the text. I've ...
2
votes
1answer
4k views

create custom button with image in interface builder

How do I create a button with an images for normal & highlighted states in interface builder for cocoa application? I need a button like custom button in cocoa-touch and provide a graphics for ...
1
vote
2answers
1k views

Problems with NSButtonCell action

For some reason the NSButtonCell for my table view is passing the wrong object as a parameter. I am trying to read the tag of the NSButtonCell after it is clicked. Here is a simplified version of my ...
8
votes
2answers
5k views

NSButtonCell inside custom NSCell

in my cocoa application, I need a custom NSCell for an NSTableView. This NSCell subclass contains a custom NSButtonCell for handling a click (and two or three NSTextFieldCells for textual contents). ...
2
votes
1answer
569 views

Checkbox on table column won't register click

I've a table view to which I add columns dynamically. It must be done this way because I can't predict how many or which columns I will need. Some columns are checkboxes but I can't click on them ...