MCPcopy Create free account
hub / github.com/cinder/Cinder / getSaveFilePath

Function getSaveFilePath

include/cinder/app/AppBase.h:584–584  ·  view source on GitHub ↗

Presents the user with a file-save dialog and returns the selected file path. The dialog optionally begins at the path \a initialPath and can be limited to allow selection of files ending in the extensions enumerated in \a extensions. If the active app is in full-screen mode it will temporarily switch to windowed-mode to present the dialog. \return the selected file path or an empty string if th

Source from the content-addressed store, hash-verified

582 If the active app is in full-screen mode it will temporarily switch to windowed-mode to present the dialog.
583 \return the selected file path or an empty string if the user cancelled. **/
584inline fs::path getSaveFilePath( const fs::path &initialPath = fs::path(), std::vector<std::string> extensions = std::vector<std::string>() ) { return AppBase::get()->getSaveFilePath( initialPath, extensions ); }
585
586//! Returns a reference to an output console, which is an alias to std::cout on the mac, and a wrapper around OutputDebugString on MSW
587/** On Mac OS X all output is echoed either to the Debugger Console in XCode or the system console

Callers 8

saveImageDialogMethod · 0.85
writeObjMethod · 0.85
saveScreenshotMethod · 0.85
saveScreenshotMethod · 0.85
setupMethod · 0.85
keyDownMethod · 0.85
keyDownMethod · 0.85
getSaveFilePathMethod · 0.85

Calls 2

getFunction · 0.50
getSaveFilePathMethod · 0.45

Tested by 1

keyDownMethod · 0.68