File indexing completed on 2024-05-19 05:38:21

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 "krdb_export.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 KRDB_EXPORT runRdb(unsigned int flags);
0020 
0021 int KRDB_EXPORT xftDpi();