2008-11-06 10:42:36 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2008 Lubos Lunak <l.lunak@suse.cz>
|
2009-02-27 15:40:53 +00:00
|
|
|
Copyright (C) 2009 Lucas Murray <lmurray@undefinedfire.com>
|
2008-11-06 10:42:36 +00:00
|
|
|
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#ifndef CCSM_MONITOR_H
|
|
|
|
#define CCSM_MONITOR_H
|
|
|
|
|
2009-03-16 12:15:11 +00:00
|
|
|
#include <kworkspace/screenpreviewwidget.h>
|
|
|
|
|
2008-11-06 10:42:36 +00:00
|
|
|
#include <qactiongroup.h>
|
|
|
|
#include <qgraphicsitem.h>
|
|
|
|
#include <qvector.h>
|
|
|
|
|
|
|
|
class QAction;
|
|
|
|
class QGraphicsView;
|
|
|
|
class QGraphicsScene;
|
|
|
|
class QMenu;
|
|
|
|
|
2009-03-16 12:15:11 +00:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
class FrameSvg;
|
|
|
|
}
|
|
|
|
|
2008-11-06 10:42:36 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class Monitor
|
2009-03-16 12:15:11 +00:00
|
|
|
: public ScreenPreviewWidget
|
2008-11-06 10:42:36 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Monitor( QWidget* parent );
|
|
|
|
void setEdge( int edge, bool set );
|
|
|
|
bool edge( int edge ) const;
|
2009-02-27 15:40:53 +00:00
|
|
|
void setEdgeHidden( int edge, bool set );
|
|
|
|
bool edgeHidden( int edge ) const;
|
2008-11-06 10:42:36 +00:00
|
|
|
void clear();
|
|
|
|
void addEdgeItem( int edge, const QString& item );
|
2009-02-27 15:40:53 +00:00
|
|
|
void setEdgeItemEnabled( int edge, int index, bool enabled );
|
|
|
|
bool edgeItemEnabled( int edge, int index ) const;
|
2008-11-06 10:42:36 +00:00
|
|
|
void selectEdgeItem( int edge, int index );
|
|
|
|
int selectedEdgeItem( int edge ) const;
|
|
|
|
|
|
|
|
enum Edges
|
|
|
|
{
|
|
|
|
Left,
|
|
|
|
Right,
|
|
|
|
Top,
|
|
|
|
Bottom,
|
|
|
|
TopLeft,
|
|
|
|
TopRight,
|
|
|
|
BottomLeft,
|
|
|
|
BottomRight
|
|
|
|
};
|
|
|
|
signals:
|
|
|
|
void changed();
|
|
|
|
void edgeSelectionChanged( int edge, int index );
|
|
|
|
protected:
|
|
|
|
virtual void resizeEvent( QResizeEvent* e );
|
|
|
|
private:
|
|
|
|
class Corner;
|
|
|
|
void popup( Corner* c, QPoint pos );
|
|
|
|
void flip( Corner* c, QPoint pos );
|
|
|
|
void checkSize();
|
|
|
|
QGraphicsView* view;
|
|
|
|
QGraphicsScene* scene;
|
2009-03-16 12:15:11 +00:00
|
|
|
Corner* items[ 8 ];
|
2009-02-27 15:40:53 +00:00
|
|
|
bool hidden[ 8 ];
|
2008-11-06 10:42:36 +00:00
|
|
|
QMenu* popups[ 8 ];
|
|
|
|
QVector< QAction* > popup_actions[ 8 ];
|
|
|
|
QActionGroup* grp[ 8 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
class Monitor::Corner
|
|
|
|
: public QGraphicsRectItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Corner( Monitor* m );
|
2009-03-16 12:15:11 +00:00
|
|
|
~Corner( );
|
|
|
|
void setActive(bool active);
|
|
|
|
bool active() const;
|
2008-11-06 10:42:36 +00:00
|
|
|
protected:
|
|
|
|
virtual void contextMenuEvent( QGraphicsSceneContextMenuEvent* e );
|
|
|
|
virtual void mousePressEvent( QGraphicsSceneMouseEvent* e );
|
2009-03-16 12:15:11 +00:00
|
|
|
virtual void hoverEnterEvent( QGraphicsSceneHoverEvent * e);
|
|
|
|
virtual void hoverLeaveEvent( QGraphicsSceneHoverEvent * e);
|
|
|
|
virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = 0);
|
2008-11-06 10:42:36 +00:00
|
|
|
private:
|
|
|
|
Monitor* monitor;
|
2009-03-16 12:15:11 +00:00
|
|
|
Plasma::FrameSvg *button;
|
|
|
|
bool m_active;
|
|
|
|
bool m_hover;
|
2008-11-06 10:42:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|