void Move::write_configuration(int level, MusECore::Xml& xml) { xml.tag(level++, "move"); xml.intTag(level, "range", range); xml.intTag(level, "amount", amount); xml.tag(level, "/move"); }
void Crescendo::write_configuration(int level, MusECore::Xml& xml) { xml.tag(level++, "crescendo"); xml.intTag(level, "range", range); xml.intTag(level, "start", start_val); xml.intTag(level, "end", end_val); xml.intTag(level, "absolute", absolute); xml.tag(level, "/crescendo"); }
void WaveEdit::writeConfiguration(int level, MusECore::Xml& xml) { xml.tag(level++, "waveedit"); xml.colorTag(level, "bgcolor", MusEGlobal::config.waveEditBackgroundColor); xml.intTag(level, "raster", _rasterInit); xml.intTag(level, "colormode", colorModeInit); TopWin::writeConfiguration(WAVE, level,xml); xml.tag(level, "/waveedit"); }
void Remove::write_configuration(int level, MusECore::Xml& xml) { xml.tag(level++, "erase"); xml.intTag(level, "range", range); xml.intTag(level, "velo_threshold", velo_threshold); xml.intTag(level, "velo_thres_used", velo_thres_used); xml.intTag(level, "len_threshold", len_threshold); xml.intTag(level, "len_thres_used", len_thres_used); xml.tag(level, "/erase"); }
void WaveEdit::writeStatus(int level, MusECore::Xml& xml) const { writePartList(level, xml); xml.tag(level++, "waveedit"); MidiEditor::writeStatus(level, xml); xml.intTag(level, "tool", int(canvas->tool())); xml.intTag(level, "xmag", hscroll->mag()); xml.intTag(level, "xpos", hscroll->pos()); xml.intTag(level, "ymag", ymag->value()); xml.tag(level, "/waveedit"); }
void Arranger::writeStatus(int level, MusECore::Xml& xml) { xml.tag(level++, "arranger"); xml.intTag(level, "raster", _raster); xml.intTag(level, "info", ib->isChecked()); split->writeStatus(level, xml); xml.intTag(level, "xmag", hscroll->mag()); xml.intTag(level, "xpos", hscroll->pos()); xml.intTag(level, "ypos", vscroll->value()); xml.etag(level, "arranger"); }
void TopWin::writeStatus(int level, MusECore::Xml& xml) const { xml.tag(level++, "topwin"); // the order of these tags has a certain sense // changing it won't break muse, but it may break proper // restoring of the positions xml.intTag(level, "is_subwin", isMdiWin()); if (mdisubwin) { xml.intTag(level, "x", mdisubwin->x()); xml.intTag(level, "y", mdisubwin->y()); xml.intTag(level, "width", mdisubwin->width()); xml.intTag(level, "height", mdisubwin->height()); } else { xml.intTag(level, "x", x()); xml.intTag(level, "y", y()); xml.intTag(level, "width", width()); xml.intTag(level, "height", height()); } xml.intTag(level, "shares_menu", sharesToolsAndMenu()); if (!sharesToolsAndMenu()) xml.strTag(level, "toolbars", saveState().toHex().data()); else xml.strTag(level, "toolbars", _savedToolbarState.toHex().data()); xml.tag(level, "/topwin"); }
void MidiEditor::writeStatus(int level, MusECore::Xml& xml) const { xml.tag(level++, "midieditor"); TopWin::writeStatus(level, xml); xml.intTag(level, "raster", _raster); xml.tag(level, "/midieditor"); }
void ArrangerView::writeStatus(int level, MusECore::Xml& xml) const { xml.tag(level++, "arrangerview"); TopWin::writeStatus(level, xml); xml.intTag(level, "tool", editTools->curTool()); arranger->writeStatus(level,xml); xml.tag(level, "/arrangerview"); }
void TopWin::writeConfiguration(ToplevelType t, int level, MusECore::Xml& xml) { if (!initInited) { printf ("WARNING: TopWin::writeConfiguration() called although the config hasn't been\n" " initalized! writing default configuration\n"); initConfiguration(); } xml.tag(level++, "topwin"); xml.intTag(level, "width", _widthInit[t]); xml.intTag(level, "height", _heightInit[t]); xml.strTag(level, "nonshared_toolbars", _toolbarNonsharedInit[t].toHex().data()); xml.strTag(level, "shared_toolbars", _toolbarSharedInit[t].toHex().data()); xml.intTag(level, "shares_when_free", _sharesWhenFree[t]); xml.intTag(level, "shares_when_subwin", _sharesWhenSubwin[t]); xml.intTag(level, "default_subwin", _defaultSubwin[t]); xml.etag(level, "topwin"); }
void GateTime::write_configuration(int level, MusECore::Xml& xml) { xml.tag(level++, "mod_len"); //----------------------------------------- // Write any common base settings. //----------------------------------------- FunctionDialogBase::write_configuration(level, xml); //----------------------------------------- // Write this dialog's specific settings. //----------------------------------------- xml.intTag(level, "range", _range); xml.intTag(level, "parts", _parts); xml.intTag(level, "offset", offsetVal); xml.intTag(level, "rate", rateVal); xml.tag(level, "/mod_len"); }
void Remove::write_configuration(int level, MusECore::Xml& xml) { xml.tag(level++, "erase"); //----------------------------------------- // Write any common base settings. //----------------------------------------- FunctionDialogBase::write_configuration(level, xml); //----------------------------------------- // Write this dialog's specific settings. //----------------------------------------- xml.intTag(level, "range", _range); xml.intTag(level, "parts", _parts); xml.intTag(level, "velo_threshold", velo_threshold); xml.intTag(level, "velo_thres_used", velo_thres_used); xml.intTag(level, "len_threshold", len_threshold); xml.intTag(level, "len_thres_used", len_thres_used); xml.tag(level, "/erase"); }
void DelOverlaps::write_configuration(int level, MusECore::Xml& xml) { xml.tag(level++, "del_overlaps"); xml.intTag(level, "range", range); xml.tag(level, "/del_overlaps"); }