kde-workspace/kcontrol/randr/outputgraphicsitem.h

72 lines
2.1 KiB
C
Raw Normal View History

2014-11-13 19:30:51 +02:00
/*
* Copyright (c) 2007 Gustavo Pichorim Boiko <gustavo.boiko@kdemail.net>
*
* 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 OUTPUTGRAPHICSITEM_H
#define OUTPUTGRAPHICSITEM_H
#include <QtGui/qgraphicsitem.h>
#include <QtGui/qgraphicsitem.h>
2014-11-13 19:30:51 +02:00
#include "randr.h"
class OutputConfig;
class OutputGraphicsItem : public QObject, public QGraphicsRectItem
{
Q_OBJECT
2014-11-13 19:30:51 +02:00
public:
OutputGraphicsItem(OutputConfig *config);
~OutputGraphicsItem();
2014-11-13 19:30:51 +02:00
void configUpdated(); // updates from OutputConfig
2014-11-13 19:30:51 +02:00
OutputGraphicsItem *left() const;
OutputGraphicsItem *right() const;
OutputGraphicsItem *top() const;
OutputGraphicsItem *bottom() const;
2014-11-13 19:30:51 +02:00
void setLeft(OutputGraphicsItem *output);
void setRight(OutputGraphicsItem *output);
void setTop(OutputGraphicsItem *output);
void setBottom(OutputGraphicsItem *output);
2014-11-13 19:30:51 +02:00
bool isConnected();
bool isPrimary() const;
void setPrimary(bool);
2014-11-13 19:30:51 +02:00
protected:
void disconnect();
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
2014-11-13 19:30:51 +02:00
signals:
void itemChanged(OutputGraphicsItem *item);
2014-11-13 19:30:51 +02:00
private:
void calculateSetRect( OutputConfig* config );
OutputGraphicsItem *m_left;
OutputGraphicsItem *m_right;
OutputGraphicsItem *m_top;
OutputGraphicsItem *m_bottom;
OutputConfig *m_config;
QGraphicsTextItem *m_text;
2014-11-13 19:30:51 +02:00
};
#endif // OUTPUTGRAPHICSITEM_H