path and fileNameExt can be specified
| 3839 | |
| 3840 | // path and fileNameExt can be specified |
| 3841 | void IGFD::FileDialog::OpenDialog(const std::string& vKey, const std::string& vTitle, const char* vFilters, const FileDialogConfig& vConfig) { |
| 3842 | if (m_FileDialogInternal.showDialog) // if already opened, quit |
| 3843 | return; |
| 3844 | m_FileDialogInternal.configureDialog(vKey, vTitle, vFilters, vConfig); |
| 3845 | #ifdef USE_PLACES_FEATURE |
| 3846 | m_InitPlaces(m_FileDialogInternal); |
| 3847 | #endif |
| 3848 | } |
| 3849 | |
| 3850 | ////////////////////////////////////////////////////////////////////////////////////////////////// |
| 3851 | ///// FILE DIALOG DISPLAY FUNCTION /////////////////////////////////////////////////////////////// |
no test coverage detected