Home
last modified time | relevance | path

Searched refs:patch_category (Results 1 – 9 of 9) sorted by relevance

/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/common/gui/
H A DCPatchBrowser.cpp93 auto patch_cat_size = storage->patch_category.size();
111 if (_stricmp(storage->patch_category[c].name.c_str(), "Init") == 0)
161 if (storage->patch_category[i].isRoot)
316 PatchCategory cat = storage->patch_category[c];
380 for (auto &cc : storage->patch_category)
394 string menuName = storage->patch_category[c].name;
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/common/
H A DSurgeSynthesizerIO.cpp146 int c = storage.patch_category.size(); in incrementCategory()
158 int order = storage.patch_category[current_category_id].order; in incrementCategory()
168 } while (storage.patch_category[current_category_id].numberOfPatchesInCatgory == 0 && in incrementCategory()
266 storage.getPatch().category = storage.patch_category[categoryId].name; in loadPatchByPath()
446 storage.patch_category[storage.patch_list[p].category].name == cat) in loadRaw()
H A DSurgeStorage.cpp618 patch_category.clear(); in refresh_patchlist()
622 firstThirdPartyCategory = patch_category.size(); in refresh_patchlist()
625 firstUserCategory = patch_category.size(); in refresh_patchlist()
637 patchCategoryOrdering = std::vector<int>(patch_category.size()); in refresh_patchlist()
646 return strnatcasecmp(patch_category[i1].name.c_str(), patch_category[i2].name.c_str()) < 0; in refresh_patchlist()
649 int groups[4] = {0, firstThirdPartyCategory, firstUserCategory, (int)patch_category.size()}; in refresh_patchlist()
657 for (int i = 0; i < patch_category.size(); i++) in refresh_patchlist()
659 patch_category[patchCategoryOrdering[i]].order = i; in refresh_patchlist()
667 patch_list, patch_category); in refreshPatchlistAddDir()
H A DSurgeStorage.h929 std::vector<PatchCategory> patch_category; variable
H A DSurgeSynthesizer.cpp261 if (p.name == "Init Saw" && storage.patch_category[p.category].name == "Init") in SurgeSynthesizer()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/headless/
H A DPlayer.cpp145 int nCats = surge->storage.patch_category.size(); in playOnEveryPatch()
155 PatchCategory pc = surge->storage.patch_category[p.category]; in playOnEveryPatch()
177 int nCats = surge->storage.patch_category.size(); in playOnNRandomPatches()
183 PatchCategory pc = surge->storage.patch_category[p.category]; in playOnNRandomPatches()
H A DUnitTestsIO.cpp85 << surge->storage.patch_category[p.category].name << "]");
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/surge_synth_juce/
H A DSurgeSynthProcessor.cpp123 auto res = surge->storage.patch_category[patch.category].name + " / " + patch.name; in getProgramName()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/au/
H A Daulayer.cpp632 std::string nm = s->storage.patch_category[patch.category].name + " / " + patch.name; in GetPresets()