1 /*
2     SPDX-FileCopyrightText: 2001 Waldo Bastian <bastian@kde.org>
3 
4     SPDX-License-Identifier: GPL-2.0-only
5 */
6 
7 #pragma once
8 
9 enum KRdbAction {
10     KRdbExportColors = 0x0001, // Export colors to non-(KDE/Qt) apps
11     KRdbExportQtColors = 0x0002, // Export KDE's colors to qtrc
12     KRdbExportQtSettings = 0x0004, // Export all possible qtrc settings, excluding colors
13     KRdbExportXftSettings = 0x0008, // Export KDE's Xft (anti-alias) settings
14     KRdbExportGtkTheme = 0x0010, // Export KDE's widget style to Gtk if possible
15 };
16 
17 void Q_DECL_EXPORT runRdb(uint flags);
18