Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k 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). ...
3
votes
3answers
93 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
142 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 ...
2
votes
1answer
133 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] ...
2
votes
2answers
356 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
1answer
395 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 ...
1
vote
1answer
272 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
56 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
746 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 ...
1
vote
1answer
611 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 ...
1
vote
1answer
1k 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
609 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 ...
0
votes
1answer
87 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 ...
0
votes
1answer
141 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
152 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 ...
0
votes
1answer
211 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 ...
0
votes
2answers
358 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 ...
0
votes
2answers
507 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
198 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
289 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 an 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
549 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 ...
0
votes
1answer
329 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
3answers
1k 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 ...