1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*
* Copyright 2009 Aaron Seigo <aseigo@kde.org>
*
* 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 <config-X11.h>
#include <QEventLoop>
#include <QTimer>
#include <Solid/Battery>
#include <Solid/Device>
#include <Plasma/Containment>
#include <Plasma/Corona>
#include <Plasma/DataEngine>
#include <Plasma/DataEngineConsumer>
#include <Plasma/PluginLoader>
#include <Plasma/Theme>
#ifdef Q_OS_WIN
#include <windows.h>
#endif
#ifdef HAVE_X11
#include <X11/Xlib.h>
#include <fixx11h.h>
#endif
#include "scriptengine.h"
namespace WorkspaceScripting
{
AppInterface::AppInterface(ScriptEngine *env)
: QObject(env),
m_env(env)
{
m_theme = new Plasma::Theme(this);
}
int AppInterface::screenCount() const
{
return m_env->corona()->numScreens();
}
QRectF AppInterface::screenGeometry(int screen) const
{
return m_env->corona()->screenGeometry(screen);
}
QList<int> AppInterface::activityIds() const
{
//FIXME: the ints could overflow since Applet::id() returns a uint,
// however QScript deals with QList<uint> very, very poorly
QList<int> containments;
foreach (Plasma::Containment *c, m_env->corona()->containments()) {
if (!ScriptEngine::isPanel(c)) {
containments.append(c->id());
}
}
return containments;
}
QList<int> AppInterface::panelIds() const
{
//FIXME: the ints could overflow since Applet::id() returns a uint,
// however QScript deals with QList<uint> very, very poorly
QList<int> panels;
foreach (Plasma::Containment *c, m_env->corona()->containments()) {
//qDebug() << "checking" << (QObject*)c << isPanel(c);
if (ScriptEngine::isPanel(c)) {
panels.append(c->id());
}
}
return panels;
}
QString AppInterface::applicationVersion() const
{
return qApp->applicationVersion();
}
QString AppInterface::platformVersion() const
{
return 0;//KDE::versionString();
}
int AppInterface::scriptingVersion() const
{
return PLASMA_DESKTOP_SCRIPTING_VERSION;
}
QString AppInterface::theme() const
{
return m_theme->themeName();
}
void AppInterface::setTheme(const QString &name)
{
m_theme->setThemeName(name);
}
QString AppInterface::locale() const
{
return QLocale::system().name();
}
QString AppInterface::language() const
{
return QLocale::system().languageToString(QLocale::system().language());
}
QString AppInterface::languageId() const
{
return QLocale::system().bcp47Name().section('-', 0, 0);
}
bool AppInterface::multihead() const
{
#ifdef Q_OS_WIN
return GetSystemMetrics(SM_CMONITORS) > 1;
#else
QByteArray multiHead = qgetenv("KDE_MULTIHEAD");
if (!multiHead.isEmpty()) {
return (multiHead.toLower() == "true");
}
return false;
#endif
}
int AppInterface::multiheadScreen() const
{
int id = -1;
#ifdef HAVE_X11
if (multihead()) {
// with multihead, we "lie" and say that screen 0 is the default screen, in fact, we pretend
// we have only one screen at all
Display *dpy = XOpenDisplay(NULL);
if (dpy) {
id = DefaultScreen(dpy);
XCloseDisplay(dpy);
}
}
#endif
return id;
}
void AppInterface::lockCorona(bool locked)
{
m_env->corona()->setImmutability(locked ? Plasma::Types::UserImmutable : Plasma::Types::Mutable);
}
bool AppInterface::coronaLocked() const
{
return m_env->corona()->immutability() != Plasma::Types::Mutable;
}
void AppInterface::sleep(int ms)
{
QEventLoop loop;
QTimer::singleShot(ms, &loop, &QEventLoop::quit);
loop.exec(QEventLoop::ExcludeUserInputEvents);
}
bool AppInterface::hasBattery() const
{
QList<Solid::Device> batteryDevices = Solid::Device::listFromType(Solid::DeviceInterface::Battery);
for (auto device: batteryDevices) {
Solid::Battery *battery = device.as<Solid::Battery>();
// check for _both_ primary and power supply status
// apparently some devices misreport as "primary", and we don't
// want to trigger on just having UPC connected to a desktop box
if (battery &&
battery->type() == Solid::Battery::PrimaryBattery &&
battery->isPowerSupply()) {
return true;
}
}
return false;
}
QStringList AppInterface::knownWidgetTypes() const
{
if (m_knownWidgets.isEmpty()) {
QStringList widgets;
KPluginInfo::List infoLs = Plasma::PluginLoader::self()->listAppletInfo(QString());
foreach (const KPluginInfo &info, infoLs) {
widgets.append(info.pluginName());
}
const_cast<AppInterface *>(this)->m_knownWidgets = widgets;
}
return m_knownWidgets;
}
QStringList AppInterface::knownActivityTypes() const
{
return knownContainmentTypes(QStringLiteral("desktop"));
}
QStringList AppInterface::knownPanelTypes() const
{
return knownContainmentTypes(QStringLiteral("panel"));
}
QStringList AppInterface::knownContainmentTypes(const QString &type) const
{
QStringList containments;
KPluginInfo::List infoLs = Plasma::PluginLoader::listContainmentsOfType(type);
foreach (const KPluginInfo &info, infoLs) {
containments.append(info.pluginName());
}
return containments;
}
}
|