dde-dock/frame/item/appmultiitem.cpp
范朋程 2d958dd670 chore: V23接口改造适配
V23接口改造适配

Log: V23接口改造适配
Influence: 无
Task: https://pms.uniontech.com/task-view-207483.html
Change-Id: Ide530c023ea41f86fad2e8001ec67f1afaa897ab
2022-12-06 14:40:35 +08:00

159 lines
4.4 KiB
C++

/*
* Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
*
* Author: donghualin <donghualin@uniontech.com>
*
* Maintainer: donghualin <donghualin@uniontech.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* 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/>.
*/
#include "appitem.h"
#include "appmultiitem.h"
#include "imageutil.h"
#include "themeappicon.h"
#include <QBitmap>
#include <QMenu>
#include <QPixmap>
#include <QX11Info>
#include <X11/Xlib.h>
#include <X11/X.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <sys/shm.h>
AppMultiItem::AppMultiItem(AppItem *appItem, WId winId, const WindowInfo &windowInfo, QWidget *parent)
: DockItem(parent)
, m_appItem(appItem)
, m_windowInfo(windowInfo)
, m_entryInter(appItem->itemEntryInter())
, m_winId(winId)
, m_menu(new QMenu(this))
{
initMenu();
initConnection();
}
AppMultiItem::~AppMultiItem()
{
}
QSize AppMultiItem::suitableSize(int size) const
{
return QSize(size, size);
}
AppItem *AppMultiItem::appItem() const
{
return m_appItem;
}
quint32 AppMultiItem::winId() const
{
return m_winId;
}
const WindowInfo &AppMultiItem::windowInfo() const
{
return m_windowInfo;
}
DockItem::ItemType AppMultiItem::itemType() const
{
return DockItem::AppMultiWindow;
}
void AppMultiItem::initMenu()
{
QAction *actionOpen = new QAction(m_menu);
actionOpen->setText(tr("Open"));
connect(actionOpen, &QAction::triggered, this, &AppMultiItem::onOpen);
m_menu->addAction(actionOpen);
}
void AppMultiItem::initConnection()
{
connect(m_entryInter, &DockEntryInter::CurrentWindowChanged, this, &AppMultiItem::onCurrentWindowChanged);
}
void AppMultiItem::onOpen()
{
m_entryInter->ActiveWindow(m_winId);
}
void AppMultiItem::onCurrentWindowChanged(uint32_t value)
{
if (value != m_winId)
return;
update();
}
void AppMultiItem::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing, true);
painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
if (m_pixmap.isNull())
m_pixmap = ImageUtil::loadWindowThumb(Utils::IS_WAYLAND_DISPLAY ? m_windowInfo.uuid : QString::number(m_winId));
DStyleHelper dstyle(style());
const int radius = dstyle.pixelMetric(DStyle::PM_FrameRadius);
QRect itemRect = rect();
itemRect.marginsRemoved(QMargins(6, 6, 6, 6));
QPainterPath path;
path.addRoundedRect(rect(), radius, radius);
painter.fillPath(path, Qt::transparent);
if (m_entryInter->currentWindow() == m_winId) {
QColor backColor = Qt::black;
backColor.setAlpha(255 * 0.8);
painter.fillPath(path, backColor);
}
itemRect = m_pixmap.rect();
int itemWidth = itemRect.width();
int itemHeight = itemRect.height();
int x = (rect().width() - itemWidth) / 2;
int y = (rect().height() - itemHeight) / 2;
painter.drawPixmap(QRect(x, y, itemWidth, itemHeight), m_pixmap);
QPixmap pixmapAppIcon;
ThemeAppIcon::getIcon(pixmapAppIcon, m_entryInter->icon(), qMin(width(), height()) * 0.8);
if (!pixmapAppIcon.isNull()) {
// 绘制下方的图标,下方的小图标大约为应用图标的三分之一的大小
//pixmap = pixmap.scaled(pixmap.width() * 0.3, pixmap.height() * 0.3);
QRect rectIcon = rect();
int iconWidth = rectIcon.width() * 0.3;
int iconHeight = rectIcon.height() * 0.3;
rectIcon.setX((rect().width() - iconWidth) * 0.5);
rectIcon.setY(rect().height() - iconHeight);
rectIcon.setWidth(iconWidth);
rectIcon.setHeight(iconHeight);
painter.drawPixmap(rectIcon, pixmapAppIcon);
}
}
void AppMultiItem::mouseReleaseEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
m_entryInter->ActiveWindow(m_winId);
} else {
QPoint currentPoint = QCursor::pos();
m_menu->exec(currentPoint);
}
}