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.
88 lines
2.8 KiB
88 lines
2.8 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 "plasmaquick/view.h" |
|
#include "panelconfigview.h" |
|
#include <QtCore/qpointer.h> |
|
|
|
|
|
class DesktopView : public PlasmaQuick::View |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(WindowType windowType READ windowType WRITE setWindowType NOTIFY windowTypeChanged) |
|
|
|
//What kind of plasma session we're in: are we in a full workspace, an application?... |
|
Q_PROPERTY(SessionType sessionType READ sessionType CONSTANT) |
|
public: |
|
enum WindowType { |
|
Window, /** The window is a normal resizable window with titlebar and appears in the taskbar */ |
|
FullScreen, /** The window is fullscreen and goes over all the other windows */ |
|
Desktop, /** The window is the desktop layer, under everything else, doesn't appear in the taskbar */ |
|
WindowedDesktop /** full screen and borderless as Desktop, but can be brought in front and appears in the taskbar */ |
|
}; |
|
Q_ENUMS(WindowType) |
|
|
|
enum SessionType { |
|
ApplicationSession, /** our session is a normal application */ |
|
ShellSession /** We are running as the primary user interface of this machine */ |
|
}; |
|
Q_ENUMS(SessionType) |
|
|
|
explicit DesktopView(Plasma::Corona *corona, QScreen *targetScreen = 0); |
|
virtual ~DesktopView(); |
|
|
|
void adaptToScreen(); |
|
virtual void showEvent(QShowEvent*); |
|
|
|
WindowType windowType() const; |
|
void setWindowType(WindowType type); |
|
|
|
SessionType sessionType() const; |
|
|
|
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); |
|
|
|
private Q_SLOTS: |
|
void screenGeometryChanged(const QRect &geom); |
|
|
|
Q_SIGNALS: |
|
void stayBehindChanged(); |
|
void windowTypeChanged(); |
|
|
|
private: |
|
void coronaPackageChanged(const KPackage::Package &package); |
|
void ensureWindowType(); |
|
|
|
QPointer<PlasmaQuick::ConfigView> m_configView; |
|
QPointer<QScreen> m_oldScreen; |
|
WindowType m_windowType; |
|
}; |
|
|
|
#endif // DESKTOVIEW_H
|
|
|