1
vote
2answers
15 views
SVN Mac - Stripping files of SVN meta data?
I downloaded some source files on a Mac that were previously part of some working copy on the authors computer, I need to use these files in another repository but the SVN client "Versions" for Mac is …
0
votes
1answer
14 views
Equivalent of strace -feopen < command > on mac os X
This is useful for debugging (hence programming related). On linux, we can use the command
strace -feopen python myfile.py
to figure out which python modules and shared objects are loaded. Is …
0
votes
1answer
18 views
Mac OS X Debug Error
On startup of my application with gdb, I am getting weird errors that look like:
unable to read unknown load command 0x22
The whole trace looks something like this:
[Session started at 2009-12-17 …
1
vote
1answer
81 views
Snow Leopard Style Pop-Ups
Is there a framework that draws Snow Leopard style popups? For an example of what I am talking about, try right clicking something in the dock. I basically want to be able to give a starting point …
1
vote
1answer
44 views
How to convert ASCII character to CGKeyCode?
I need a function that, given a character, returns the CGKeyCode associated with the position of that character on the current keyboard layout. E.g., given "b", it should return kVK_ANSI_B if using …
0
votes
3answers
29 views
Confusion with popUpMenuPositioningItem:atLocation:inView:
The documentation for this method says: "Pops up the menu at the specified location." but the pamameters seem to describe a different situations:
item
The menu item to be positioned at the specified …
0
votes
1answer
13 views
[OS X] What can cause dlopen: no suitable image found (can’t map)?
What can cause the following error when loading an additional bundle using dlopen:
dlopen($(OBJ_DIR)/Test-20091217211256.ob, 6): no suitable image found. Did find:
…
1
vote
3answers
28 views
OS X: Setting at runtime the Application name as it appears in Dock and Menu Bar
I have an app that may get launched with current user's or with root permissions.
In fact, there's the possibility that the app runs twice at the same time - once under the current user and once as …
0
votes
1answer
65 views
Cocoa Xcode - how to pass a variable to a function
I'm trying to figure out how to pass a variable (in my case hostname) to a function i created from a programatically inserted "menu item".
#function
-(void)goToTerminal:(NSString *)hostname {
…
0
votes
2answers
22 views
When using py2app, is there a way to customize the traceback dialog that gets displayed? (Or show a different Cocoa dialog?)
Is there an easy way to get any more control over the py2app traceback dialogs, or just a nice way to display GUI messages?
If I raise an exception in my py2app script, I get a dialog that says …
1
vote
2answers
15 views
Java3d + osx + netbeans
Hi,
I have a java3d project that was developed on solaris that I am trying to move onto my macbook for a variety of reasons (1 being that our solaris machines are painfully slow).
Basically what I …
2
votes
1answer
23 views
Using Qt in a pre-existing x-platform project?
I have an existing cross platform project that runs on Mac, Linux and Windows.
Now, I want to add a 'native' UI to it - the ability to show some popup windows (to request user credentials) and …
1
vote
1answer
38 views
What’s the file format used by gcc in OSX?
I'm trying to learn assembly using NASM, the pcasm-book.pdf from Dr Paul Carter - http://www.drpaulcarter.com/pcasm/ - on my Mac OS X Snow Leopard.
I'm trying to link the previous compiled C sample …
0
votes
2answers
38 views
Programmatically controlling a Cocoa Button on OSX (making it invisible and pressed)
I am trying to interface with a cocoa popup menu from an OpenGL button. The actual button needs to be in OpenGL and I cannot stick an actual Cocoa button in its place but when this button is pressed …
1
vote
2answers
42 views
What’s an easy way to have terminal use a different color based on ssh host name?
Using putty in windows, you can save sessions that connect to a certain host and use a certain text color...this was super useful for me since I work with a bunch of remote hosts and I'm wondering if …
