2010-10-01 21:27:01 +02:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
**
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
**
|
|
|
|
** Commercial Usage
|
|
|
|
**
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
**
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
**
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
**
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#ifndef STYLEHELPER_H
|
|
|
|
#define STYLEHELPER_H
|
|
|
|
|
2015-04-11 22:52:31 +02:00
|
|
|
#include <QColor>
|
|
|
|
#include <QStyle>
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2011-10-01 22:22:01 +02:00
|
|
|
#include "ui/qt_blurimage.h"
|
|
|
|
|
2010-10-01 21:27:01 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QPalette;
|
|
|
|
class QPainter;
|
|
|
|
class QRect;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
// Helper class holding all custom color values
|
|
|
|
|
|
|
|
namespace Utils {
|
2014-02-07 16:34:20 +01:00
|
|
|
class StyleHelper {
|
|
|
|
public:
|
|
|
|
static const unsigned int DEFAULT_BASE_COLOR = 0x666666;
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
// Height of the project explorer navigation bar
|
|
|
|
static qreal sidebarFontSize();
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
// This is our color table, all colors derive from baseColor
|
|
|
|
static QColor requestedBaseColor() { return m_requestedBaseColor; }
|
|
|
|
static QColor baseColor(bool lightColored = false);
|
|
|
|
static QColor panelTextColor(bool lightColored = false);
|
|
|
|
static QColor highlightColor(bool lightColored = false);
|
|
|
|
static QColor shadowColor(bool lightColored = false);
|
|
|
|
static QColor borderColor(bool lightColored = false);
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
static QColor sidebarHighlight() { return QColor(255, 255, 255, 40); }
|
|
|
|
static QColor sidebarShadow() { return QColor(0, 0, 0, 40); }
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
// Sets the base color and makes sure all top level widgets are updated
|
|
|
|
static void setBaseColor(const QColor& color);
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
// Gradients used for panels
|
|
|
|
static void verticalGradient(QPainter* painter, const QRect& spanRect,
|
|
|
|
const QRect& clipRect,
|
|
|
|
bool lightColored = false);
|
|
|
|
static bool usePixmapCache() { return true; }
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
static void drawIconWithShadow(const QIcon& icon, const QRect& rect,
|
|
|
|
QPainter* p, QIcon::Mode iconMode,
|
|
|
|
int radius = 3,
|
|
|
|
const QColor& color = QColor(0, 0, 0, 130),
|
|
|
|
const QPoint& offset = QPoint(1, -2));
|
2010-10-01 21:27:01 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
|
|
|
static QColor m_baseColor;
|
|
|
|
static QColor m_requestedBaseColor;
|
2010-10-01 21:27:01 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
} // namespace Utils
|
2010-10-01 21:27:01 +02:00
|
|
|
|
|
|
|
using Utils::StyleHelper;
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // STYLEHELPER_H
|