You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.1 KiB
103 lines
3.1 KiB
/* |
|
* 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 <QJSValue> |
|
#include <QWeakPointer> |
|
|
|
#include "containment.h" |
|
|
|
class PanelView; |
|
class ShellCorona; |
|
|
|
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(QStringList globalConfigKeys READ globalConfigKeys) |
|
Q_PROPERTY(QStringList globalConfigGroups READ globalConfigGroups) |
|
|
|
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) |
|
Q_PROPERTY(QString location READ location WRITE setLocation) |
|
Q_PROPERTY(int id READ id) |
|
|
|
Q_PROPERTY(bool locked READ locked WRITE setLocked) |
|
|
|
// 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 minimumLength READ minimumLength WRITE setMinimumLength) |
|
Q_PROPERTY(int maximumLength READ maximumLength WRITE setMaximumLength) |
|
Q_PROPERTY(int height READ height WRITE setHeight) |
|
Q_PROPERTY(QString hiding READ hiding WRITE setHiding) |
|
|
|
public: |
|
explicit Panel(Plasma::Containment *containment, ScriptEngine *parent); |
|
~Panel() override; |
|
|
|
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 minimumLength() const; |
|
void setMinimumLength(int pixels); |
|
|
|
int maximumLength() const; |
|
void setMaximumLength(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(); } |
|
|
|
private: |
|
PanelView *panel() const; |
|
KConfigGroup panelConfig() const; |
|
ShellCorona *m_corona; |
|
}; |
|
|
|
} |
|
|
|
#endif |
|
|
|
|