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-08-07 01:41:21 +02:00
|
|
|
#include <QMenu>
|
2011-08-16 23:52:25 +02:00
|
|
|
#include <QApplication>
|
2011-08-02 16:13:48 +02:00
|
|
|
|
|
|
|
QMenuProxy::QMenuProxy (QObject *parent)
|
|
|
|
: QObject (parent)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
QDeclarativeListProperty<QMenuItem> QMenuProxy::actions()
|
|
|
|
{
|
|
|
|
return QDeclarativeListProperty<QMenuItem>(this, m_actions);
|
|
|
|
}
|
|
|
|
|
|
|
|
int QMenuProxy::actionCount() const
|
|
|
|
{
|
|
|
|
return m_actions.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
QMenuItem *QMenuProxy::action(int index) const
|
|
|
|
{
|
|
|
|
return m_actions.at(index);
|
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-08-07 01:41:21 +02:00
|
|
|
foreach(QMenuItem* item, m_actions) {
|
2011-08-16 23:52:25 +02:00
|
|
|
m_menu->addAction(item->nativeAction());
|
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-08-02 16:13:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "qmenu.moc"
|
|
|
|
|