Skip to content
Snippets Groups Projects
Commit 9948b869 authored by jsiegle's avatar jsiegle
Browse files

Editors should use saveCustomParameters() from now on

parent e2e076ed
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ void PhaseDetectorEditor::addDetector() ...@@ -161,7 +161,7 @@ void PhaseDetectorEditor::addDetector()
} }
void PhaseDetectorEditor::saveEditorParameters(XmlElement* xml) void PhaseDetectorEditor::saveCustomParameters(XmlElement* xml)
{ {
xml->setAttribute("Type", "PhaseDetectorEditor"); xml->setAttribute("Type", "PhaseDetectorEditor");
...@@ -176,7 +176,7 @@ void PhaseDetectorEditor::saveEditorParameters(XmlElement* xml) ...@@ -176,7 +176,7 @@ void PhaseDetectorEditor::saveEditorParameters(XmlElement* xml)
} }
} }
void PhaseDetectorEditor::loadEditorParameters(XmlElement* xml) void PhaseDetectorEditor::loadCustomParameters(XmlElement* xml)
{ {
int i = 0; int i = 0;
......
...@@ -56,8 +56,8 @@ public: ...@@ -56,8 +56,8 @@ public:
void updateSettings(); void updateSettings();
void saveEditorParameters(XmlElement* xml); void saveCustomParameters(XmlElement* xml);
void loadEditorParameters(XmlElement* xml); void loadCustomParameters(XmlElement* xml);
private: private:
......
...@@ -55,7 +55,7 @@ PulsePalOutputEditor::~PulsePalOutputEditor() ...@@ -55,7 +55,7 @@ PulsePalOutputEditor::~PulsePalOutputEditor()
} }
void PulsePalOutputEditor::saveEditorParameters(XmlElement* xml) void PulsePalOutputEditor::saveCustomParameters(XmlElement* xml)
{ {
xml->setAttribute("Type", "PulsePalOutputEditor"); xml->setAttribute("Type", "PulsePalOutputEditor");
...@@ -71,7 +71,7 @@ void PulsePalOutputEditor::saveEditorParameters(XmlElement* xml) ...@@ -71,7 +71,7 @@ void PulsePalOutputEditor::saveEditorParameters(XmlElement* xml)
} }
void PulsePalOutputEditor::loadEditorParameters(XmlElement* xml) void PulsePalOutputEditor::loadCustomParameters(XmlElement* xml)
{ {
forEachXmlChildElement(*xml, xmlNode) forEachXmlChildElement(*xml, xmlNode)
......
...@@ -54,8 +54,8 @@ private: ...@@ -54,8 +54,8 @@ private:
PulsePal* pulsePal; PulsePal* pulsePal;
void saveEditorParameters(XmlElement* xml); void saveCustomParameters(XmlElement* xml);
void loadEditorParameters(XmlElement* xml); void loadCustomParameters(XmlElement* xml);
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(PulsePalOutputEditor); JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(PulsePalOutputEditor);
......
...@@ -190,7 +190,7 @@ void VisualizerEditor::buttonEvent(Button* button) ...@@ -190,7 +190,7 @@ void VisualizerEditor::buttonEvent(Button* button)
tabIndex = -1; tabIndex = -1;
} }
if (dataWindow == nullptr) if (dataWindow == nullptr) // have we created a window already?
{ {
dataWindow = new DataWindow(windowSelector, tabText); dataWindow = new DataWindow(windowSelector, tabText);
...@@ -256,7 +256,7 @@ void VisualizerEditor::buttonEvent(Button* button) ...@@ -256,7 +256,7 @@ void VisualizerEditor::buttonEvent(Button* button)
} }
void VisualizerEditor::saveEditorParameters(XmlElement* xml) void VisualizerEditor::saveCustomParameters(XmlElement* xml)
{ {
xml->setAttribute("Type", "Visualizer"); xml->setAttribute("Type", "Visualizer");
...@@ -282,7 +282,7 @@ void VisualizerEditor::saveEditorParameters(XmlElement* xml) ...@@ -282,7 +282,7 @@ void VisualizerEditor::saveEditorParameters(XmlElement* xml)
} }
void VisualizerEditor::loadEditorParameters(XmlElement* xml) void VisualizerEditor::loadCustomParameters(XmlElement* xml)
{ {
forEachXmlChildElement(*xml, xmlNode) forEachXmlChildElement(*xml, xmlNode)
...@@ -305,10 +305,13 @@ void VisualizerEditor::loadEditorParameters(XmlElement* xml) ...@@ -305,10 +305,13 @@ void VisualizerEditor::loadEditorParameters(XmlElement* xml)
if (windowState) if (windowState)
{ {
windowSelector->setToggleState(true,true); windowSelector->setToggleState(true,true);
dataWindow->setBounds(xmlNode->getIntAttribute("x"), if (dataWindow != nullptr)
xmlNode->getIntAttribute("y"), {
xmlNode->getIntAttribute("width"), dataWindow->setBounds(xmlNode->getIntAttribute("x"),
xmlNode->getIntAttribute("height")); xmlNode->getIntAttribute("y"),
xmlNode->getIntAttribute("width"),
xmlNode->getIntAttribute("height"));
}
} }
......
...@@ -80,8 +80,8 @@ public: ...@@ -80,8 +80,8 @@ public:
void updateVisualizer(); void updateVisualizer();
void saveEditorParameters(XmlElement* xml); void saveCustomParameters(XmlElement* xml);
void loadEditorParameters(XmlElement* xml); void loadCustomParameters(XmlElement* xml);
virtual void saveVisualizerParameters(XmlElement* xml); virtual void saveVisualizerParameters(XmlElement* xml);
virtual void loadVisualizerParameters(XmlElement* xml); virtual void loadVisualizerParameters(XmlElement* xml);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment