File indexing completed on 2024-04-28 05:32:22

0001 #ifndef oxygenxulapplicationname_h
0002 #define oxygenxulapplicationname_h
0003 /*
0004 * this file is part of the oxygen gtk engine
0005 * SPDX-FileCopyrightText: 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
0006 *
0007 * inspired notably from kdelibs/kdeui/color/kcolorutils.h
0008 * SPDX-FileCopyrightText: 2007 Matthew Woehlke <mw_triad@users.sourceforge.net>
0009 * SPDX-FileCopyrightText: 2007 Thomas Zander <zander@kde.org>
0010 * SPDX-FileCopyrightText: 2007 Zack Rusin <zack@kde.org>
0011 *
0012 * SPDX-License-Identifier: LGPL-2.0-or-later
0013 */
0014 
0015 #include <string>
0016 
0017 namespace Oxygen
0018 {
0019 
0020     // tag all mozilla-like applications (XUL)
0021     static const std::string XulAppNames[] =
0022     {
0023         "aurora",
0024         "earlybird",
0025         "icecat",
0026         "icedove",
0027         "iceweasel",
0028         "instantbird",
0029         "firefox",
0030         "fossamail",
0031         "komodo",
0032         "newmoon",
0033         "palemoon",
0034         "seamonkey",
0035         "thunderbird",
0036         "xulrunner",
0037         "zotero",
0038         ""
0039     };
0040 
0041 }
0042 
0043 #endif