mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
144 lines
3.6 KiB
C
144 lines
3.6 KiB
C
![]() |
/*
|
||
|
This file is part of the KDE project.
|
||
|
|
||
|
Copyright (c) 2011 Lionel Chauvin <megabigbug@yahoo.fr>
|
||
|
Copyright (c) 2011,2012 Cédric Bellegarde <gnumdk@gmail.com>
|
||
|
|
||
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
copy of this software and associated documentation files (the "Software"),
|
||
|
to deal in the Software without restriction, including without limitation
|
||
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
|
and/or sell copies of the Software, and to permit persons to whom the
|
||
|
Software is furnished to do so, subject to the following conditions:
|
||
|
|
||
|
The above copyright notice and this permission notice shall be included in
|
||
|
all copies or substantial portions of the Software.
|
||
|
|
||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||
|
DEALINGS IN THE SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#ifndef MENUWIDGET__H
|
||
|
#define MENUWIDGET__H
|
||
|
|
||
|
#include "menubutton.h"
|
||
|
|
||
|
#include <QGraphicsWidget>
|
||
|
#include <QTimer>
|
||
|
|
||
|
class QGraphicsLinearLayout;
|
||
|
class QGraphicsView;
|
||
|
|
||
|
class MenuWidget : public QGraphicsWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
MenuWidget(QGraphicsView *view = 0);
|
||
|
~MenuWidget();
|
||
|
|
||
|
/**
|
||
|
* Set root menu
|
||
|
*/
|
||
|
void setMenu(QMenu *menu);
|
||
|
/**
|
||
|
* Init layout with root menu
|
||
|
*/
|
||
|
void initLayout();
|
||
|
/**
|
||
|
* True if a menu is visible in menuwidget
|
||
|
*/
|
||
|
bool aMenuIsVisible() { return m_visibleMenu; }
|
||
|
/**
|
||
|
* Activate action, or first action if null
|
||
|
*/
|
||
|
void setActiveAction(QAction *action);
|
||
|
|
||
|
/**
|
||
|
* Auto open menu items on mouse over
|
||
|
*/
|
||
|
void autoOpen() { m_mouseTimer->start(100); }
|
||
|
|
||
|
/**
|
||
|
* Return content bottom margin
|
||
|
*/
|
||
|
qreal contentBottomMargin() { return m_contentBottomMargin; }
|
||
|
|
||
|
void hide();
|
||
|
|
||
|
protected:
|
||
|
/**
|
||
|
* Use to get keyboard events
|
||
|
*/
|
||
|
virtual bool eventFilter(QObject*, QEvent*);
|
||
|
/**
|
||
|
* Filter events on main menu
|
||
|
*/
|
||
|
bool menuEventFilter(QEvent* event);
|
||
|
/**
|
||
|
* Filter events on submenus
|
||
|
*/
|
||
|
bool subMenuEventFilter(QObject* object, QEvent* event);
|
||
|
private Q_SLOTS:
|
||
|
/**
|
||
|
* Clean menu if destroyed
|
||
|
*/
|
||
|
void slotMenuDestroyed();
|
||
|
/**
|
||
|
* Check hovered item and active it
|
||
|
*/
|
||
|
void slotCheckActiveItem();
|
||
|
/**
|
||
|
* A menu is hidding
|
||
|
*/
|
||
|
void slotMenuAboutToHide();
|
||
|
/**
|
||
|
* Menubar button clicked
|
||
|
*/
|
||
|
void slotButtonClicked();
|
||
|
/**
|
||
|
* Update pending actions
|
||
|
*/
|
||
|
void slotUpdateActions();
|
||
|
Q_SIGNALS:
|
||
|
void needResize();
|
||
|
void aboutToHide();
|
||
|
private:
|
||
|
/**
|
||
|
* Return a button based on action
|
||
|
*/
|
||
|
MenuButton* createButton(QAction *action);
|
||
|
/**
|
||
|
* Show current button menu
|
||
|
* return showed menu
|
||
|
*/
|
||
|
QMenu* showMenu();
|
||
|
/**
|
||
|
* Show next menu if next, otherwise previous
|
||
|
*/
|
||
|
void showLeftRightMenu(bool next);
|
||
|
/**
|
||
|
* Install event filter for menu and it submenus
|
||
|
*/
|
||
|
void installEventFilterForAll(QMenu *menu, QObject *object);
|
||
|
|
||
|
//Follow mouse position
|
||
|
QTimer *m_mouseTimer;
|
||
|
//Update actions
|
||
|
QTimer *m_actionTimer;
|
||
|
QGraphicsView *m_view;
|
||
|
QGraphicsLinearLayout *m_layout;
|
||
|
QList<MenuButton*> m_buttons;
|
||
|
MenuButton *m_currentButton;
|
||
|
qreal m_contentBottomMargin;
|
||
|
QPoint m_mousePosition;
|
||
|
QMenu *m_visibleMenu;
|
||
|
QMenu *m_menu;
|
||
|
};
|
||
|
|
||
|
#endif //MENUWIDGET__H
|