Warning, file /plasma/plasma-workspace/kcms/krdb/krdb.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2001 Waldo Bastian <bastian@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only
0005 */
0006 
0007 #pragma once
0008 
0009 #include <qglobal.h>
0010 
0011 enum KRdbAction {
0012     KRdbExportColors = 0x0001, // Export colors to non-(KDE/Qt) apps
0013     KRdbExportQtColors = 0x0002, // Export KDE's colors to qtrc
0014     KRdbExportQtSettings = 0x0004, // Export all possible qtrc settings, excluding colors
0015     KRdbExportXftSettings = 0x0008, // Export KDE's Xft (anti-alias) settings
0016     KRdbExportGtkTheme = 0x0010, // Export KDE's widget style to Gtk if possible
0017 };
0018 
0019 void Q_DECL_EXPORT runRdb(unsigned int flags);
0020 
0021 int Q_DECL_EXPORT xftDpi();