|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- ZynAddSubFX - a software synthesizer
-
- PresetsArray.cpp - PresetsArray and Clipboard management
- Copyright (C) 2002-2005 Nasca Octavian Paul
- Author: Nasca Octavian Paul
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
-
- #include "PresetsStore.h"
- #include "PresetsArray.h"
- #include <string.h>
-
-
- PresetsArray::PresetsArray()
- {
- type[0] = 0;
- }
-
- PresetsArray::~PresetsArray()
- {}
-
- void PresetsArray::setpresettype(const char *type)
- {
- strcpy(this->type, type);
- }
-
- void PresetsArray::copy(PresetsStore &ps, const char *name)
- {
- copy(ps, -1, name);
- }
-
- void PresetsArray::copy(PresetsStore &ps, int nelement, const char *name)
- {
- XMLwrapper xml;
-
- //used only for the clipboard
- if(name == NULL)
- xml.minimal = false;
-
- char type[MAX_PRESETTYPE_SIZE];
- strcpy(type, this->type);
- if(nelement != -1)
- strcat(type, "n");
- if(name == NULL)
- if(strstr(type, "Plfo") != NULL)
- strcpy(type, "Plfo");
-
- xml.beginbranch(type);
- if(nelement == -1)
- add2XML(xml);
- else
- add2XMLsection(xml, nelement);
- xml.endbranch();
-
- if(name == NULL)
- ps.copyclipboard(xml, type);
- else
- ps.copypreset(xml, type, name);
- }
-
- #if 0
- void PresetsArray::paste(PresetsStore &ps, int npreset)
- {
- char type[MAX_PRESETTYPE_SIZE];
- strcpy(type, this->type);
- if(nelement != -1)
- strcat(type, "n");
- if(npreset == 0)
- if(strstr(type, "Plfo") != NULL)
- strcpy(type, "Plfo");
-
- XMLwrapper xml;
- if(npreset == 0) {
- if(!checkclipboardtype(ps)) {
- nelement = -1;
- return;
- }
- if(!ps.pasteclipboard(xml)) {
- nelement = -1;
- return;
- }
- } else if(!ps.pastepreset(xml, npreset)) {
- nelement = -1;
- return;
- }
-
- if(xml.enterbranch(type) == 0) {
- nelement = -1;
- return;
- }
- if(nelement == -1) {
- defaults();
- getfromXML(&xml);
- } else {
- defaults(nelement);
- getfromXMLsection(&xml, nelement);
- }
- xml.exitbranch();
-
- nelement = -1;
- }
-
-
- bool PresetsArray::checkclipboardtype(PresetsStore &ps)
- {
- char type[MAX_PRESETTYPE_SIZE];
- strcpy(type, this->type);
- if(nelement != -1)
- strcat(type, "n");
-
- return ps.checkclipboardtype(type);
- }
- #endif
-
- //void PresetsArray::rescanforpresets()
- //{
- // char type[MAX_PRESETTYPE_SIZE];
- // strcpy(type, this->type);
- // if(nelement != -1)
- // strcat(type, "n");
- //
- // presetsstore.rescanforpresets(type);
- //}
|