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.
81 lines
2.4 KiB
81 lines
2.4 KiB
/* |
|
* Copyright 2013 Marco Martin <mart@kde.org> |
|
* |
|
* This program 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 2 of the License, 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 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 DESKTOVIEW_H |
|
#define DESKTOVIEW_H |
|
|
|
|
|
#include <view.h> |
|
#include "panelconfigview.h" |
|
#include <QtCore/qpointer.h> |
|
|
|
class ShellCorona; |
|
|
|
class DesktopView : public PlasmaQuick::View |
|
{ |
|
Q_OBJECT |
|
Q_PROPERTY(bool stayBehind READ stayBehind WRITE setStayBehind NOTIFY stayBehindChanged) |
|
Q_PROPERTY(bool fillScreen READ fillScreen WRITE setFillScreen NOTIFY fillScreenChanged) |
|
//the qml part doesn't need to be able to write it, hide for now |
|
Q_PROPERTY(bool dashboardShown READ isDashboardShown NOTIFY dashboardShownChanged) |
|
|
|
public: |
|
explicit DesktopView(ShellCorona *corona); |
|
virtual ~DesktopView(); |
|
|
|
bool stayBehind() const; |
|
void setStayBehind(bool stayBehind); |
|
|
|
bool fillScreen() const; |
|
void setFillScreen(bool fillScreen); |
|
|
|
void setDashboardShown(bool shown); |
|
bool isDashboardShown() const; |
|
|
|
void adaptToScreen(); |
|
virtual void showEvent(QShowEvent*); |
|
|
|
protected: |
|
bool event(QEvent *e); |
|
void keyPressEvent(QKeyEvent *e); |
|
|
|
protected Q_SLOTS: |
|
/** |
|
* It will be called when the configuration is requested |
|
*/ |
|
virtual void showConfigurationInterface(Plasma::Applet *applet); |
|
void screenDestroyed(QObject* screen); |
|
|
|
Q_SIGNALS: |
|
void stayBehindChanged(); |
|
void fillScreenChanged(); |
|
void dashboardShownChanged(); |
|
|
|
private: |
|
void coronaPackageChanged(const Plasma::Package &package); |
|
void ensureStayBehind(); |
|
|
|
QPointer<PlasmaQuick::ConfigView> m_configView; |
|
QPointer<QScreen> m_oldScreen; |
|
ShellCorona *m_corona; |
|
bool m_stayBehind : 1; |
|
bool m_fillScreen : 1; |
|
bool m_dashboardShown : 1; |
|
}; |
|
|
|
#endif // DESKTOVIEW_H
|
|
|