Files
cantata/support/gtkproxystyle.cpp
craig.p.drummond c874af4bff Fix KDE compile
2013-02-27 19:41:19 +00:00

623 lines
24 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2013 Craig Drummond <craig.p.drummond@gmail.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 2 of the License, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "gtkproxystyle.h"
#include "gtkstyle.h"
#include "osthumb.h"
#include "config.h"
#include <QComboBox>
#include <QToolBar>
#include <QAbstractScrollArea>
#include <QAbstractItemView>
#include <QTreeView>
#include <QHeaderView>
#include <QScrollBar>
#include <QApplication>
#include <QHoverEvent>
#include <QPainter>
#include <QDesktopWidget>
#include <QLibrary>
#include <QTimer>
const char * GtkProxyStyle::constSlimComboProperty="gtkslim";
static const char * constIncProp="inc";
static bool revertQGtkStyleOverlayMod()
{
// TODO: This is not working. ubuntu_gtk_set_use_overlay_scrollbar is found, and called.
// But, Gtk filechooser STILL has non-overlay scrollbars!!!
typedef void (*SetUseOsFn) (int);
// enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0
QLibrary libgtk(QLatin1String("gtk-x11-2.0"), 0, 0);
SetUseOsFn setUseOsFn = (SetUseOsFn)libgtk.resolve("ubuntu_gtk_set_use_overlay_scrollbar");
if (setUseOsFn) {
setUseOsFn(!0);
return true;
}
return false;
}
GtkProxyStyle::GtkProxyStyle(bool overlaySBars)
: QProxyStyle()
, sbarThumb(0)
, sbarWidth(-1)
, sbarAreaWidth(-1)
, sbarOffset(0xffffffff)
, sbarLastPos(-1)
, sbarThumbTarget(0)
{
useOverlayScrollbars=overlaySBars && qgetenv("LIBOVERLAY_SCROLLBAR")!="0";
setBaseStyle(qApp->style());
toolbarCombo=new QComboBox(new QToolBar());
if (useOverlayScrollbars) {
int fh=QApplication::fontMetrics().height();
sbarPlainViewWidth=fh/1.5;
if (Qt::LeftToRight==QApplication::layoutDirection() && revertQGtkStyleOverlayMod()) {
sbarWidth=qMax(fh/5, 3);
sbarAreaWidth=sbarWidth*6;
sbarThumb=new OsThumb();
sbarThumb->setVisible(false);
connect(sbarThumb, SIGNAL(thumbDragged(QPoint)), SLOT(sbarThumbMoved(QPoint)));
connect(sbarThumb, SIGNAL(pageUp()), SLOT(sbarPageUp()));
connect(sbarThumb, SIGNAL(pageDown()), SLOT(sbarPageDown()));
connect(sbarThumb, SIGNAL(hiding()), SLOT(sbarThumbHiding()));
connect(sbarThumb, SIGNAL(showing()),SLOT(sbarThumbShowing()));
sbarEdgeTimer=new QTimer(this);
sbarEdgeTimer->setSingleShot(true);
sbarEdgeTimer->setInterval(10);
connect(sbarEdgeTimer, SIGNAL(timeout()), SLOT(sbarEdgeTimeout()));
}
}
}
GtkProxyStyle::~GtkProxyStyle()
{
destroySliderThumb();
}
static bool usePlainScrollbars(const QWidget *widget)
{
return !widget || 0==qstrcmp(widget->metaObject()->className(), "QWebView") ||
(widget && widget->parentWidget() && widget->parentWidget()->parentWidget() &&
0==qstrcmp(widget->parentWidget()->parentWidget()->metaObject()->className(), "QComboBoxListView"));
}
QSize GtkProxyStyle::sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const
{
QSize sz=baseStyle()->sizeFromContents(type, option, size, widget);
if (CT_ComboBox==type && widget && widget->property(constSlimComboProperty).toBool()) {
QSize orig=baseStyle()->sizeFromContents(type, option, size, widget);
QSize other=baseStyle()->sizeFromContents(type, option, size, toolbarCombo);
if (orig.height()>other.height()) {
return QSize(orig.width(), other.height());
}
return orig;
} else if (useOverlayScrollbars && CT_ScrollBar==type) {
if (const QStyleOptionSlider *sb = qstyleoption_cast<const QStyleOptionSlider *>(option)) {
int extent(pixelMetric(PM_ScrollBarExtent, option, widget)),
sliderMin(pixelMetric(PM_ScrollBarSliderMin, option, widget));
if (sb->orientation == Qt::Horizontal) {
sz = QSize(sliderMin, extent);
} else {
sz = QSize(extent, sliderMin);
}
}
}
return sz;
}
int GtkProxyStyle::styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) const
{
if (useOverlayScrollbars && SH_ScrollView_FrameOnlyAroundContents==hint) {
return false;
}
return baseStyle()->styleHint(hint, option, widget, returnData);
}
int GtkProxyStyle::pixelMetric(PixelMetric metric, const QStyleOption *option, const QWidget *widget) const
{
if (useOverlayScrollbars && PM_ScrollBarExtent==metric) {
return !sbarThumb || usePlainScrollbars(widget) ? sbarPlainViewWidth : sbarWidth;
}
return baseStyle()->pixelMetric(metric, option, widget);
}
QRect GtkProxyStyle::subControlRect(ComplexControl control, const QStyleOptionComplex *option, SubControl subControl, const QWidget *widget) const
{
if (useOverlayScrollbars && CC_ScrollBar==control) {
if (const QStyleOptionSlider *sb = qstyleoption_cast<const QStyleOptionSlider *>(option)) {
QRect ret;
bool horizontal(Qt::Horizontal==sb->orientation);
int sbextent(pixelMetric(PM_ScrollBarExtent, sb, widget)),
sliderMaxLength(horizontal ? sb->rect.width() : sb->rect.height()),
sliderMinLength(pixelMetric(PM_ScrollBarSliderMin, sb, widget)),
sliderLength;
if (sb->maximum != sb->minimum) {
uint valueRange = sb->maximum - sb->minimum;
sliderLength = (sb->pageStep * sliderMaxLength) / (valueRange + sb->pageStep);
if (sliderLength < sliderMinLength) {
sliderLength = sliderMinLength;
}
if (sliderLength > sliderMaxLength) {
sliderLength = sliderMaxLength;
}
} else {
sliderLength = sliderMaxLength;
}
int sliderstart(sliderPositionFromValue(sb->minimum, sb->maximum, sb->sliderPosition, sliderMaxLength - sliderLength, sb->upsideDown));
// Subcontrols
switch(subControl)
{
case SC_ScrollBarSubLine:
case SC_ScrollBarAddLine:
return QRect();
case SC_ScrollBarSubPage:
if (horizontal) {
ret.setRect(0, 0, sliderstart, sbextent);
} else {
ret.setRect(0, 0, sbextent, sliderstart);
}
break;
case SC_ScrollBarAddPage:
if (horizontal) {
ret.setRect(sliderstart + sliderLength, 0, sliderMaxLength - sliderstart - sliderLength, sbextent);
} else {
ret.setRect(0, sliderstart + sliderLength, sbextent, sliderMaxLength - sliderstart - sliderLength);
}
break;
case SC_ScrollBarGroove:
if (horizontal) {
ret=QRect(0, 0, sb->rect.width(), sb->rect.height());
} else {
ret=QRect(0, 0, sb->rect.width(), sb->rect.height());
}
break;
case SC_ScrollBarSlider:
if (horizontal) {
ret=QRect(sliderstart, 0, sliderLength, sbextent);
} else {
ret=QRect(0, sliderstart, sbextent, sliderLength);
}
break;
default:
ret = baseStyle()->subControlRect(control, option, subControl, widget);
break;
}
return visualRect(sb->direction/*Qt::LeftToRight*/, sb->rect, ret);
}
}
return baseStyle()->subControlRect(control, option, subControl, widget);
}
static QPainterPath buildPath(const QRectF &r, double radius)
{
QPainterPath path;
double diameter(radius*2);
path.moveTo(r.x()+r.width(), r.y()+r.height()-radius);
path.arcTo(r.x()+r.width()-diameter, r.y(), diameter, diameter, 0, 90);
path.arcTo(r.x(), r.y(), diameter, diameter, 90, 90);
path.arcTo(r.x(), r.y()+r.height()-diameter, diameter, diameter, 180, 90);
path.arcTo(r.x()+r.width()-diameter, r.y()+r.height()-diameter, diameter, diameter, 270, 90);
return path;
}
const QAbstractItemView * view(const QWidget *w) {
if (!w) {
return 0;
}
const QAbstractItemView *v=qobject_cast<const QAbstractItemView *>(w);
return v ? v : view(w->parentWidget());
}
void GtkProxyStyle::drawComplexControl(ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) const
{
if (useOverlayScrollbars && CC_ScrollBar==control) {
if (const QStyleOptionSlider *sb = qstyleoption_cast<const QStyleOptionSlider *>(option)) {
QRect r=option->rect;
QRect slider=subControlRect(control, option, SC_ScrollBarSlider, widget);
painter->save();
bool usePlain=!sbarThumb || usePlainScrollbars(widget);
painter->fillRect(r, usePlain ? option->palette.base() : option->palette.background());
if (usePlain) {
QColor col=option->palette.foreground().color();
col.setAlphaF(0.15);
painter->setPen(col);
if (Qt::Horizontal==sb->orientation) {
painter->drawLine(r.x(), r.y(), r.x()+r.width()-1, r.y());
} else if (Qt::RightToLeft==QApplication::layoutDirection()) {
painter->drawLine(r.x()+r.width()-1, r.y(), r.x()+r.width()-1, r.y()+r.height()-1);
} else {
painter->drawLine(r.x(), r.y(), r.x(), r.y()+r.height()-1);
}
} else {
const QAbstractItemView *v=view(widget);
if (v && qobject_cast<const QTreeView *>(v) && ((const QTreeView *)v)->header()&& ((const QTreeView *)v)->header()->isVisible()) {
QStyleOptionHeader ho;
ho.rect=QRect(r.x()+r.width()-(sbarWidth), r.y(), sbarWidth, ((const QTreeView *)v)->header()->height());
ho.state=option->state;
ho.palette=option->palette;
painter->save();
drawControl(CE_Header, &ho, painter, ((const QTreeView *)v)->header());
painter->restore();
}
}
if (slider.isValid()) {
if (usePlain) {
painter->setRenderHint(QPainter::Antialiasing, true);
if (Qt::Horizontal==sb->orientation) {
slider.adjust(1, 2, -1, -1);
} else {
slider.adjust(2, 1, -1, -1);
}
QPainterPath path=buildPath(QRectF(slider.x()+0.5, slider.y()+0.5, slider.width()-1, slider.height()-1),
(Qt::Horizontal==sb->orientation ? r.height() : r.width())/4);
QColor col(option->palette.highlight().color());
bool faded=option->state&State_Active && !(sb->activeSubControls&SC_ScrollBarSlider && (option->state&State_MouseOver || option->state&State_Sunken));
if (faded) {
col.setAlphaF(0.5);
}
painter->fillPath(path, col);
if (faded) {
col.setAlphaF(0.1);
}
painter->setPen(col);
painter->drawPath(path);
} else {
QRect toThumb;
if (sbarThumb && sbarThumbTarget && sbarThumbTarget==widget && sbarThumb->isVisible()) {
QPoint p=sbarThumbTarget->mapFromGlobal(sbarThumb->pos())+QPoint(1, 1);
if (Qt::Horizontal==sb->orientation) {
if (p.x()<slider.x()) {
toThumb=QRect(p.x(), slider.y(), slider.x()-p.x(), slider.width());
} else if (p.x()>(slider.x()+slider.width())) {
toThumb=QRect(slider.x()+slider.width(), slider.x(), p.x()-(slider.y()+slider.width()), slider.width());
}
} else {
if (p.y()<slider.y()) {
toThumb=QRect(slider.x(), p.y(), slider.width(), slider.y()-p.y());
} else if (p.y()>(slider.y()+slider.height())) {
toThumb=QRect(slider.x(), slider.y()+slider.height(), slider.width(), p.y()-(slider.y()+slider.height()));
}
}
}
if (toThumb.isValid()) {
QColor col(option->palette.text().color());
col.setAlphaF(0.35);
painter->fillRect(toThumb, col);
}
painter->fillRect(slider, option->palette.highlight().color());
}
}
painter->restore();
return;
}
}
baseStyle()->drawComplexControl(control, option, painter, widget);
}
static inline void addEventFilter(QObject *object, QObject *filter)
{
object->removeEventFilter(filter);
object->installEventFilter(filter);
}
void GtkProxyStyle::destroySliderThumb()
{
if (sbarThumb) {
sbarThumb->setVisible(false);
sbarThumb->deleteLater();
sbarThumb=0;
}
if (sbarEdgeTimer) {
sbarEdgeTimer->stop();
sbarEdgeTimer->deleteLater();
sbarEdgeTimer=0;
}
}
void GtkProxyStyle::polish(QWidget *widget)
{
if (useOverlayScrollbars && sbarThumb && widget && qobject_cast<QAbstractScrollArea *>(widget) && qstrcmp(widget->metaObject()->className(), "QComboBoxListView")) {
addEventFilter(widget, this);
widget->setAttribute(Qt::WA_Hover, true);
} else if (useOverlayScrollbars && usePlainScrollbars(widget)) {
widget->setAttribute(Qt::WA_Hover, true);
}
baseStyle()->polish(widget);
}
void GtkProxyStyle::polish(QPalette &pal)
{
baseStyle()->polish(pal);
}
void GtkProxyStyle::polish(QApplication *app)
{
baseStyle()->polish(app);
}
void GtkProxyStyle::unpolish(QWidget *widget)
{
if (useOverlayScrollbars && sbarThumb && widget) {
if (qobject_cast<QAbstractScrollArea *>(widget) && qstrcmp(widget->metaObject()->className(), "QComboBoxListView")) {
widget->removeEventFilter(this);
}
if (sbarThumb && sbarThumbTarget==widget) {
sbarThumb->hide();
}
}
baseStyle()->unpolish(widget);
}
void GtkProxyStyle::unpolish(QApplication *app)
{
baseStyle()->unpolish(app);
}
bool GtkProxyStyle::eventFilter(QObject *object, QEvent *event)
{
if (useOverlayScrollbars) {
switch (event->type()) {
case QEvent::HoverMove:
if (object && qobject_cast<QAbstractScrollArea *>(object)) {
QHoverEvent *he=(QHoverEvent *)event;
QAbstractScrollArea *a=(QAbstractScrollArea *)object;
QScrollBar *bar=0;
if (a->horizontalScrollBar() && a->horizontalScrollBar()->isVisible() && he->pos().y()>(a->height()-sbarAreaWidth)) {
bar=a->horizontalScrollBar();
}
if (a->verticalScrollBar() && a->verticalScrollBar()->isVisible() && he->pos().x()>(a->width()-sbarAreaWidth)) {
bar=a->verticalScrollBar();
}
if (bar) {
if (sbarThumbTarget!=bar) {
if (sbarThumbTarget) {
disconnect(bar, SIGNAL(destroyed(QObject *)), this, SLOT(objectDestroyed(QObject *)));
}
sbarThumbTarget=bar;
connect(bar, SIGNAL(destroyed(QObject *)), this, SLOT(objectDestroyed(QObject *)));
}
if (!sbarThumb->isVisible() || bar->orientation()!=sbarThumb->orientation()) {
sbarThumb->setOrientation(bar->orientation());
QPoint global=a->mapToGlobal(QPoint(Qt::Vertical==bar->orientation() ? a->width()-sbarWidth-1 : 0, Qt::Vertical==bar->orientation() ? 0 : a->height()-sbarWidth-1));
int toXPos=global.x();
int toYPos=global.y();
if (Qt::Vertical==bar->orientation()) {
int thumbSize = sbarThumb->height();
toYPos = a->mapToGlobal(he->pos()).y() - sbarThumb->height() / 2;
int minYPos = global.y();
int maxYPos = global.y() + a->height() - thumbSize;
sbarThumb->setMaximum(maxYPos);
sbarThumb->setMinimum(minYPos);
if (toYPos < minYPos) {
toYPos = minYPos;
}
if (toYPos > maxYPos) {
toYPos = maxYPos;
}
if (QApplication::desktop() && toXPos+sbarThumb->width()>QApplication::desktop()->width()) {
toXPos=global.x()-(sbarThumb->width()-sbarWidth);
}
} else {
int thumbSize = sbarThumb->height();
toXPos = a->mapToGlobal(he->pos()).x() - sbarThumb->width() / 2;
int minXPos = global.x();
int maxXPos = global.x() + a->width() - thumbSize;
sbarThumb->setMaximum(maxXPos);
sbarThumb->setMinimum(minXPos);
if (toXPos < minXPos) {
toXPos = minXPos;
}
if (toXPos > maxXPos) {
toXPos = maxXPos;
}
if (QApplication::desktop() && toYPos+sbarThumb->height()>QApplication::desktop()->height()) {
toYPos=global.y()-(sbarThumb->height()-sbarWidth);
}
}
sbarThumb->move(toXPos, toYPos);
sbarThumb->show();
sbarUpdateOffset();
}
} else {
sbarThumb->hide();
}
}
break;
case QEvent::Resize:
case QEvent::Move:
if (sbarThumb && sbarThumb->isVisible() && object && qobject_cast<QAbstractScrollArea *>(object)) {
sbarThumb->hide();
}
break;
case QEvent::WindowDeactivate:
if (sbarThumb && sbarThumb->isVisible()) {
sbarThumb->hide();
}
default:
break;
}
}
return baseStyle()->eventFilter(object, event);
}
void GtkProxyStyle::objectDestroyed(QObject *obj)
{
if (obj==sbarThumbTarget) {
disconnect(sbarThumbTarget, SIGNAL(destroyed(QObject *)), this, SLOT(objectDestroyed(QObject *)));
sbarThumbTarget=0;
}
}
void GtkProxyStyle::sbarThumbMoved(const QPoint &point)
{
if (sbarThumbTarget) {
bool v=Qt::Vertical==sbarThumbTarget->orientation();
if (-1!=sbarLastPos && sbarLastPos==(v ? point.y() : point.x())) {
return;
}
QPoint global=sbarThumbTarget->mapToGlobal(QPoint(0, 0))-QPoint(1, 1);
int value=sbarThumbTarget->value();
if (v) {
sbarThumbTarget->setValue(sliderValueFromPosition(sbarThumbTarget->minimum(), sbarThumbTarget->maximum(), point.y() - (global.y()+sbarOffset), sbarThumbTarget->height() - sbarThumb->height()));
sbarLastPos=point.y();
} else {
sbarThumbTarget->setValue(sliderValueFromPosition(sbarThumbTarget->minimum(), sbarThumbTarget->maximum(), point.x() - global.x(), sbarThumbTarget->width() - sbarThumb->width()));
sbarLastPos=point.x();
}
if (value==sbarThumbTarget->value()) {
sbarThumbTarget->update();
}
sbarCheckEdges();
}
}
void GtkProxyStyle::sbarPageUp()
{
if (sbarThumbTarget) {
sbarThumbTarget->setValue(sbarThumbTarget->value() - sbarThumbTarget->pageStep());
if (sbarThumbTarget->value() < sbarThumbTarget->minimum()) {
sbarThumbTarget->setValue(sbarThumbTarget->minimum());
}
sbarUpdateOffset();
}
}
void GtkProxyStyle::sbarPageDown()
{
if (sbarThumbTarget) {
sbarThumbTarget->setValue(sbarThumbTarget->value() + sbarThumbTarget->pageStep());
if (sbarThumbTarget->value() > sbarThumbTarget->maximum()) {
sbarThumbTarget->setValue(sbarThumbTarget->maximum());
}
sbarUpdateOffset();
}
}
void GtkProxyStyle::sbarEdgeTimeout()
{
if (sbarThumb->mouseButtonPressed()) {
int newVal=sbarThumbTarget->value()+(sbarEdgeTimer->property(constIncProp).toBool() ? 1 : -1);
if (newVal>=sbarThumbTarget->minimum() && newVal<=sbarThumbTarget->maximum()) {
sbarThumbTarget->setValue(newVal);
}
if (newVal>sbarThumbTarget->minimum() && newVal<sbarThumbTarget->maximum()) {
sbarCheckEdges();
}
}
}
void GtkProxyStyle::sbarThumbHiding()
{
if (sbarThumbTarget) {
sbarThumbTarget->update();
}
sbarLastPos=-1;
}
void GtkProxyStyle::sbarThumbShowing()
{
if (sbarThumbTarget) {
sbarThumbTarget->update();
}
}
void GtkProxyStyle::sbarCheckEdges()
{
if (sbarThumb->mouseButtonPressed()) {
QPoint global=sbarThumbTarget->mapToGlobal(QPoint(0, 0))-QPoint(1, 1);
bool v=Qt::Vertical==sbarThumbTarget->orientation();
if (sbarThumbTarget->value()!=sbarThumbTarget->minimum() &&
(v ? sbarThumb->pos().y()==global.y() : sbarThumb->pos().x()==global.x())) {
if (sbarGetSliderRect().intersects(QRect(sbarThumb->pos(), sbarThumb->size()))) {
sbarEdgeTimer->setProperty(constIncProp, false);
sbarEdgeTimer->start();
}
} else if (sbarThumbTarget->value()!=sbarThumbTarget->maximum() &&
(v ? (sbarThumb->pos().y()+sbarThumb->height())==(global.y()+sbarThumbTarget->height()+2) : (sbarThumb->pos().x()+sbarThumb->width())==(global.x()+sbarThumbTarget->width()+2))) {
if (sbarGetSliderRect().intersects(QRect(sbarThumb->pos(), sbarThumb->size()))) {
sbarEdgeTimer->setProperty(constIncProp, true);
sbarEdgeTimer->start();
}
}
}
}
QRect GtkProxyStyle::sbarGetSliderRect()
{
QStyleOptionSlider opt;
opt.initFrom(sbarThumbTarget);
opt.subControls = QStyle::SC_None;
opt.activeSubControls = QStyle::SC_None;
opt.orientation = sbarThumbTarget->orientation();
opt.minimum = sbarThumbTarget->minimum();
opt.maximum = sbarThumbTarget->maximum();
opt.sliderPosition = sbarThumbTarget->sliderPosition();
opt.sliderValue = sbarThumbTarget->value();
opt.singleStep = sbarThumbTarget->singleStep();
opt.pageStep = sbarThumbTarget->pageStep();
opt.upsideDown = sbarThumbTarget->invertedAppearance();
if (Qt::Horizontal==sbarThumbTarget->orientation()) {
opt.state |= QStyle::State_Horizontal;
}
QRect slider=subControlRect(CC_ScrollBar, &opt, SC_ScrollBarSlider, sbarThumbTarget);
QPoint gpos=sbarThumbTarget->mapToGlobal(slider.topLeft())-QPoint(1, 1);
return QRect(gpos.x(), gpos.y(), slider.width(), slider.height());
}
void GtkProxyStyle::sbarUpdateOffset()
{
QRect sr=sbarGetSliderRect();
if (Qt::Vertical==sbarThumbTarget->orientation()) {
sbarOffset=sbarThumb->pos().y()-sr.y();
} else {
sbarOffset=sbarThumb->pos().x()-sr.x();
}
}