| 33 | } |
| 34 | |
| 35 | void PatternAnalysisDialog::process() |
| 36 | { |
| 37 | if (!ifd::FileDialog::Instance().IsDone("PatternAnalysisDialog")) { |
| 38 | return; |
| 39 | } |
| 40 | if (ifd::FileDialog::Instance().HasResult()) { |
| 41 | auto firstFilename = ifd::FileDialog::Instance().GetResult(); |
| 42 | auto firstFilenameCopy = firstFilename; |
| 43 | _startingPath = firstFilenameCopy.remove_filename().string(); |
| 44 | |
| 45 | saveRepetitiveActiveClustersToFiles(firstFilename.string()); |
| 46 | } |
| 47 | ifd::FileDialog::Instance().Close(); |
| 48 | } |
| 49 | |
| 50 | void PatternAnalysisDialog::show() |
| 51 | { |