2016-06-03 16:06:11 +08:00
|
|
|
#include "appitem.h"
|
|
|
|
|
2016-06-14 16:01:01 +08:00
|
|
|
#include "util/themeappicon.h"
|
2016-06-27 20:16:35 +08:00
|
|
|
#include "util/imagefactory.h"
|
2016-06-14 16:01:01 +08:00
|
|
|
|
2016-06-03 16:06:11 +08:00
|
|
|
#include <QPainter>
|
2016-06-07 14:40:45 +08:00
|
|
|
#include <QDrag>
|
|
|
|
#include <QMouseEvent>
|
2016-06-03 16:06:11 +08:00
|
|
|
|
2016-06-07 14:40:45 +08:00
|
|
|
#define APP_DRAG_THRESHOLD 20
|
|
|
|
|
2016-06-21 17:24:03 +08:00
|
|
|
int AppItem::IconBaseSize;
|
2016-06-15 16:17:51 +08:00
|
|
|
QPoint AppItem::MousePressPos;
|
2016-06-06 14:57:07 +08:00
|
|
|
|
2016-06-03 16:06:11 +08:00
|
|
|
AppItem::AppItem(const QDBusObjectPath &entry, QWidget *parent)
|
2016-06-06 11:37:09 +08:00
|
|
|
: DockItem(App, parent),
|
2016-07-18 14:13:36 +08:00
|
|
|
m_appNameTips(new QLabel(this)),
|
2016-06-07 16:01:37 +08:00
|
|
|
m_itemEntry(new DBusDockEntry(entry.path(), this)),
|
2016-07-12 16:33:01 +08:00
|
|
|
m_draging(false),
|
|
|
|
m_horizontalIndicator(QPixmap(":/indicator/resources/indicator.png")),
|
|
|
|
m_verticalIndicator(QPixmap(":/indicator/resources/indicator_ver.png")),
|
|
|
|
m_activeHorizontalIndicator(QPixmap(":/indicator/resources/indicator_active.png")),
|
|
|
|
m_activeVerticalIndicator(QPixmap(":/indicator/resources/indicator_active_ver.png"))
|
2016-06-03 16:06:11 +08:00
|
|
|
{
|
2016-07-20 15:17:41 +08:00
|
|
|
setAccessibleName(m_itemEntry->name());
|
2016-06-23 14:45:57 +08:00
|
|
|
setAcceptDrops(true);
|
2016-06-06 14:28:28 +08:00
|
|
|
|
2016-06-14 11:22:19 +08:00
|
|
|
m_id = m_itemEntry->id();
|
2016-06-23 14:28:47 +08:00
|
|
|
m_active = m_itemEntry->active();
|
2016-06-06 14:28:28 +08:00
|
|
|
|
2016-07-18 14:13:36 +08:00
|
|
|
m_appNameTips->setVisible(false);
|
|
|
|
m_appNameTips->setStyleSheet("color:white;"
|
|
|
|
"padding:5px 10px;");
|
|
|
|
|
2016-06-23 14:28:47 +08:00
|
|
|
connect(m_itemEntry, &DBusDockEntry::ActiveChanged, this, &AppItem::activeChanged);
|
2016-06-15 11:20:05 +08:00
|
|
|
connect(m_itemEntry, &DBusDockEntry::TitlesChanged, this, &AppItem::updateTitle);
|
2016-06-14 11:22:19 +08:00
|
|
|
connect(m_itemEntry, &DBusDockEntry::ActiveChanged, this, static_cast<void (AppItem::*)()>(&AppItem::update));
|
2016-06-14 16:01:01 +08:00
|
|
|
|
2016-06-15 11:20:05 +08:00
|
|
|
updateTitle();
|
|
|
|
updateIcon();
|
2016-06-14 11:22:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString AppItem::appId() const
|
|
|
|
{
|
|
|
|
return m_id;
|
2016-06-03 16:06:11 +08:00
|
|
|
}
|
|
|
|
|
2016-06-21 17:24:03 +08:00
|
|
|
void AppItem::setIconBaseSize(const int size)
|
|
|
|
{
|
|
|
|
IconBaseSize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AppItem::iconBaseSize()
|
|
|
|
{
|
|
|
|
return IconBaseSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AppItem::itemBaseWidth()
|
|
|
|
{
|
2016-06-23 14:28:47 +08:00
|
|
|
if (DockDisplayMode == Dock::Fashion)
|
|
|
|
return itemBaseHeight() * 1.1;
|
|
|
|
else
|
|
|
|
return itemBaseHeight() * 1.4;
|
2016-06-21 17:24:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int AppItem::itemBaseHeight()
|
|
|
|
{
|
2016-07-11 17:17:32 +08:00
|
|
|
if (DockDisplayMode == Efficient)
|
|
|
|
return IconBaseSize * 1.2;
|
|
|
|
else
|
|
|
|
return IconBaseSize * 1.5;
|
2016-06-21 17:24:03 +08:00
|
|
|
}
|
|
|
|
|
2016-06-03 16:06:11 +08:00
|
|
|
void AppItem::paintEvent(QPaintEvent *e)
|
|
|
|
{
|
|
|
|
DockItem::paintEvent(e);
|
|
|
|
|
2016-06-23 14:28:47 +08:00
|
|
|
if (m_draging)
|
2016-06-07 16:01:37 +08:00
|
|
|
return;
|
|
|
|
|
2016-06-03 16:06:11 +08:00
|
|
|
QPainter painter(this);
|
2016-06-21 19:25:30 +08:00
|
|
|
if (!painter.isActive())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const QRect itemRect = rect();
|
2016-06-06 14:28:28 +08:00
|
|
|
|
2016-06-14 16:01:01 +08:00
|
|
|
// draw background
|
2016-07-11 17:17:32 +08:00
|
|
|
QRect backgroundRect = itemRect;
|
|
|
|
if (DockDisplayMode == Efficient)
|
|
|
|
{
|
|
|
|
switch (DockPosition)
|
|
|
|
{
|
|
|
|
case Top:
|
|
|
|
case Bottom:
|
|
|
|
backgroundRect = itemRect.marginsRemoved(QMargins(2, 1, 2, 1));
|
|
|
|
case Left:
|
|
|
|
case Right:
|
|
|
|
backgroundRect = itemRect.marginsRemoved(QMargins(1, 2, 1, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-23 14:28:47 +08:00
|
|
|
if (DockDisplayMode == Efficient)
|
2016-06-23 10:50:26 +08:00
|
|
|
{
|
2016-06-23 14:28:47 +08:00
|
|
|
if (m_active)
|
2016-06-23 10:50:26 +08:00
|
|
|
{
|
2016-07-11 17:17:32 +08:00
|
|
|
painter.fillRect(backgroundRect, QColor(44, 167, 248, 255 * 0.3));
|
2016-06-23 14:28:47 +08:00
|
|
|
|
2016-07-11 17:17:32 +08:00
|
|
|
const int activeLineWidth = itemRect.height() > 50 ? 4 : 2;
|
2016-06-23 14:28:47 +08:00
|
|
|
QRect activeRect = backgroundRect;
|
|
|
|
switch (DockPosition)
|
|
|
|
{
|
|
|
|
case Top: activeRect.setBottom(activeRect.top() + activeLineWidth); break;
|
|
|
|
case Bottom: activeRect.setTop(activeRect.bottom() - activeLineWidth); break;
|
|
|
|
case Left: activeRect.setRight(activeRect.left() + activeLineWidth); break;
|
|
|
|
case Right: activeRect.setLeft(activeRect.right() - activeLineWidth); break;
|
|
|
|
}
|
|
|
|
|
2016-07-11 17:17:32 +08:00
|
|
|
painter.fillRect(activeRect, QColor(44, 167, 248, 255));
|
2016-06-23 14:28:47 +08:00
|
|
|
}
|
|
|
|
else if (!m_titles.isEmpty())
|
2016-07-11 17:17:32 +08:00
|
|
|
painter.fillRect(backgroundRect, QColor(255, 255, 255, 255 * 0.2));
|
2016-06-23 14:28:47 +08:00
|
|
|
// else
|
|
|
|
// painter.fillRect(backgroundRect, Qt::gray);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!m_titles.isEmpty())
|
|
|
|
{
|
2016-07-12 16:33:01 +08:00
|
|
|
QPoint p;
|
|
|
|
QPixmap pixmap;
|
|
|
|
QPixmap activePixmap;
|
2016-06-23 14:28:47 +08:00
|
|
|
switch (DockPosition)
|
|
|
|
{
|
|
|
|
case Top:
|
2016-07-12 16:33:01 +08:00
|
|
|
pixmap = m_horizontalIndicator;
|
|
|
|
activePixmap = m_activeHorizontalIndicator;
|
|
|
|
p.setX((itemRect.width() - pixmap.width()) / 2);
|
|
|
|
p.setY(1);
|
2016-06-23 14:28:47 +08:00
|
|
|
break;
|
|
|
|
case Bottom:
|
2016-07-12 16:33:01 +08:00
|
|
|
pixmap = m_horizontalIndicator;
|
|
|
|
activePixmap = m_activeHorizontalIndicator;
|
|
|
|
p.setX((itemRect.width() - pixmap.width()) / 2);
|
|
|
|
p.setY(itemRect.height() - pixmap.height() - 1);
|
2016-06-23 14:28:47 +08:00
|
|
|
break;
|
|
|
|
case Left:
|
2016-07-12 16:33:01 +08:00
|
|
|
pixmap = m_verticalIndicator;
|
|
|
|
activePixmap = m_activeVerticalIndicator;
|
|
|
|
p.setX(1);
|
|
|
|
p.setY((itemRect.height() - pixmap.height()) / 2);
|
2016-06-23 14:28:47 +08:00
|
|
|
break;
|
|
|
|
case Right:
|
2016-07-12 16:33:01 +08:00
|
|
|
pixmap = m_verticalIndicator;
|
|
|
|
activePixmap = m_activeVerticalIndicator;
|
|
|
|
p.setX(itemRect.width() - pixmap.width() - 1);
|
|
|
|
p.setY((itemRect.height() - pixmap.height()) / 2);
|
2016-06-23 14:28:47 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-07-12 16:33:01 +08:00
|
|
|
if (m_active)
|
|
|
|
painter.drawPixmap(p, activePixmap);
|
|
|
|
else
|
|
|
|
painter.drawPixmap(p, pixmap);
|
|
|
|
|
|
|
|
// const int activeLineWidth = 2;
|
|
|
|
// const int activeLineLength = 20;
|
|
|
|
// QRect activeRect = itemRect;
|
|
|
|
// switch (DockPosition)
|
|
|
|
// {
|
|
|
|
// case Top:
|
|
|
|
// activeRect.setBottom(activeRect.top() + activeLineWidth);
|
|
|
|
// activeRect.moveBottom(activeRect.bottom() + 1);
|
|
|
|
// activeRect.setWidth(activeLineLength);
|
|
|
|
// activeRect.moveLeft((itemRect.width() - activeRect.width()) / 2);
|
|
|
|
// break;
|
|
|
|
// case Bottom:
|
|
|
|
// activeRect.setTop(activeRect.bottom() - activeLineWidth);
|
|
|
|
// activeRect.moveTop(activeRect.top() - 1);
|
|
|
|
// activeRect.setWidth(activeLineLength);
|
|
|
|
// activeRect.moveLeft((itemRect.width() - activeRect.width()) / 2);
|
|
|
|
// break;
|
|
|
|
// case Left:
|
|
|
|
// activeRect.setRight(activeRect.left() + activeLineWidth);
|
|
|
|
// activeRect.moveRight(activeRect.right() + 1);
|
|
|
|
// activeRect.setHeight(activeLineLength);
|
|
|
|
// activeRect.moveTop((itemRect.height() - activeRect.height()) / 2);
|
|
|
|
// break;
|
|
|
|
// case Right:
|
|
|
|
// activeRect.setLeft(activeRect.right() - activeLineWidth);
|
|
|
|
// activeRect.moveLeft(activeRect.left() - 1);
|
|
|
|
// activeRect.setHeight(activeLineLength);
|
|
|
|
// activeRect.moveTop((itemRect.height() - activeRect.height()) / 2);
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// painter.fillRect(activeRect, QColor(163, 167, 166));
|
2016-06-23 10:50:26 +08:00
|
|
|
}
|
|
|
|
}
|
2016-06-06 14:28:28 +08:00
|
|
|
|
2016-06-27 20:16:35 +08:00
|
|
|
// icon
|
2016-06-28 13:58:41 +08:00
|
|
|
const QPixmap pixmap = DockDisplayMode == Efficient ? m_smallIcon : m_largeIcon;
|
2016-06-06 14:28:28 +08:00
|
|
|
// draw icon
|
2016-06-27 20:16:35 +08:00
|
|
|
painter.drawPixmap(itemRect.center() - pixmap.rect().center(), pixmap);
|
2016-06-28 13:58:41 +08:00
|
|
|
// draw ligher
|
|
|
|
if (m_hover)
|
|
|
|
painter.drawPixmap(itemRect.center() - pixmap.rect().center(), ImageFactory::lighterEffect(pixmap));
|
2016-06-03 16:06:11 +08:00
|
|
|
}
|
2016-06-06 14:28:28 +08:00
|
|
|
|
|
|
|
void AppItem::mouseReleaseEvent(QMouseEvent *e)
|
|
|
|
{
|
2016-06-20 14:28:25 +08:00
|
|
|
if (e->button() != Qt::LeftButton)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const QPoint distance = MousePressPos - e->pos();
|
|
|
|
if (distance.manhattanLength() < APP_DRAG_THRESHOLD)
|
2016-06-17 09:42:06 +08:00
|
|
|
m_itemEntry->Activate();
|
2016-06-07 14:40:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AppItem::mousePressEvent(QMouseEvent *e)
|
|
|
|
{
|
2016-06-22 11:02:52 +08:00
|
|
|
if (e->button() == Qt::RightButton)
|
|
|
|
{
|
|
|
|
if (perfectIconRect().contains(e->pos()))
|
|
|
|
return showContextMenu();
|
|
|
|
else
|
|
|
|
return QWidget::mousePressEvent(e);
|
|
|
|
}
|
2016-06-15 16:17:51 +08:00
|
|
|
|
|
|
|
if (e->button() == Qt::LeftButton)
|
|
|
|
MousePressPos = e->pos();
|
2016-06-07 14:40:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AppItem::mouseMoveEvent(QMouseEvent *e)
|
|
|
|
{
|
2016-06-14 15:17:25 +08:00
|
|
|
e->accept();
|
|
|
|
|
2016-06-07 14:40:45 +08:00
|
|
|
// handle drag
|
|
|
|
if (e->buttons() != Qt::LeftButton)
|
|
|
|
return;
|
|
|
|
|
2016-06-15 16:17:51 +08:00
|
|
|
const QPoint distance = e->pos() - MousePressPos;
|
2016-06-07 14:40:45 +08:00
|
|
|
if (distance.manhattanLength() < APP_DRAG_THRESHOLD)
|
|
|
|
return;
|
|
|
|
|
|
|
|
startDrag();
|
|
|
|
}
|
|
|
|
|
2016-06-15 11:20:05 +08:00
|
|
|
void AppItem::resizeEvent(QResizeEvent *e)
|
|
|
|
{
|
|
|
|
DockItem::resizeEvent(e);
|
|
|
|
|
|
|
|
updateIcon();
|
|
|
|
}
|
|
|
|
|
2016-06-23 14:45:57 +08:00
|
|
|
void AppItem::dragEnterEvent(QDragEnterEvent *e)
|
|
|
|
{
|
2016-06-23 15:30:06 +08:00
|
|
|
// ignore drag from panel
|
|
|
|
if (e->source())
|
|
|
|
return;
|
|
|
|
|
2016-07-18 17:10:15 +08:00
|
|
|
// ignore request dock event
|
|
|
|
if (e->mimeData()->formats().contains("RequestDock"))
|
|
|
|
return e->ignore();
|
|
|
|
|
2016-06-23 15:30:06 +08:00
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppItem::dropEvent(QDropEvent *e)
|
|
|
|
{
|
|
|
|
QStringList uriList;
|
|
|
|
for (auto uri : e->mimeData()->urls())
|
|
|
|
uriList << uri.toString();
|
|
|
|
|
|
|
|
// qDebug() << uriList;
|
|
|
|
m_itemEntry->HandleDragDrop(uriList);
|
2016-06-23 14:45:57 +08:00
|
|
|
}
|
|
|
|
|
2016-06-15 16:17:51 +08:00
|
|
|
void AppItem::invokedMenuItem(const QString &itemId, const bool checked)
|
|
|
|
{
|
2016-06-21 10:12:43 +08:00
|
|
|
Q_UNUSED(checked);
|
|
|
|
|
|
|
|
m_itemEntry->HandleMenuItem(itemId);
|
2016-06-15 16:17:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString AppItem::contextMenu() const
|
|
|
|
{
|
|
|
|
return m_itemEntry->menu();
|
|
|
|
}
|
|
|
|
|
2016-07-18 14:13:36 +08:00
|
|
|
QWidget *AppItem::popupTips()
|
|
|
|
{
|
2016-07-18 17:10:15 +08:00
|
|
|
if (m_draging)
|
|
|
|
return nullptr;
|
2016-07-18 14:13:36 +08:00
|
|
|
|
2016-07-19 15:11:28 +08:00
|
|
|
if (!m_titles.isEmpty())
|
|
|
|
{
|
|
|
|
const quint32 currentWindow = m_itemEntry->currentWindow();
|
|
|
|
Q_ASSERT(m_titles.contains(currentWindow));
|
|
|
|
m_appNameTips->setText(m_titles[currentWindow]);
|
|
|
|
} else {
|
|
|
|
m_appNameTips->setText(m_itemEntry->name());
|
|
|
|
}
|
2016-07-18 14:13:36 +08:00
|
|
|
|
|
|
|
return m_appNameTips;
|
|
|
|
}
|
|
|
|
|
2016-06-07 14:40:45 +08:00
|
|
|
void AppItem::startDrag()
|
|
|
|
{
|
2016-06-07 16:01:37 +08:00
|
|
|
m_draging = true;
|
|
|
|
update();
|
|
|
|
|
2016-06-07 14:40:45 +08:00
|
|
|
QDrag *drag = new QDrag(this);
|
2016-06-23 17:53:20 +08:00
|
|
|
drag->setPixmap(m_smallIcon);
|
|
|
|
drag->setHotSpot(m_smallIcon.rect().center());
|
2016-06-07 14:40:45 +08:00
|
|
|
drag->setMimeData(new QMimeData);
|
|
|
|
|
2016-06-20 14:28:25 +08:00
|
|
|
emit dragStarted();
|
2016-06-07 14:40:45 +08:00
|
|
|
const Qt::DropAction result = drag->exec(Qt::MoveAction);
|
2016-06-21 19:25:30 +08:00
|
|
|
Q_UNUSED(result);
|
2016-06-20 16:46:53 +08:00
|
|
|
|
|
|
|
// drag out of dock panel
|
|
|
|
if (!drag->target())
|
|
|
|
m_itemEntry->RequestUndock();
|
2016-06-07 16:01:37 +08:00
|
|
|
|
|
|
|
m_draging = false;
|
2016-06-20 15:42:31 +08:00
|
|
|
setVisible(true);
|
2016-06-07 16:01:37 +08:00
|
|
|
update();
|
2016-06-06 14:28:28 +08:00
|
|
|
}
|
|
|
|
|
2016-06-15 11:20:05 +08:00
|
|
|
void AppItem::updateTitle()
|
2016-06-06 14:28:28 +08:00
|
|
|
{
|
2016-06-14 15:01:27 +08:00
|
|
|
m_titles = m_itemEntry->titles();
|
|
|
|
|
|
|
|
update();
|
2016-06-06 14:28:28 +08:00
|
|
|
}
|
2016-06-14 16:01:01 +08:00
|
|
|
|
2016-06-15 11:20:05 +08:00
|
|
|
void AppItem::updateIcon()
|
2016-06-14 16:01:01 +08:00
|
|
|
{
|
|
|
|
const QString icon = m_itemEntry->icon();
|
2016-06-23 14:28:47 +08:00
|
|
|
const int iconSize = qMin(width(), height());
|
|
|
|
|
2016-07-11 17:17:32 +08:00
|
|
|
if (DockDisplayMode == Efficient)
|
|
|
|
{
|
|
|
|
m_smallIcon = ThemeAppIcon::getIcon(icon, iconSize * 0.7);
|
|
|
|
m_largeIcon = ThemeAppIcon::getIcon(icon, iconSize * 0.9);
|
|
|
|
} else {
|
|
|
|
m_smallIcon = ThemeAppIcon::getIcon(icon, iconSize * 0.6);
|
|
|
|
m_largeIcon = ThemeAppIcon::getIcon(icon, iconSize * 0.8);
|
|
|
|
}
|
2016-06-23 14:28:47 +08:00
|
|
|
}
|
2016-06-14 16:01:01 +08:00
|
|
|
|
2016-06-23 14:28:47 +08:00
|
|
|
void AppItem::activeChanged()
|
|
|
|
{
|
|
|
|
m_active = !m_active;
|
2016-06-14 16:01:01 +08:00
|
|
|
}
|