1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-31 11:35:24 +01:00

Fallback for the OSD on systems without transparant top level widgets

This commit is contained in:
David Sansome 2010-03-25 19:57:52 +00:00
parent b492a63dfa
commit 3a726f71cd
2 changed files with 37 additions and 1 deletions

View File

@ -24,9 +24,14 @@
#include <QSettings>
#include <QMouseEvent>
#include <QTimer>
#include <QBitmap>
#include <QtDebug>
#ifdef Q_WS_X11
# include <QX11Info>
#endif
const char* OSDPretty::kSettingsGroup = "OSDPretty";
const int OSDPretty::kDropShadowSize = 13;
@ -36,6 +41,7 @@ const int OSDPretty::kMaxIconSize = 100;
const QRgb OSDPretty::kPresetBlue = qRgb(102, 150, 227);
const QRgb OSDPretty::kPresetOrange = qRgb(254, 156, 67);
OSDPretty::OSDPretty(QWidget *parent)
: QWidget(parent),
mode_(Mode_Popup),
@ -74,6 +80,13 @@ OSDPretty::OSDPretty(QWidget *parent)
Load();
}
bool OSDPretty::IsTransparencyAvailable() {
#ifdef Q_WS_X11
return QX11Info::isCompositingManagerRunning();
#endif
return true;
}
void OSDPretty::Load() {
QSettings s;
s.beginGroup(kSettingsGroup);
@ -107,12 +120,17 @@ void OSDPretty::SetMode(Mode mode) {
}
}
QRect OSDPretty::BoxBorder() const {
return rect().adjusted(kDropShadowSize, kDropShadowSize,
-kDropShadowSize, -kDropShadowSize);
}
void OSDPretty::paintEvent(QPaintEvent *) {
QPainter p(this);
p.setRenderHint(QPainter::Antialiasing);
p.setRenderHint(QPainter::HighQualityAntialiasing);
QRect box(rect().adjusted(kDropShadowSize, kDropShadowSize, -kDropShadowSize, -kDropShadowSize));
QRect box(BoxBorder());
// Shadow corners
const int kShadowCornerSize = kDropShadowSize + kBorderRadius;
@ -201,6 +219,20 @@ void OSDPretty::Reposition() {
move(qBound(0, x, geometry.right() - width()),
qBound(0, y, geometry.bottom() - height()));
if (IsTransparencyAvailable())
clearMask();
else {
QBitmap mask(size());
mask.clear();
QPainter p(&mask);
p.setBrush(Qt::color1);
p.drawRoundedRect(BoxBorder().adjusted(-1, -1, 0, 0), kBorderRadius, kBorderRadius);
p.end();
setMask(mask);
}
}
void OSDPretty::enterEvent(QEvent *) {

View File

@ -41,6 +41,8 @@ class OSDPretty : public QWidget {
Mode_Draggable,
};
static bool IsTransparencyAvailable();
void SetMode(Mode mode);
void SetMessage(const QString& summary,
const QString& message,
@ -78,6 +80,8 @@ class OSDPretty : public QWidget {
void Reposition();
void Load();
QRect BoxBorder() const;
private:
Ui::OSDPretty ui_;