You've already forked ukui-panel
mirror of
https://github.com/ukui/ukui-panel.git
synced 2026-03-09 09:24:21 -07:00
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2019 Tianjin KYLIN Information Technology Co., Ltd.
|
|
*
|
|
* This program 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, 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef STARTMENU_H
|
|
#define STARTMENU_H
|
|
|
|
#include "../panel/iukuipanelplugin.h"
|
|
#include <QApplication>
|
|
#include <QDesktopWidget>
|
|
#include <QFrame>
|
|
#include <QFontMetrics>
|
|
#include <QLineEdit>
|
|
#include <QToolButton>
|
|
|
|
#include <QMainWindow>
|
|
#include <QHBoxLayout>
|
|
#include <QDebug>
|
|
#include <QProcess>
|
|
|
|
#include "../panel/ukuipanel.h"
|
|
#include <QMenu>
|
|
#define DEFAULT_SHORTCUT "Alt+F1"
|
|
|
|
|
|
class Segmentation : public QObject, public IUKUIPanelPlugin
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Segmentation(const IUKUIPanelPluginStartupInfo &startupInfo);
|
|
~Segmentation();
|
|
|
|
virtual QWidget *widget() { return &mButton; }
|
|
virtual QString themeId() const { return QStringLiteral("segmentation"); }
|
|
void realign();
|
|
virtual IUKUIPanelPlugin::Flags flags() const { return PreferRightAlignment | HaveConfigDialog ; }
|
|
private:
|
|
//StartMenuWidget mWidget;
|
|
//QWidget mWidget;
|
|
IUKUIPanelPlugin *mPlugin;
|
|
QToolButton mButton;
|
|
bool mCapturing;
|
|
|
|
private slots:
|
|
void captureMouse();
|
|
};
|
|
|
|
class StartMenuLibrary: public QObject, public IUKUIPanelPluginLibrary
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "ukui.org/Panel/PluginInterface/3.0")
|
|
Q_INTERFACES(IUKUIPanelPluginLibrary)
|
|
public:
|
|
IUKUIPanelPlugin *instance(const IUKUIPanelPluginStartupInfo &startupInfo) const
|
|
{
|
|
return new Segmentation(startupInfo);
|
|
}
|
|
};
|
|
|
|
#endif
|