You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
2.9 KiB
121 lines
2.9 KiB
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
|
* (c)LGPL2+
|
|
*
|
|
* LXDE-Qt - a lightweight, Qt based, desktop toolset
|
|
* http://razor-qt.org
|
|
*
|
|
* Copyright: 2010-2011 Razor team
|
|
* Authors:
|
|
* Alexander Sokoloff <sokoloff.a@gmail.com>
|
|
*
|
|
* This program or 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
|
|
*
|
|
* END_COMMON_COPYRIGHT_HEADER */
|
|
|
|
|
|
#ifndef LXQT_MAINMENU_H
|
|
#define LXQT_MAINMENU_H
|
|
|
|
#include "../panel/ilxqtpanelplugin.h"
|
|
#include <XdgMenu>
|
|
|
|
#ifdef HAVE_MENU_CACHE
|
|
#include <menu-cache/menu-cache.h>
|
|
#endif
|
|
|
|
#include <QLabel>
|
|
#include <QToolButton>
|
|
#include <QDomElement>
|
|
#include <QAction>
|
|
#include <QTimer>
|
|
#include <QKeySequence>
|
|
|
|
#include "menustyle.h"
|
|
|
|
|
|
class QMenu;
|
|
class LxQtBar;
|
|
|
|
namespace LxQt {
|
|
class PowerManager;
|
|
class ScreenSaver;
|
|
}
|
|
|
|
namespace GlobalKeyShortcut
|
|
{
|
|
class Action;
|
|
}
|
|
|
|
class LxQtMainMenu : public QObject, public ILxQtPanelPlugin
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
LxQtMainMenu(const ILxQtPanelPluginStartupInfo &startupInfo);
|
|
~LxQtMainMenu();
|
|
|
|
QString themeId() const { return "MainMenu"; }
|
|
virtual ILxQtPanelPlugin::Flags flags() const { return HaveConfigDialog ; }
|
|
|
|
QWidget *widget() { return &mButton; }
|
|
QDialog *configureDialog();
|
|
|
|
bool isSeparate() const { return true; }
|
|
|
|
protected:
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
private:
|
|
QToolButton mButton;
|
|
QString mLogDir;
|
|
QMenu* mMenu;
|
|
GlobalKeyShortcut::Action *mShortcut;
|
|
MenuStyle mTopMenuStyle;
|
|
MenuStyle mMenuStyle;
|
|
|
|
#ifdef HAVE_MENU_CACHE
|
|
MenuCache* mMenuCache;
|
|
MenuCacheNotifyId mMenuCacheNotify;
|
|
static void menuCacheReloadNotify(MenuCache* cache, gpointer user_data);
|
|
#else
|
|
XdgMenu mXdgMenu;
|
|
#endif
|
|
|
|
bool mLockCascadeChanges;
|
|
QTimer mDelayedPopup;
|
|
QKeySequence mShortcutSeq;
|
|
|
|
protected slots:
|
|
|
|
virtual void settingsChanged();
|
|
void buildMenu();
|
|
|
|
private slots:
|
|
void showMenu();
|
|
void showHideMenu();
|
|
void shortcutChanged(const QString &oldShortcut, const QString &newShortcut);
|
|
};
|
|
|
|
class LxQtMainMenuPluginLibrary: public QObject, public ILxQtPanelPluginLibrary
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "lxde-qt.org/Panel/PluginInterface/3.0")
|
|
Q_INTERFACES(ILxQtPanelPluginLibrary)
|
|
public:
|
|
ILxQtPanelPlugin *instance(const ILxQtPanelPluginStartupInfo &startupInfo) { return new LxQtMainMenu(startupInfo);}
|
|
};
|
|
|
|
#endif
|