mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-14 03:59:35 -04:00
Conflicts: include/ConfigManager.h include/MidiTime.h include/string_pair_drag.h src/gui/string_pair_drag.cpp src/gui/widgets/rubberband.cpp
114 lines
2.0 KiB
C++
114 lines
2.0 KiB
C++
/*
|
|
* SerializingObject.cpp - implementation of SerializingObject
|
|
*
|
|
* Copyright (c) 2008-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of LMMS - http://lmms.io
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include <QDomElement>
|
|
|
|
#include "SerializingObject.h"
|
|
|
|
|
|
|
|
SerializingObject::SerializingObject() :
|
|
m_hook( NULL )
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
SerializingObject::~SerializingObject()
|
|
{
|
|
if( m_hook )
|
|
{
|
|
m_hook->m_hookedIn = NULL;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
QDomElement SerializingObject::saveState( QDomDocument& doc, QDomElement& parent )
|
|
{
|
|
QDomElement element = doc.createElement( nodeName() );
|
|
parent.appendChild( element );
|
|
|
|
saveSettings( doc, element );
|
|
|
|
if( hook() )
|
|
{
|
|
hook()->saveSettings( doc, element );
|
|
}
|
|
|
|
return element;
|
|
}
|
|
|
|
|
|
|
|
|
|
void SerializingObject::restoreState( const QDomElement& element )
|
|
{
|
|
loadSettings( element );
|
|
|
|
if( hook() )
|
|
{
|
|
hook()->loadSettings( element );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void SerializingObject::setHook( SerializingObjectHook* hook )
|
|
{
|
|
if( m_hook )
|
|
{
|
|
m_hook->m_hookedIn = NULL;
|
|
}
|
|
|
|
m_hook = hook;
|
|
|
|
if( m_hook )
|
|
{
|
|
m_hook->m_hookedIn = this;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void SerializingObject::saveSettings( QDomDocument& doc, QDomElement& element )
|
|
{
|
|
Q_UNUSED(doc)
|
|
Q_UNUSED(element)
|
|
}
|
|
|
|
|
|
|
|
|
|
void SerializingObject::loadSettings( const QDomElement& element )
|
|
{
|
|
Q_UNUSED(element)
|
|
}
|
|
|
|
|