/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QMENU_H #define QMENU_H #include #include #include #include #include #ifdef Q_WS_WINCE #include // for HMENU #endif QT_BEGIN_HEADER QT_BEGIN_NAMESPACE QT_MODULE(Gui) #ifndef QT_NO_MENU class QMenuPrivate; class QStyleOptionMenuItem; class Q_WIDGETS_EXPORT QMenu : public QWidget { private: Q_OBJECT Q_DECLARE_PRIVATE(QMenu) Q_PROPERTY(bool tearOffEnabled READ isTearOffEnabled WRITE setTearOffEnabled) Q_PROPERTY(QString title READ title WRITE setTitle) Q_PROPERTY(QIcon icon READ icon WRITE setIcon) Q_PROPERTY(bool separatorsCollapsible READ separatorsCollapsible WRITE setSeparatorsCollapsible) public: explicit QMenu(QWidget *parent = 0); explicit QMenu(const QString &title, QWidget *parent = 0); ~QMenu(); #ifdef Q_NO_USING_KEYWORD inline void addAction(QAction *action) { QWidget::addAction(action); } #else using QWidget::addAction; #endif QAction *addAction(const QString &text); QAction *addAction(const QIcon &icon, const QString &text); QAction *addAction(const QString &text, const QObject *receiver, const char* member, const QKeySequence &shortcut = 0); QAction *addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char* member, const QKeySequence &shortcut = 0); QAction *addMenu(QMenu *menu); QMenu *addMenu(const QString &title); QMenu *addMenu(const QIcon &icon, const QString &title); QAction *addSeparator(); QAction *insertMenu(QAction *before, QMenu *menu); QAction *insertSeparator(QAction *before); bool isEmpty() const; void clear(); void setTearOffEnabled(bool); bool isTearOffEnabled() const; bool isTearOffMenuVisible() const; void hideTearOffMenu(); void setDefaultAction(QAction *); QAction *defaultAction() const; void setActiveAction(QAction *act); QAction *activeAction() const; void popup(const QPoint &pos, QAction *at=0); QAction *exec(); QAction *exec(const QPoint &pos, QAction *at=0); // ### Qt 5: merge static QAction *exec(QList actions, const QPoint &pos, QAction *at=0); static QAction *exec(QList actions, const QPoint &pos, QAction *at, QWidget *parent); QSize sizeHint() const; QRect actionGeometry(QAction *) const; QAction *actionAt(const QPoint &) const; QAction *menuAction() const; QString title() const; void setTitle(const QString &title); QIcon icon() const; void setIcon(const QIcon &icon); void setNoReplayFor(QWidget *widget); QPlatformMenu *platformMenu(); #ifdef Q_WS_WINCE HMENU wceMenu(); #endif bool separatorsCollapsible() const; void setSeparatorsCollapsible(bool collapse); Q_SIGNALS: void aboutToShow(); void aboutToHide(); void triggered(QAction *action); void hovered(QAction *action); protected: int columnCount() const; void changeEvent(QEvent *); void keyPressEvent(QKeyEvent *); void mouseReleaseEvent(QMouseEvent *); void mousePressEvent(QMouseEvent *); void mouseMoveEvent(QMouseEvent *); #ifndef QT_NO_WHEELEVENT void wheelEvent(QWheelEvent *); #endif void enterEvent(QEvent *); void leaveEvent(QEvent *); void hideEvent(QHideEvent *); void paintEvent(QPaintEvent *); void actionEvent(QActionEvent *); void timerEvent(QTimerEvent *); bool event(QEvent *); bool focusNextPrevChild(bool next); void initStyleOption(QStyleOptionMenuItem *option, const QAction *action) const; #ifdef Q_WS_WINCE QAction* wceCommands(uint command); #endif private Q_SLOTS: void internalSetSloppyAction(); void internalDelayedPopup(); private: Q_PRIVATE_SLOT(d_func(), void _q_actionTriggered()) Q_PRIVATE_SLOT(d_func(), void _q_actionHovered()) Q_PRIVATE_SLOT(d_func(), void _q_overrideMenuActionDestroyed()) protected: QMenu(QMenuPrivate &dd, QWidget* parent = 0); private: Q_DISABLE_COPY(QMenu) friend class QMenuBar; friend class QMenuBarPrivate; friend class QTornOffMenu; friend class Q3PopupMenu; friend class QComboBox; friend class QAction; friend class QToolButtonPrivate; friend void qt_mac_emit_menuSignals(QMenu *menu, bool show); friend void qt_mac_menu_emit_hovered(QMenu *menu, QAction *action); }; #endif // QT_NO_MENU QT_END_NAMESPACE QT_END_HEADER #endif // QMENU_H