ControllerRackView: do not loose focus when adding controller
[lmms.git] / src / core / inline_automation.cpp
blobda85a139d342163a8b66f170dbdbe59e8e34b474
1 /*
2 * inline_automation.cpp - class for automating something "inline"
4 * Copyright (c) 2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
5 *
6 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this program (see COPYING); if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301 USA.
26 #include <QtXml/QDomElement>
28 #include "inline_automation.h"
31 void inlineAutomation::saveSettings( QDomDocument & _doc,
32 QDomElement & _parent )
34 if( hasAutomation() )
36 QDomElement ap = _doc.createElement(
37 automationPattern::classNodeName() );
38 QDomElement v = _doc.createElement( nodeName() );
39 getAutomationPattern()->saveSettings( _doc, v );
40 ap.appendChild( v );
41 _parent.appendChild( ap );
48 void inlineAutomation::loadSettings( const QDomElement & _this )
50 QDomNode node = _this.namedItem( automationPattern::classNodeName() );
51 if( node.isElement() )
53 node = node.namedItem( nodeName() );
54 if( node.isElement() )
56 getAutomationPattern()->loadSettings(
57 node.toElement() );