/* * Copyright 2009 Aaron Seigo * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2, 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 Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "appinterface.h" #include #include #include #include #include #include "scriptengine.h" AppInterface::AppInterface(Plasma::Corona *corona, QObject *parent) : QObject(parent), m_corona(corona) { } int AppInterface::screenCount() const { return m_corona->numScreens(); } QRectF AppInterface::screenGeometry(int screen) const { return m_corona->screenGeometry(screen); } QList AppInterface::activityIds() const { //FIXME: the ints could overflow since Applet::id() returns a uint, // however QScript deals with QList very, very poory QList containments; foreach (Plasma::Containment *c, m_corona->containments()) { if (!ScriptEngine::isPanel(c)) { containments.append(c->id()); } } return containments; } QList AppInterface::panelIds() const { //FIXME: the ints could overflow since Applet::id() returns a uint, // however QScript deals with QList very, very poory QList panels; foreach (Plasma::Containment *c, m_corona->containments()) { //kDebug() << "checking" << (QObject*)c << isPanel(c); if (ScriptEngine::isPanel(c)) { panels.append(c->id()); } } return panels; } void AppInterface::lockCorona(bool locked) { m_corona->setImmutability(locked ? Plasma::UserImmutable : Plasma::Mutable); } bool AppInterface::coronaLocked() const { return m_corona->immutability() != Plasma::Mutable; } void AppInterface::sleep(int ms) { QEventLoop loop; QTimer::singleShot(ms, &loop, SLOT(quit())); loop.exec(); } bool AppInterface::hasBattery() const { Plasma::DataEngineManager *engines = Plasma::DataEngineManager::self(); Plasma::DataEngine *power = engines->loadEngine("powermanagement"); const QStringList batteries = power->query("Battery")["sources"].toStringList(); engines->unloadEngine("powermanagement"); return !batteries.isEmpty(); } #include "appinterface.moc"