aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/material/qquickmaterialtheme.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@theqtcompany.com>2015-12-01 09:27:57 +0100
committerLiang Qi <liang.qi@theqtcompany.com>2015-12-01 15:04:25 +0000
commit0928dc2924e09a38c58513d82887e6d75a112eb0 (patch)
treee23b719cacf496a03ebf25d8cd663326aa60eb31 /src/imports/controls/material/qquickmaterialtheme.cpp
parentadcc76a84d3751e800c763a924bebeeda8e4001f (diff)
Material: move to QQuickProxyTheme way for font settings
Change-Id: Ib3fe1809887bbcf3db1822c6eb0182e0181cf70f Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/material/qquickmaterialtheme.cpp')
-rw-r--r--src/imports/controls/material/qquickmaterialtheme.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/imports/controls/material/qquickmaterialtheme.cpp b/src/imports/controls/material/qquickmaterialtheme.cpp
new file mode 100644
index 00000000..ee98c35c
--- /dev/null
+++ b/src/imports/controls/material/qquickmaterialtheme.cpp
@@ -0,0 +1,64 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the Qt Labs Controls module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qquickmaterialtheme_p.h"
+
+#include <QtGui/qfont.h>
+
+QT_BEGIN_NAMESPACE
+
+QQuickMaterialTheme::QQuickMaterialTheme(QPlatformTheme *theme)
+ : QQuickProxyTheme(theme)
+{
+ systemFont = QFont(QLatin1Literal("Roboto"));
+ dockWidgetTitleFont = QFont(QLatin1Literal("Roboto"), 10);
+}
+
+QQuickMaterialTheme::~QQuickMaterialTheme()
+{
+}
+
+const QFont *QQuickMaterialTheme::font(QPlatformTheme::Font type) const
+{
+ switch (type) {
+ case QPlatformTheme::DockWidgetTitleFont:
+ return &dockWidgetTitleFont;
+ default:
+ return &systemFont;
+ }
+}
+
+QT_END_NAMESPACE