2011-08-02 16:13:48 +02:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright 2011 Viranch Mehta <viranch.mehta@gmail.com> *
|
|
|
|
* *
|
|
|
|
* 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 . *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "qmenu.h"
|
2011-10-28 18:57:34 +02:00
|
|
|
|
2011-08-16 23:52:25 +02:00
|
|
|
#include <QApplication>
|
2011-10-28 20:14:38 +02:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QDesktopWidget>
|
2011-10-28 18:57:34 +02:00
|
|
|
#include <QGraphicsObject>
|
|
|
|
#include <QGraphicsView>
|
2011-11-08 23:07:42 +01:00
|
|
|
#include <QDeclarativeItem>
|
2011-08-02 16:13:48 +02:00
|
|
|
|
|
|
|
QMenuProxy::QMenuProxy (QObject *parent)
|
2011-10-28 19:40:04 +02:00
|
|
|
: QObject(parent),
|
|
|
|
m_status(DialogStatus::Closed)
|
2011-08-02 16:13:48 +02:00
|
|
|
{
|
2011-08-16 23:52:25 +02:00
|
|
|
m_menu = new QMenu(0);
|
2011-08-02 16:13:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QMenuProxy::~QMenuProxy()
|
|
|
|
{
|
2011-08-16 23:52:25 +02:00
|
|
|
delete m_menu;
|
2011-08-07 01:41:21 +02:00
|
|
|
}
|
|
|
|
|
2011-10-28 19:40:04 +02:00
|
|
|
QDeclarativeListProperty<QMenuItem> QMenuProxy::items()
|
2011-08-07 01:41:21 +02:00
|
|
|
{
|
2011-10-28 19:40:04 +02:00
|
|
|
return QDeclarativeListProperty<QMenuItem>(this, m_items);
|
2011-08-07 01:41:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int QMenuProxy::actionCount() const
|
|
|
|
{
|
2011-10-28 19:40:04 +02:00
|
|
|
return m_items.count();
|
2011-08-07 01:41:21 +02:00
|
|
|
}
|
|
|
|
|
2011-10-28 18:57:34 +02:00
|
|
|
QMenuItem *QMenuProxy::action(int index) const
|
2011-08-07 01:41:21 +02:00
|
|
|
{
|
2011-10-28 19:40:04 +02:00
|
|
|
return m_items.at(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
DialogStatus::Status QMenuProxy::status() const
|
|
|
|
{
|
|
|
|
return m_status;
|
2011-08-02 16:13:48 +02:00
|
|
|
}
|
|
|
|
|
2011-11-08 23:07:42 +01:00
|
|
|
QDeclarativeItem *QMenuProxy::visualParent() const
|
|
|
|
{
|
|
|
|
return m_visualParent.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMenuProxy::setVisualParent(QDeclarativeItem *parent)
|
|
|
|
{
|
|
|
|
if (m_visualParent.data() == parent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_visualParent = parent;
|
|
|
|
emit visualParentChanged();
|
|
|
|
}
|
|
|
|
|
2011-08-02 16:13:48 +02:00
|
|
|
void QMenuProxy::showMenu(int x, int y)
|
|
|
|
{
|
2011-08-16 23:52:25 +02:00
|
|
|
m_menu->clear();
|
2011-10-28 19:40:04 +02:00
|
|
|
foreach(QMenuItem* item, m_items) {
|
2011-08-17 17:00:53 +02:00
|
|
|
m_menu->addAction (item);
|
2011-08-07 01:41:21 +02:00
|
|
|
}
|
|
|
|
|
2011-08-16 23:52:25 +02:00
|
|
|
QPoint screenPos = QApplication::activeWindow()->mapToGlobal(QPoint(x, y));
|
|
|
|
m_menu->popup(screenPos);
|
2011-10-28 19:40:04 +02:00
|
|
|
m_status = DialogStatus::Open;
|
|
|
|
emit statusChanged();
|
2011-08-02 16:13:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-28 18:57:34 +02:00
|
|
|
void QMenuProxy::open()
|
|
|
|
{
|
2011-10-28 20:14:38 +02:00
|
|
|
m_menu->clear();
|
|
|
|
|
|
|
|
foreach(QMenuItem* item, m_items) {
|
|
|
|
m_menu->addAction (item);
|
|
|
|
}
|
|
|
|
m_menu->updateGeometry();
|
|
|
|
|
2011-11-08 23:07:42 +01:00
|
|
|
QGraphicsObject *parentItem;
|
|
|
|
if (m_visualParent) {
|
|
|
|
parentItem = qobject_cast<QGraphicsObject *>(parent());
|
|
|
|
} else {
|
|
|
|
parentItem = m_visualParent.data();
|
|
|
|
}
|
2011-10-28 18:57:34 +02:00
|
|
|
|
|
|
|
if (!parentItem || !parentItem->scene()) {
|
|
|
|
showMenu(0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<QGraphicsView*> views = parentItem->scene()->views();
|
|
|
|
|
|
|
|
if (views.size() < 1) {
|
|
|
|
showMenu(0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QGraphicsView *view = 0;
|
|
|
|
if (views.size() == 1) {
|
|
|
|
view = views[0];
|
|
|
|
} else {
|
|
|
|
QGraphicsView *found = 0;
|
|
|
|
QGraphicsView *possibleFind = 0;
|
|
|
|
foreach (QGraphicsView *v, views) {
|
|
|
|
if (v->sceneRect().intersects(parentItem->sceneBoundingRect()) ||
|
|
|
|
v->sceneRect().contains(parentItem->scenePos())) {
|
|
|
|
if (v->isActiveWindow()) {
|
|
|
|
found = v;
|
|
|
|
} else {
|
|
|
|
possibleFind = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
view = found ? found : possibleFind;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!view) {
|
|
|
|
showMenu(0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-28 20:14:38 +02:00
|
|
|
const QRect avail = QApplication::desktop()->availableGeometry(view);
|
|
|
|
QPoint menuPos = view->mapToGlobal(view->mapFromScene(parentItem->scenePos()+QPoint(0, parentItem->boundingRect().height())));
|
|
|
|
|
2011-10-28 20:34:46 +02:00
|
|
|
if (menuPos.y() + m_menu->sizeHint().height() > avail.bottom()) {
|
|
|
|
menuPos = view->mapToGlobal(view->mapFromScene(parentItem->scenePos() - QPoint(0, m_menu->sizeHint().height())));
|
2011-10-28 20:14:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
m_menu->popup(menuPos);
|
|
|
|
m_status = DialogStatus::Open;
|
|
|
|
emit statusChanged();
|
2011-10-28 18:57:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void QMenuProxy::close()
|
|
|
|
{
|
|
|
|
m_menu->hide();
|
2011-10-28 19:40:04 +02:00
|
|
|
m_status = DialogStatus::Closed;
|
|
|
|
emit statusChanged();
|
2011-10-28 18:57:34 +02:00
|
|
|
}
|
|
|
|
|
2011-08-02 16:13:48 +02:00
|
|
|
#include "qmenu.moc"
|
|
|
|
|