0
votes
0answers
30 views

Need help drawing OpenGL Triangle using mouseDown event in Cocoa

so this is the first time I've ever programmed in Xcode or Objective C (some prior experience in Java and Python) and for my final project in my senior high school computer science course, I wanted to ...
0
votes
1answer
31 views

Custom NSTextFieldCell for NSOutlineView

I am wondering how to draw a NSTextFieldCell like the one in NetNewsWire. I have already subclassed a NSTextFieldCell for the group cell and specified it in my PXSourceList's dataCellForItem. The ...
0
votes
0answers
15 views

Drawing over a draw-over?

I'm not big into Quartz for drawing, but the app I am working with is. It uses Quartz (CGContent, blah, blah) to do custom drawing in the titlebar. Now, I am moving the NSWindowButtons down, which I ...
-2
votes
1answer
57 views

how to draw rect over screen on OS X?

I want draw rectangle over current screen on OS X like rectangle from Grab app when user select area to capture. Could anybody give me advice about how I can do this?
1
vote
1answer
57 views

How to erase drawn objects in Cocoa?

I created a drawing program. It works great, you can import an image and annotate it with different colors and brush configurations. My problem is I can't figure out how to allow erasures. I wrote ...
0
votes
1answer
77 views

Setting composite drawing mode causing black holes/patches on NSWindow

I wanted to draw a shape, over it I wanted to draw the smaller transparent shape. -(void) drawRect:(NSRect)dirtyRect { //clear everything { [[NSColor whiteColor] set]; ...
0
votes
1answer
46 views

CALayer blurry for odd numbered sizes

I am setting the -contents property of a CALayer to various CGImageRefs and I noticed that when the image I set the contents to has an odd numbered size the image becomes blurry. My layer frame itself ...
0
votes
1answer
124 views

How can i draw NSView correctly to PDF context?

I've got NSView and to this NSViewI added some subviews which are subclass of NSView (named: Square). Squares are 50x50 on different positions. I want to render this NSViews with background color Red ...
0
votes
0answers
111 views

Draw to UIView subview using an instance of that subview

I am trying to draw to a UIView subview from another class. MainViewController with a view that I have dragged a UIView into in IB. I have created a DrawView class and changed the UIView's(the one ...
-4
votes
1answer
79 views

How to deal with drawRect in cocoa?

I have to draw lines few times. I do this now: - (void)drawRect:(NSRect)dirtyRect { [NSGraphicsContext saveGraphicsState]; NSBezierPath *path = [NSBezierPath bezierPath]; ...
1
vote
1answer
138 views

Custom NSTextView border issues

I want to make NSTextView dot border, my drawRect: code is below - (void)drawRect:(NSRect)dirtyRect { [super drawRect:dirtyRect]; CGFloat lineDash[2]; lineDash[0] = 1.0; lineDash[1] ...
1
vote
2answers
117 views

Is there any way to make an NSView redraw more frequently?

I currently have some code that does something like this (massively simplified, but enough to illustrate the point): @property (weak) IBOutlet CustomViewClass *customView; ... for (int i=0; ...
2
votes
2answers
220 views

Cocoa draw text on NSImage

I have an NSSegmentedControl(todayButton) that contains an image. I'm trying to draw some text onto the image using the following: NSImage *img = [todayButton imageForSegment:0] [img lockFocus] ...
1
vote
1answer
96 views

Why doesn't button draw correctly when using Auto Layout?

I created a new Cocoa Application which is using auto-layout. On the window, I added a NSView which nearly fills the window. Inside of this NSView, I placed a button in the upper left corner. When I ...
0
votes
0answers
114 views

Drawing NSView's subviews manually

I'm writing a custom NSView that needs to animate its subviews by applying NSAffineTransformation before drawing them. I am looking for a method that draws the view's subviews so I can override it in ...
0
votes
1answer
76 views

Capturing an offline NSView to an NSImage

I'm trying to make a custom animation for replacing an NSView with another. For that reason I need to get an image of the NSView before it appears on the screen. The view may contain layers and ...
3
votes
1answer
333 views

NSBezierPath drawing

I want to do a rounded rectangle outline on an NSImage and I figured that using NSBezierPath would be the best way. However, I ran into a problem: instead of drawing a nice curve, I get this: For ...
1
vote
2answers
216 views

Adding an image border

OK, this is what I'm trying to do : Get an NSImage containing, let's say a photo (1000+ x 1000+ dimensions). Get another NSImage containing just a tranparent background and a simple black border ...
0
votes
1answer
88 views

Drawing on NSBitmapImageRep

I'm trying to create in-memory image, draw on it and save to disk. Current code is: NSBitmapImageRep *rep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL ...
1
vote
1answer
361 views

Make independent copy of UIBezierPath?

I have a complex UIBezierCurve which I need to draw once with some particular line parameters, and then draw it again as overlay with other line parameters, but also I need the last part of the curve ...
0
votes
0answers
100 views

Cocoa Drawing Mouse Position

I have written my own solution for drawing charts and graphs. It is based on NSGraphicsContext, NSRectFill, etc. and it uses NSAffineTransform to position individual elements. I use stacked ...
2
votes
2answers
361 views

Is there a way to get the x,y co-ordinates of all points of a NSBezierPath object?

If i have a NSBezierPath object , is there a way to get co-ordinates(x,y) of all the points drawn. I want to move a NSRect along the path.
1
vote
0answers
152 views

NSView draw priority strange bug

I have NSTableView for displaying some information and sometimes i need to show additional information in my custom view above NSTableView, but when I'm scrolling table MyCustomView draws above ...
3
votes
1answer
290 views

Missing subpixel smoothing when using NSString drawAtPoint:

I have a custom status item view where I draw a string using NSString's drawAtPoint:withAttributes:. When comparing to the system clock with the same text, it seems that my text is missing subpixel ...
1
vote
0answers
106 views

How to redraw NSTableView(NSScrollView) focusring?

What function I need to override to draw custom focus ring around NSTableView(or I need to subclass NSScrollView what contains table)? May be there are some examples of custom focus ring drawing?
-1
votes
1answer
241 views

Cocoa and OpenGL: fastest way to draw array of rectangles

Background: I'm building a screensaver in Cocoa where some C code is generating a 2d array of values (between 0 and 1) representing amplitudes. I then want to display this on screen as a grid with the ...
1
vote
0answers
115 views

How can I render text in a custom Cocoa NSView view with non-uniform scaling?

I'm rendering a chart in a subclass of NSView; I've set the bounds of the custom view to reflect the boundaries of the chart in real-world units (i.e., seconds on the horizontal axis, feet on the ...
1
vote
0answers
115 views

Document-based Core-Data drawing application under OS-X

I'm developing a document-based drawing application under OS-X 10.7 and I'm unsure about some code design decisions. To store the graphic elements I want to use Core Data, due to the fact that undo, ...
2
votes
3answers
469 views

What's the CoreText equivalent to AppKit's NSObliquenessAttributeName?

I'm drawing some text in Mac/iOS cross-platform code using CoreText. I may be using fonts that do not have a real "Italic" version installed in the OS for all users, but they need to be aware that the ...
4
votes
1answer
632 views

Creating an animatable translucent overlay with Core Animation layers

I'm creating a spotlight that moves over content in my app, like so: In the sample app (shown above), the background layer is blue, and I have a layer over it that darkens all of it, except a ...
1
vote
1answer
155 views

2D Drawing on Transparent NSWindow

I have a transparent window and want to do 2D drawing in it. I'm considering two options : Quartz 2D OpenGL As I have no experience with Quartz 2D at all, I'm wondering : would it give me better ...
1
vote
1answer
523 views

Getting any point along an NSBezier path

For a program I'm writing, I need to be able to trace a virtual line (that is not straight) that an object must travel along. I was thinking to use NSBezierPath to draw the line, but I cannot find a ...
0
votes
1answer
182 views

How can I draw only 8 character per line in a CTFrameRef?

I'm trying to draw in a CTFrameRef only 8 character per line but I don't know how to do this with CTFrameRef. I've read "Manual Line Breaking", but they use CTLine and I think use CTFrameRef it's ...
0
votes
1answer
756 views

Redrawed inset NSShadow on a Custom View using -setClip method

I have and odd problem, related with the answer of this question: Draw an Inset NSShadow and Inset Stroke I use this code into the drawRect method of a custom view. I have exactly this: - ...
0
votes
1answer
61 views

Why won't this draw a path?

The context is that I am trying to plot a series of temperatures as a graph. At the moment my application works as follows (as i understand it): The application opens, openfile is used which ...
0
votes
3answers
240 views

Feathering NSView Opacity

I wish to have an NSView with one side of it fading out to an alpha of 0.0f. What is the best practice for doing this? This effect is similar to that of feathering a selection in Photoshop or ...
0
votes
1answer
645 views

How can I centre an NSAttributedString, regardless of attributes?

I'm looking to draw an NSAttributedString to a custom view and centre it vertically, regardless of the font, size, etc. The string is just a small number between 1-99. So far, I've tried calling the ...
0
votes
3answers
225 views

NSBezierPath Unique Lines

I am making a simple drawing app and am using NSBezierPath to draw the lines. I am subclassing NSView. I need to make a method which allows the user to change the color and size of the next path (so ...
0
votes
0answers
373 views

glReadPixels in NSOpenGLView

I am developing an application to draw graphics or textures in NSOpenGLView.Now I have finished the work for drawing,it works fine.but I have a problem with exporting the pix data to NSImage. source ...
5
votes
1answer
241 views

Advice for a Cocoa drawing application

I'm new to Cocoa and looking for a little advice for an application from experienced Cocoa-ers.  I'm building a basic OmniGraffle-style app where objects are drawn/dragged onto a canvas. After the ...
1
vote
0answers
198 views

How fast do I need to draw with CVDisplayLink?

How fast do I need to draw with CVDisplayLink? Am I correct in thinking that, after drawing my scene in my display link callback, if CVGetCurrentHostTime() > outputTime->hostTime, then I've ...
0
votes
1answer
185 views

Points, Pixels and Coordinate System in Cocoa Touch

I'm currently developing an iPhone application. While drawing, I sometimes use coordinates like 35.5|23.5. I know that points aren't the same as pixels. However aren't these coordinates dangerous ...
4
votes
2answers
676 views

NSScrollView Problems

I'm having a few problems with the NSScrollView I'm trying to use and could use some help. I've read the NSView, NSScrollView and a few other guides and references, along with questions here and ...
2
votes
2answers
238 views

Efficiently drawing and animating thousands of rectangles

What I am trying to do is to have many small rectangles on the screen (up to several thousand) which move randomly. I have the mechanics behind this figured out (in terms of determining the ...
2
votes
2answers
389 views

Erasing Cocoa Drawing done by NSRectFill?

I have an NSBox, inside of which I am drawing small rectangles, with NSRectFill(). My code for this looks like this: for (int i = 0; i <= 100; i++){ int x = (rand() % 640) + 20; int y = ...
1
vote
2answers
451 views

interactive curve editor in OS X Cocoa

I am aiming to implement an editable spline or bezier curve for a GUI component in Cocoa OS X 10.6. The functionality could be along the line of the ichart RapahelJS demo ...
1
vote
1answer
303 views

Cocoa Drawing Clickable Text

I am trying to draw some text that is clickable. I am trying not to use NSButton as my text is being drawn in drawRect and using NSButton in a drawRect makes it add the subview on top of itself unless ...
2
votes
1answer
243 views

Where to put common CoreGraphics drawing code for view and PDF generation?

I have a question concerning the placement of CoreGraphics drawing code. I have a C struct which is a representation of my model and I have a custom view class. This custom view class implements a ...
1
vote
1answer
349 views

Using NSShadow for non-rectangular shapes

I'm drawing a shadow of various non-rectangular shapes inside the CIImage object. I did this by subclassing the CIFilter and combining my own filter kernel and the gaussian blur filter. I'm wondering ...
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 ...

1 2 3