| Thread | Last Post | Replies |
|
| syntax coloring | 31 Aug 2005 19:20 GMT | 1 |
I have always programmed in light text on a dark background. I guess I started on my Apple IIe 23 years ago and got formed a habit. I like it. Less overall brightness, less eyestrain, especially at night when the screen is the only source of light in the room...that's my theory ...
|
| Fox, XCode and X11 | 31 Aug 2005 10:47 GMT | 1 |
I try to develop Fox-based application (http://www.fox-toolkit.org) on my Mac. On the commandline everything works fine: g++ -g -o a.out -L/usr/local/include/fox-1.4/ -lFOX-1.4
|
| Shared memory Question using shmctl() | 30 Aug 2005 13:49 GMT | 3 |
I have created a shared memory block used between two processes via shmget(). Each of these two processes can sends information to the other in a serial fashion: Process #1, then Process #2, then Process #1, etc. I was trying to determine a good protocol for notification so
|
| XTND documentation | 29 Aug 2005 21:29 GMT | 1 |
I was wondering if anyone out there has the Apple XTND 1.3 documentation and/or developer kit? It used to be on their ftp site, but I can't find it any more. Maury
|
| Question about NSTabView | 28 Aug 2005 20:30 GMT | 2 |
I don't know if Gorm/Interface Builder questions are on topic in here, the FAQ doesn't seem to say. Anyway, I had an application working fine with its NSTableView (the delegate was my AppController class). I used Interface Builder to create a NSTabView
|
| Accessing USB camera | 28 Aug 2005 20:12 GMT | 1 |
I'm interested in capturing images from a usb-camera. Can anyone tell me where to start? I've never created an application for Mac OS X but I work as a C++-developer so I just need to be pointed in the right direction. I've tried searching developer.apple.com but there doesn't
|
| MPW/Carbon build crashes in qsort() | 27 Aug 2005 13:29 GMT | 1 |
I get an EXC_BAD_INSTRUCTION entering qsort() in a program built with mrc/ppclink, when run under OS X/Carbon. A typical invocation: int c(const void *a, const void *b){ return (*(int*)a)-(*(int*)b); } qsort(a, 10, sizeof(int), c);
|
| How to flush window in drawRect | 26 Aug 2005 16:06 GMT | 7 |
I want to flush the window an an [NSView -drawRect] routine. This would be helpful for debugging because I could easily correlate drawing commands with *which* object on the screen they produce (I have draw many similar objects in my present program). But the window's flushing ...
|
| Problems with dyld: LD_LIBRARY_PATH | 26 Aug 2005 15:44 GMT | 3 |
I am using g++ 3.3 on os X 10.3.9. I have created my own library using ar ruv *.o files After this I try to compile a test program using,
|
| vertical font centering in cocoa | 26 Aug 2005 15:26 GMT | 4 |
i want to vertically center a line of text inside a rect, and draw it in a certain font. -(void)drawString:(NSString*)string inRect:(NSRect)rect font:(NSFont*)font
|
| Rotate a screen? | 26 Aug 2005 09:31 GMT | 13 |
Here's a weird one for you. I have a customer that wants to use portrait orientation instead of landscape for a project. Don't ask. Remembering the really old days of the Radius Swivel monitors...is it possible to tell OSX to treat the monitor as tilted? I know I can
|
| conditional breakpoint? | 25 Aug 2005 20:08 GMT | 1 |
The breakpoint window doesn't have any obvious way to put a condition on a breakpoint? How do I do this? It was a cinch in CW. I assume it's fairly straight-forward, but I don't see it. Thanks.
|
| USB sample broken in Xcode 2.1 | 24 Aug 2005 21:54 GMT | 1 |
I've been trying to get the Apple sample USB program to compile under 10.4.2 and Xcode 2.1 ... it won't ... there is an error - AppleUSBCDCSampleDriver.cpp:1259: error: invalid conversion from 'const IOUSBDescriptorHeader*' to 'IOUSBDescriptorHeader*'
|
| Xcode duplicate non-Cocoa .h file in Contents/Resource ? | 24 Aug 2005 10:24 GMT | 13 |
Why does Xcode duplicate header non-Cocoa .h file in Contents/Resource ?
|
| force a file to close | 24 Aug 2005 08:41 GMT | 1 |
I've got a situation where my software needs to eject a CD even if there is an open file on it. Is there any way to force all open files closed and eject the CD? sp
|