/* * * Copyright (C) 2013 * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef XDGCACHEDMENU_H #define XDGCACHEDMENU_H #include #include class QEvent; class QMouseEvent; class XdgCachedMenu : public QMenu { Q_OBJECT public: XdgCachedMenu(QWidget* parent = NULL); XdgCachedMenu(MenuCache* menuCache, QWidget* parent); virtual ~XdgCachedMenu(); protected: bool event(QEvent* event); private: void addMenuItems(QMenu* menu, MenuCacheDir* dir); void handleMouseMoveEvent(QMouseEvent *event); private Q_SLOTS: void onItemTrigerred(); void onAboutToShow(); private: QPoint mDragStartPosition; guint32 menu_cache_desktop_; }; class XdgCachedMenuAction: public QAction { Q_OBJECT public: explicit XdgCachedMenuAction(MenuCacheItem* item, QObject* parent = 0); inline const QString & filePath() const { return filePath_; } void updateIcon(); private: QString iconName_; QString filePath_; }; #endif // XDGCACHEDMENU_H