path and fileNameExt can be specified
| 3777 | |
| 3778 | // path and fileNameExt can be specified |
| 3779 | void IGFD::FileDialog::OpenDialog(const std::string& vKey, const std::string& vTitle, const char* vFilters, const FileDialogConfig& vConfig) { |
| 3780 | if (m_FileDialogInternal.showDialog) // if already opened, quit |
| 3781 | return; |
| 3782 | m_FileDialogInternal.configureDialog(vKey, vTitle, vFilters, vConfig); |
| 3783 | #ifdef USE_PLACES_FEATURE |
| 3784 | m_InitPlaces(m_FileDialogInternal); |
| 3785 | #endif |
| 3786 | } |
| 3787 | |
| 3788 | ////////////////////////////////////////////////////////////////////////////////////////////////// |
| 3789 | ///// FILE DIALOG DISPLAY FUNCTION /////////////////////////////////////////////////////////////// |
no test coverage detected