goldendict-ng/gdappstyle.hh
2021-12-16 19:59:00 +08:00

31 lines
673 B
C++

/* This file is (c) 2012 Tvangeste <i.4m.l33t@yandex.ru>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef GDAPPSTYLE_HH
#define GDAPPSTYLE_HH
#include <QtGlobal>
#include <QStyle>
#include <QProxyStyle>
#include <QStyleOption>
class GdAppStyle : public QProxyStyle
{
Q_OBJECT
public:
explicit GdAppStyle(QProxyStyle *style = 0);
virtual int pixelMetric ( PixelMetric metric, const QStyleOption * option = 0, const QWidget * widget = 0 ) const;
signals:
public slots:
private:
/// is this widget a tool button on the dictionary bar?
bool dictionaryBarButton(const QWidget * widget) const;
};
#endif // GDAPPSTYLE_HH