2010-12-31 19:13:28 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script.h"
|
2011-01-01 20:03:33 +01:00
|
|
|
#include "scriptinterface.h"
|
2010-12-31 19:13:28 +01:00
|
|
|
|
2011-01-17 21:01:16 +01:00
|
|
|
Script::Script(LanguageEngine* language, const ScriptInfo& info)
|
2011-01-02 02:07:19 +01:00
|
|
|
: interface_(new ScriptInterface(this)),
|
|
|
|
language_(language),
|
2011-01-17 21:01:16 +01:00
|
|
|
info_(info)
|
2010-12-31 19:13:28 +01:00
|
|
|
{
|
|
|
|
}
|
2011-01-01 20:03:33 +01:00
|
|
|
|
|
|
|
Script::~Script() {
|
|
|
|
}
|
2011-01-02 19:10:26 +01:00
|
|
|
|
|
|
|
void Script::AddNativeObject(QObject* object) {
|
2011-01-17 00:46:58 +01:00
|
|
|
if(!native_objects_.contains(object)) {
|
|
|
|
native_objects_ << object;
|
|
|
|
}
|
2011-01-02 19:10:26 +01:00
|
|
|
}
|
2011-01-12 22:20:20 +01:00
|
|
|
|
|
|
|
void Script::RemoveNativeObject(QObject* object) {
|
|
|
|
native_objects_.removeAll(object);
|
|
|
|
}
|