These are standard Cocoa dialogs, NSOpenPanel/NSSavePanel. You can change some of the options, but if you need something drastically different, you're going to have to create it yourself.
Yes. In general for common interface, these dialogs are same for all apps. They encapsulate most of the common features. If you want something more, you will have to write your own dialog yourself. But for tasks like choosing a folder where you have to save your file IS same for everybody.
What gets saved in that path is app specific which you code anyway.
How do I edit the "standard dialog"??? Where on my computer is this file?
How do I edit the "standard dialog"??? Where on my computer is this file?
ok ok sorry dudes, im a newbie on these kind of things. all i wanted was to ged rid of the very annoying "date modified" column. its very, very annoying.
ok ok sorry dudes, im a newbie on these kind of things. all i wanted was to ged rid of the very annoying "date modified" column. its very, very annoying.
There is not necessarily an editable file: many parts of the OS level system are not contained in nib files at all: they are generated in code.
But can I edit the code with xcode? There must be a way to do that
No, you don't have the source code. You only have the compiled output. If this is what Apple have done you are out of luck.
Edit to add: just to confirm: it's likely that the Open/Save dialogs are provided by the CommonCocoaPanels.bundle bundle in /System/Library/CoreServices. That bundle has no resources at all: just a single large compiled binary that is responsible for creating the common panels entirely in code without a nib file.
Ok now I understand. thanks for explaining to me what all the other people couldn't explain.