MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / SelectAllFileNames

Method SelectAllFileNames

ImGuiFileDialog.cpp:2472–2479  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2470}
2471
2472void IGFD::FileManager::SelectAllFileNames() {
2473 m_SelectedFileNames.clear();
2474 for (const auto& pInfos : m_FilteredFileList) {
2475 if (pInfos != nullptr) {
2476 m_AddFileNameInSelection(pInfos->fileNameExt, true);
2477 }
2478 }
2479}
2480
2481void IGFD::FileManager::SelectFileName(const std::shared_ptr<FileInfos>& vInfos) {
2482 if (!vInfos.use_count()) {

Callers 1

EndFrameMethod · 0.80

Calls 1

clearMethod · 0.80

Tested by

no test coverage detected