cc142eddbc
still partially stub
98 lines
2.9 KiB
C++
98 lines
2.9 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef PANEL
|
|
#define PANEL
|
|
|
|
#include <QScriptContext>
|
|
#include <QScriptValue>
|
|
#include <QWeakPointer>
|
|
|
|
#include "containment.h"
|
|
|
|
class PanelView;
|
|
class DesktopCorona;
|
|
|
|
namespace WorkspaceScripting
|
|
{
|
|
|
|
class Panel : public Containment
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QStringList configKeys READ configKeys)
|
|
Q_PROPERTY(QStringList configGroups READ configGroups)
|
|
Q_PROPERTY(QStringList currentConfigGroup WRITE setCurrentConfigGroup READ currentConfigGroup)
|
|
|
|
Q_PROPERTY(QString name READ name WRITE setName)
|
|
Q_PROPERTY(QString version READ version)
|
|
Q_PROPERTY(QString type READ type)
|
|
Q_PROPERTY(QString formFactor READ formFactor)
|
|
Q_PROPERTY(QList<int> widgetIds READ widgetIds)
|
|
Q_PROPERTY(int screen READ screen WRITE setScreen)
|
|
Q_PROPERTY(QString location READ location WRITE setLocation)
|
|
Q_PROPERTY(int id READ id)
|
|
|
|
// panel properties
|
|
Q_PROPERTY(QString alignment READ alignment WRITE setAlignment)
|
|
Q_PROPERTY(int offset READ offset WRITE setOffset)
|
|
Q_PROPERTY(int length READ length WRITE setLength)
|
|
Q_PROPERTY(int height READ height WRITE setHeight)
|
|
Q_PROPERTY(QString hiding READ hiding WRITE setHiding)
|
|
|
|
public:
|
|
Panel(Plasma::Containment *containment, QObject *parent = 0);
|
|
~Panel();
|
|
|
|
QString location() const;
|
|
void setLocation(const QString &location);
|
|
|
|
QString alignment() const;
|
|
void setAlignment(const QString &alignment);
|
|
|
|
int offset() const;
|
|
void setOffset(int pixels);
|
|
|
|
int length() const;
|
|
void setLength(int pixels);
|
|
|
|
int height() const;
|
|
void setHeight(int height);
|
|
|
|
QString hiding() const;
|
|
void setHiding(const QString &mode);
|
|
|
|
public Q_SLOTS:
|
|
void remove() { Containment::remove(); }
|
|
void showConfigurationInterface() { Containment::showConfigurationInterface(); }
|
|
|
|
// from the applet interface
|
|
QVariant readConfig(const QString &key, const QVariant &def = QString()) const { return Applet::readConfig(key, def); }
|
|
void writeConfig(const QString &key, const QVariant &value) { Applet::writeConfig(key, value); }
|
|
void reloadConfig() { Applet::reloadConfig(); }
|
|
|
|
private:
|
|
PanelView *panel() const;
|
|
DesktopCorona *m_corona;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|